diff --git a/go.mod b/go.mod index 8ac8eb4cfb..506f752b0c 100644 --- a/go.mod +++ b/go.mod @@ -29,6 +29,7 @@ require ( github.com/spf13/pflag v1.0.6 github.com/stretchr/testify v1.10.0 golang.org/x/crypto v0.38.0 + golang.org/x/sync v0.14.0 golang.org/x/term v0.32.0 golang.org/x/text v0.25.0 gopkg.in/yaml.v3 v3.0.1 @@ -190,7 +191,6 @@ require ( go.opentelemetry.io/proto/otlp v1.2.0 // indirect golang.org/x/mod v0.17.0 // indirect golang.org/x/net v0.38.0 // indirect - golang.org/x/sync v0.14.0 // indirect golang.org/x/sys v0.33.0 // indirect golang.org/x/time v0.5.0 // indirect google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda // indirect diff --git a/internal/namespaces/vpc/v2/custom_private_network.go b/internal/namespaces/vpc/v2/custom_private_network.go index a6e30e483b..54facf6e47 100644 --- a/internal/namespaces/vpc/v2/custom_private_network.go +++ b/internal/namespaces/vpc/v2/custom_private_network.go @@ -18,6 +18,7 @@ import ( "github.com/scaleway/scaleway-sdk-go/api/vpc/v2" "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v2" "github.com/scaleway/scaleway-sdk-go/scw" + "golang.org/x/sync/errgroup" ) func privateNetworkMarshalerFunc(i interface{}, opt *human.MarshalOpt) (string, error) { @@ -51,58 +52,79 @@ func privateNetworkGetBuilder(c *core.Command) *core.Command { client := core.ExtractClient(ctx) - listInstanceServers, err := listCustomInstanceServers(client, pn) - if err != nil { - return nil, err - } + var ( + instanceServers []customInstanceServer + baremetalServers []customBaremetalServer + k8sClusters []customK8sCluster + lbs []customLB + rdbs []customRdb + redisClusters []customRedis + gateways []customGateway + appleSiliconServers []customAppleSiliconServer + mongoDBs []customMongoDB + ipamIPs []customIPAMIP + inferenceDeployments []customInferenceDeployment + ) - listBaremetalServers, err := listCustomBaremetalServers(client, pn) - if err != nil { - return nil, err - } + g, groupCtx := errgroup.WithContext(ctx) - listK8sClusters, err := listCustomK8sClusters(client, pn) - if err != nil { - return nil, err - } + g.Go(func() (err error) { + instanceServers, err = listCustomInstanceServers(groupCtx, client, pn) - listLBs, err := listCustomLBs(client, pn) - if err != nil { - return nil, err - } + return + }) + g.Go(func() (err error) { + baremetalServers, err = listCustomBaremetalServers(groupCtx, client, pn) - listRdbInstances, err := listCustomRdbs(client, pn) - if err != nil { - return nil, err - } + return + }) + g.Go(func() (err error) { + k8sClusters, err = listCustomK8sClusters(groupCtx, client, pn) - listRedisClusters, err := listCustomRedisClusters(client, pn) - if err != nil { - return nil, err - } + return + }) + g.Go(func() (err error) { + lbs, err = listCustomLBs(groupCtx, client, pn) - listGateways, err := listCustomGateways(client, pn) - if err != nil { - return nil, err - } + return + }) + g.Go(func() (err error) { + rdbs, err = listCustomRdbs(groupCtx, client, pn) - listAppleSiliconServers, err := listCustomAppleSiliconServers(client, pn) - if err != nil { - return nil, err - } + return + }) + g.Go(func() (err error) { + redisClusters, err = listCustomRedisClusters(groupCtx, client, pn) - listMongoDBInstances, err := listCustomMongoDBs(client, pn) - if err != nil { - return nil, err - } + return + }) + g.Go(func() (err error) { + gateways, err = listCustomGateways(groupCtx, client, pn) - listIPAMIPs, err := listCustomIPAMIPs(client, pn) - if err != nil { - return nil, err - } + return + }) + g.Go(func() (err error) { + appleSiliconServers, err = listCustomAppleSiliconServers(groupCtx, client, pn) - listInferenceDeployments, err := listCustomInferenceDeployments(client, pn) - if err != nil { + return + }) + g.Go(func() (err error) { + mongoDBs, err = listCustomMongoDBs(groupCtx, client, pn) + + return + }) + g.Go(func() (err error) { + ipamIPs, err = listCustomIPAMIPs(groupCtx, client, pn) + + return + }) + g.Go(func() (err error) { + inferenceDeployments, err = listCustomInferenceDeployments(groupCtx, client, pn) + + return + }) + + if err = g.Wait(); err != nil { return nil, err } @@ -121,22 +143,27 @@ func privateNetworkGetBuilder(c *core.Command) *core.Command { InferenceDeployments []customInferenceDeployment `json:"inference_deployments,omitempty"` }{ pn, - listInstanceServers, - listBaremetalServers, - listK8sClusters, - listLBs, - listRdbInstances, - listRedisClusters, - listGateways, - listAppleSiliconServers, - listMongoDBInstances, - listIPAMIPs, - listInferenceDeployments, + instanceServers, + baremetalServers, + k8sClusters, + lbs, + rdbs, + redisClusters, + gateways, + appleSiliconServers, + mongoDBs, + ipamIPs, + inferenceDeployments, }, nil } c.View = &core.View{ Sections: []*core.ViewSection{ + { + FieldName: "Subnets", + Title: "Subnets", + HideIfEmpty: true, + }, { FieldName: "InstanceServers", Title: "Instance Servers", @@ -172,11 +199,6 @@ func privateNetworkGetBuilder(c *core.Command) *core.Command { Title: "Public Gateways", HideIfEmpty: true, }, - { - FieldName: "Subnets", - Title: "Subnets", - HideIfEmpty: true, - }, { FieldName: "AppleSiliconServers", Title: "AppleSilicon Servers", @@ -274,6 +296,7 @@ type customInferenceDeployment struct { } func listCustomInstanceServers( + ctx context.Context, client *scw.Client, pn *vpc.PrivateNetwork, ) ([]customInstanceServer, error) { @@ -288,7 +311,7 @@ func listCustomInstanceServers( listInstanceServers, err := instanceAPI.ListServers(&instance.ListServersRequest{ PrivateNetwork: &pn.ID, Zone: zone, - }, scw.WithAllPages()) + }, scw.WithContext(ctx), scw.WithAllPages()) if err != nil { return nil, err } @@ -311,6 +334,7 @@ func listCustomInstanceServers( } func listCustomBaremetalServers( + ctx context.Context, client *scw.Client, pn *vpc.PrivateNetwork, ) ([]customBaremetalServer, error) { @@ -327,8 +351,7 @@ func listCustomBaremetalServers( &baremetal.PrivateNetworkAPIListServerPrivateNetworksRequest{ Zone: zone, PrivateNetworkID: &pn.ID, - }, - scw.WithAllPages(), + }, scw.WithContext(ctx), scw.WithAllPages(), ) if err != nil { return nil, err @@ -339,7 +362,7 @@ func listCustomBaremetalServers( getBaremetalServer, err := baremetalAPI.GetServer(&baremetal.GetServerRequest{ Zone: zone, ServerID: server.ServerID, - }) + }, scw.WithContext(ctx)) if err != nil { return nil, err } @@ -357,12 +380,16 @@ func listCustomBaremetalServers( return customBaremetalServers, nil } -func listCustomK8sClusters(client *scw.Client, pn *vpc.PrivateNetwork) ([]customK8sCluster, error) { +func listCustomK8sClusters( + ctx context.Context, + client *scw.Client, + pn *vpc.PrivateNetwork, +) ([]customK8sCluster, error) { k8sAPI := k8s.NewAPI(client) listK8sClusters, err := k8sAPI.ListClusters(&k8s.ListClustersRequest{ Region: pn.Region, - }, scw.WithAllPages()) + }, scw.WithContext(ctx), scw.WithAllPages()) if err != nil { return nil, err } @@ -380,7 +407,11 @@ func listCustomK8sClusters(client *scw.Client, pn *vpc.PrivateNetwork) ([]custom return customK8sClusters, nil } -func listCustomLBs(client *scw.Client, pn *vpc.PrivateNetwork) ([]customLB, error) { +func listCustomLBs( + ctx context.Context, + client *scw.Client, + pn *vpc.PrivateNetwork, +) ([]customLB, error) { LBAPI := lb.NewZonedAPI(client) regionZones := pn.Region.GetZones() @@ -391,7 +422,7 @@ func listCustomLBs(client *scw.Client, pn *vpc.PrivateNetwork) ([]customLB, erro for _, zone := range zones { listLbs, err := LBAPI.ListLBs(&lb.ZonedAPIListLBsRequest{ Zone: zone, - }) + }, scw.WithContext(ctx), scw.WithAllPages()) if err != nil { return nil, err } @@ -407,7 +438,7 @@ func listCustomLBs(client *scw.Client, pn *vpc.PrivateNetwork) ([]customLB, erro listLBpns, err := LBAPI.ListLBPrivateNetworks(&lb.ZonedAPIListLBPrivateNetworksRequest{ Zone: zone, LBID: loadbalancer.ID, - }, scw.WithAllPages()) + }, scw.WithContext(ctx), scw.WithAllPages()) if err != nil { return nil, err } @@ -426,12 +457,16 @@ func listCustomLBs(client *scw.Client, pn *vpc.PrivateNetwork) ([]customLB, erro return customLBs, nil } -func listCustomRdbs(client *scw.Client, pn *vpc.PrivateNetwork) ([]customRdb, error) { +func listCustomRdbs( + ctx context.Context, + client *scw.Client, + pn *vpc.PrivateNetwork, +) ([]customRdb, error) { rdbAPI := rdb.NewAPI(client) listDBs, err := rdbAPI.ListInstances(&rdb.ListInstancesRequest{ Region: pn.Region, - }, scw.WithAllPages()) + }, scw.WithContext(ctx), scw.WithAllPages()) if err != nil { return nil, err } @@ -452,7 +487,11 @@ func listCustomRdbs(client *scw.Client, pn *vpc.PrivateNetwork) ([]customRdb, er return customRdbs, nil } -func listCustomRedisClusters(client *scw.Client, pn *vpc.PrivateNetwork) ([]customRedis, error) { +func listCustomRedisClusters( + ctx context.Context, + client *scw.Client, + pn *vpc.PrivateNetwork, +) ([]customRedis, error) { redisAPI := redis.NewAPI(client) regionZones := pn.Region.GetZones() @@ -463,7 +502,7 @@ func listCustomRedisClusters(client *scw.Client, pn *vpc.PrivateNetwork) ([]cust for _, zone := range zones { listRedisClusters, err := redisAPI.ListClusters(&redis.ListClustersRequest{ Zone: zone, - }, scw.WithAllPages()) + }, scw.WithContext(ctx), scw.WithAllPages()) if err != nil { return nil, err } @@ -484,7 +523,11 @@ func listCustomRedisClusters(client *scw.Client, pn *vpc.PrivateNetwork) ([]cust return customClusters, nil } -func listCustomGateways(client *scw.Client, pn *vpc.PrivateNetwork) ([]customGateway, error) { +func listCustomGateways( + ctx context.Context, + client *scw.Client, + pn *vpc.PrivateNetwork, +) ([]customGateway, error) { vpcgwAPI := vpcgw.NewAPI(client) regionZones := pn.Region.GetZones() @@ -495,7 +538,7 @@ func listCustomGateways(client *scw.Client, pn *vpc.PrivateNetwork) ([]customGat for _, zone := range zones { listGateways, err := vpcgwAPI.ListGateways(&vpcgw.ListGatewaysRequest{ Zone: zone, - }, scw.WithAllPages()) + }, scw.WithContext(ctx), scw.WithAllPages()) if err != nil { return nil, err } @@ -517,6 +560,7 @@ func listCustomGateways(client *scw.Client, pn *vpc.PrivateNetwork) ([]customGat } func listCustomAppleSiliconServers( + ctx context.Context, client *scw.Client, pn *vpc.PrivateNetwork, ) ([]customAppleSiliconServer, error) { @@ -534,8 +578,7 @@ func listCustomAppleSiliconServers( &applesilicon.PrivateNetworkAPIListServerPrivateNetworksRequest{ Zone: zone, PrivateNetworkID: &pn.ID, - }, - scw.WithAllPages(), + }, scw.WithContext(ctx), scw.WithAllPages(), ) if err != nil { return nil, err @@ -547,7 +590,7 @@ func listCustomAppleSiliconServers( &applesilicon.GetServerRequest{ Zone: zone, ServerID: server.ServerID, - }, + }, scw.WithContext(ctx), ) if err != nil { return nil, err @@ -570,12 +613,16 @@ func listCustomAppleSiliconServers( return customAppleSiliconServers, nil } -func listCustomMongoDBs(client *scw.Client, pn *vpc.PrivateNetwork) ([]customMongoDB, error) { +func listCustomMongoDBs( + ctx context.Context, + client *scw.Client, + pn *vpc.PrivateNetwork, +) ([]customMongoDB, error) { mongoAPI := mongodb.NewAPI(client) listDBs, err := mongoAPI.ListInstances(&mongodb.ListInstancesRequest{ Region: pn.Region, - }, scw.WithAllPages()) + }, scw.WithContext(ctx), scw.WithAllPages()) if err != nil { return nil, err } @@ -596,13 +643,17 @@ func listCustomMongoDBs(client *scw.Client, pn *vpc.PrivateNetwork) ([]customMon return customDBs, nil } -func listCustomIPAMIPs(client *scw.Client, pn *vpc.PrivateNetwork) ([]customIPAMIP, error) { +func listCustomIPAMIPs( + ctx context.Context, + client *scw.Client, + pn *vpc.PrivateNetwork, +) ([]customIPAMIP, error) { ipamAPI := ipam.NewAPI(client) listIPAMIPs, err := ipamAPI.ListIPs(&ipam.ListIPsRequest{ Region: pn.Region, PrivateNetworkID: &pn.ID, - }, scw.WithAllPages()) + }, scw.WithContext(ctx), scw.WithAllPages()) if err != nil { return nil, err } @@ -619,6 +670,7 @@ func listCustomIPAMIPs(client *scw.Client, pn *vpc.PrivateNetwork) ([]customIPAM } func listCustomInferenceDeployments( + ctx context.Context, client *scw.Client, pn *vpc.PrivateNetwork, ) ([]customInferenceDeployment, error) { @@ -626,7 +678,7 @@ func listCustomInferenceDeployments( listDeployments, err := inferenceAPI.ListDeployments(&inference.ListDeploymentsRequest{ Region: pn.Region, - }, scw.WithAllPages()) + }, scw.WithContext(ctx), scw.WithAllPages()) if err != nil { return nil, err } diff --git a/internal/namespaces/vpc/v2/testdata/test-get-private-network-multiple.cassette.yaml b/internal/namespaces/vpc/v2/testdata/test-get-private-network-multiple.cassette.yaml index c2a2a5b03f..31c7f808ed 100644 --- a/internal/namespaces/vpc/v2/testdata/test-get-private-network-multiple.cassette.yaml +++ b/internal/namespaces/vpc/v2/testdata/test-get-private-network-multiple.cassette.yaml @@ -2,17 +2,7 @@ version: 1 interactions: - request: - body: '{"id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "name":"cli-pn-gracious-dubinsky", - "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2025-05-20T08:24:15.144576Z", - "updated_at":"2025-05-20T08:24:15.144576Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "subnets":[{"id":"462ffc2e-0d44-4ed9-8e43-cad864e937ff", "created_at":"2025-05-20T08:24:15.144576Z", - "updated_at":"2025-05-20T08:24:15.144576Z", "subnet":"172.16.32.0/22", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}, - {"id":"caa87efd-3bc6-4e70-a3ca-c6fdf1435f1a", "created_at":"2025-05-20T08:24:15.144576Z", - "updated_at":"2025-05-20T08:24:15.144576Z", "subnet":"fd46:78ab:30b8:e551::/64", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}], "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19", - "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' + body: '{"id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","name":"cli-pn-elastic-jepsen","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-22T14:59:56.811135Z","updated_at":"2025-05-22T14:59:56.811135Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":[{"id":"6f92b461-bd15-4766-a4d0-98431e2070e1","created_at":"2025-05-22T14:59:56.811135Z","updated_at":"2025-05-22T14:59:56.811135Z","subnet":"172.16.40.0/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"id":"8ff8ba73-6cef-4745-9226-effcfed300e6","created_at":"2025-05-22T14:59:56.811135Z","updated_at":"2025-05-22T14:59:56.811135Z","subnet":"fd46:78ab:30b8:e2da::/64","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"vpc_id":"086a5171-f7ab-4667-a231-840a81203f19","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' form: {} headers: Content-Type: @@ -22,28 +12,18 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "name":"cli-pn-gracious-dubinsky", - "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2025-05-20T08:24:15.144576Z", - "updated_at":"2025-05-20T08:24:15.144576Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "subnets":[{"id":"462ffc2e-0d44-4ed9-8e43-cad864e937ff", "created_at":"2025-05-20T08:24:15.144576Z", - "updated_at":"2025-05-20T08:24:15.144576Z", "subnet":"172.16.32.0/22", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}, - {"id":"caa87efd-3bc6-4e70-a3ca-c6fdf1435f1a", "created_at":"2025-05-20T08:24:15.144576Z", - "updated_at":"2025-05-20T08:24:15.144576Z", "subnet":"fd46:78ab:30b8:e551::/64", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}], "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19", - "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' + body: '{"id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","name":"cli-pn-elastic-jepsen","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-22T14:59:56.811135Z","updated_at":"2025-05-22T14:59:56.811135Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":[{"id":"6f92b461-bd15-4766-a4d0-98431e2070e1","created_at":"2025-05-22T14:59:56.811135Z","updated_at":"2025-05-22T14:59:56.811135Z","subnet":"172.16.40.0/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"id":"8ff8ba73-6cef-4745-9226-effcfed300e6","created_at":"2025-05-22T14:59:56.811135Z","updated_at":"2025-05-22T14:59:56.811135Z","subnet":"fd46:78ab:30b8:e2da::/64","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"vpc_id":"086a5171-f7ab-4667-a231-840a81203f19","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' headers: Content-Length: - - "1094" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:15 GMT + - Thu, 22 May 2025 14:59:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -51,7 +31,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20e56539-2430-4e65-a12c-314c20da75a5 + - cf1d1ae4-0225-4936-b3a5-de5d522ae21c status: 200 OK code: 200 duration: "" @@ -1003,12 +983,12 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:15 GMT + - Thu, 22 May 2025 14:59:57 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1016,7 +996,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1028297b-ce82-40c1-9dd0-ee38ee1273c2 + - 86ef7ff8-80e7-4f43-9859-2948db4ea455 X-Total-Count: - "71" status: 200 OK @@ -1438,12 +1418,12 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:15 GMT + - Thu, 22 May 2025 14:59:57 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1451,30 +1431,14 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e06aeed-62ef-45e4-920a-981869f79e6d + - 4c754203-a645-477d-86f3-4dfd4342cd87 X-Total-Count: - "71" status: 200 OK code: 200 duration: "" - request: - body: '{"local_images":[{"id":"2dd98c87-6ea2-49d9-8420-feafa534e478", "arch":"x86_64", - "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", - "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", - "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", - "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", "POP2-HM-64C-512G", - "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", "POP2-HC-32C-64G", - "POP2-HC-64C-128G", "POP2-HN-3", "POP2-HN-5", "POP2-HN-10", "POP2-48C-192G", - "POP2-HC-48C-96G", "POP2-HM-48C-384G"], "label":"ubuntu_focal", "type":"instance_sbs"}, - {"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6", "arch":"arm64", "zone":"fr-par-1", - "compatible_commercial_types":["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", - "AMP2-C24", "AMP2-C48", "AMP2-C60", "COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", - "COPARM1-16C-64G", "COPARM1-32C-128G"], "label":"ubuntu_focal", "type":"instance_sbs"}], - "total_count":2}' + body: '{"local_images":[{"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"label":"ubuntu_focal","type":"instance_sbs"},{"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_focal","type":"instance_sbs"}],"total_count":2}' form: {} headers: User-Agent: @@ -1482,34 +1446,18 @@ interactions: url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: - body: '{"local_images":[{"id":"2dd98c87-6ea2-49d9-8420-feafa534e478", "arch":"x86_64", - "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", - "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", - "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", - "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", "POP2-HM-64C-512G", - "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", "POP2-HC-32C-64G", - "POP2-HC-64C-128G", "POP2-HN-3", "POP2-HN-5", "POP2-HN-10", "POP2-48C-192G", - "POP2-HC-48C-96G", "POP2-HM-48C-384G"], "label":"ubuntu_focal", "type":"instance_sbs"}, - {"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6", "arch":"arm64", "zone":"fr-par-1", - "compatible_commercial_types":["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", - "AMP2-C24", "AMP2-C48", "AMP2-C60", "COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", - "COPARM1-16C-64G", "COPARM1-32C-128G"], "label":"ubuntu_focal", "type":"instance_sbs"}], - "total_count":2}' + body: '{"local_images":[{"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"label":"ubuntu_focal","type":"instance_sbs"},{"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_focal","type":"instance_sbs"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1269" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:15 GMT + - Thu, 22 May 2025 14:59:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1517,7 +1465,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac49a877-aa7f-449e-a3cb-217b355ef11e + - 3dca8d74-1fdc-4b87-a22a-78b983b88e2e status: 200 OK code: 200 duration: "" @@ -1553,9 +1501,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:15 GMT + - Thu, 22 May 2025 14:59:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1563,15 +1511,15 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 124c8a15-7375-4264-ba9d-29d7919d7087 + - 80181009-6a4f-45a0-bf53-b644ace6cf2b status: 200 OK code: 200 duration: "" - request: - body: '{"ip": {"id": "ec0685fe-227c-4971-8f31-00f34a970720", "address": "51.158.100.56", + body: '{"ip": {"id": "5af75c04-b46d-40b2-aa99-bf3d03a2dce3", "address": "212.47.244.143", "prefix": null, "reverse": null, "server": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", "type": - "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "ba13c869-8d35-4291-9721-babfcd0831ed"}}' + "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "b36d0ffe-846e-4216-bfb6-0a16d98ca26c"}}' form: {} headers: Content-Type: @@ -1581,23 +1529,23 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"id": "ec0685fe-227c-4971-8f31-00f34a970720", "address": "51.158.100.56", + body: '{"ip": {"id": "5af75c04-b46d-40b2-aa99-bf3d03a2dce3", "address": "212.47.244.143", "prefix": null, "reverse": null, "server": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", "type": - "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "ba13c869-8d35-4291-9721-babfcd0831ed"}}' + "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "b36d0ffe-846e-4216-bfb6-0a16d98ca26c"}}' headers: Content-Length: - - "365" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:17 GMT + - Thu, 22 May 2025 14:59:58 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/ec0685fe-227c-4971-8f31-00f34a970720 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5af75c04-b46d-40b2-aa99-bf3d03a2dce3 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1605,15 +1553,15 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29d90257-566e-44f7-afb8-74c98dee676c + - bc567e9f-9228-4b6e-ba12-e820d5198d91 status: 201 Created code: 201 duration: "" - request: - body: '{"server": {"id": "5332d773-09ef-45d2-9f7d-a7df735fcdc0", "name": "cli-srv-hopeful-edison", + body: '{"server": {"id": "32ac2c08-28d6-4fbc-89ff-b196b3b6cdba", "name": "cli-srv-ecstatic-lamarr", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-hopeful-edison", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", + "hostname": "cli-srv-ecstatic-lamarr", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": @@ -1621,18 +1569,18 @@ interactions: "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "93e3db6b-bc72-4d6f-b8c7-3f035f47fc7e", "zone": "fr-par-1"}}, "tags": + "id": "9f3a6fed-65d4-4c05-bc84-4c8b7095dd7e", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "ec0685fe-227c-4971-8f31-00f34a970720", "address": "51.158.100.56", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "ba13c869-8d35-4291-9721-babfcd0831ed"}, - "public_ips": [{"id": "ec0685fe-227c-4971-8f31-00f34a970720", "address": "51.158.100.56", + {"id": "5af75c04-b46d-40b2-aa99-bf3d03a2dce3", "address": "212.47.244.143", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ba13c869-8d35-4291-9721-babfcd0831ed"}], - "mac_address": "de:00:00:af:7b:85", "routed_ip_enabled": true, "ipv6": null, + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "b36d0ffe-846e-4216-bfb6-0a16d98ca26c"}, + "public_ips": [{"id": "5af75c04-b46d-40b2-aa99-bf3d03a2dce3", "address": "212.47.244.143", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "b36d0ffe-846e-4216-bfb6-0a16d98ca26c"}], + "mac_address": "de:00:00:b0:1b:11", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-05-20T08:24:17.743572+00:00", "modification_date": - "2025-05-20T08:24:17.743572+00:00", "bootscript": null, "security_group": {"id": + null, "creation_date": "2025-05-22T14:59:58.454323+00:00", "modification_date": + "2025-05-22T14:59:58.454323+00:00", "bootscript": null, "security_group": {"id": "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": @@ -1646,10 +1594,10 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: - body: '{"server": {"id": "5332d773-09ef-45d2-9f7d-a7df735fcdc0", "name": "cli-srv-hopeful-edison", + body: '{"server": {"id": "32ac2c08-28d6-4fbc-89ff-b196b3b6cdba", "name": "cli-srv-ecstatic-lamarr", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-hopeful-edison", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", + "hostname": "cli-srv-ecstatic-lamarr", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": @@ -1657,35 +1605,35 @@ interactions: "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "93e3db6b-bc72-4d6f-b8c7-3f035f47fc7e", "zone": "fr-par-1"}}, "tags": + "id": "9f3a6fed-65d4-4c05-bc84-4c8b7095dd7e", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "ec0685fe-227c-4971-8f31-00f34a970720", "address": "51.158.100.56", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "ba13c869-8d35-4291-9721-babfcd0831ed"}, - "public_ips": [{"id": "ec0685fe-227c-4971-8f31-00f34a970720", "address": "51.158.100.56", + {"id": "5af75c04-b46d-40b2-aa99-bf3d03a2dce3", "address": "212.47.244.143", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "b36d0ffe-846e-4216-bfb6-0a16d98ca26c"}, + "public_ips": [{"id": "5af75c04-b46d-40b2-aa99-bf3d03a2dce3", "address": "212.47.244.143", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ba13c869-8d35-4291-9721-babfcd0831ed"}], - "mac_address": "de:00:00:af:7b:85", "routed_ip_enabled": true, "ipv6": null, + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "b36d0ffe-846e-4216-bfb6-0a16d98ca26c"}], + "mac_address": "de:00:00:b0:1b:11", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-05-20T08:24:17.743572+00:00", "modification_date": - "2025-05-20T08:24:17.743572+00:00", "bootscript": null, "security_group": {"id": + null, "creation_date": "2025-05-22T14:59:58.454323+00:00", "modification_date": + "2025-05-22T14:59:58.454323+00:00", "bootscript": null, "security_group": {"id": "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2243" + - "2247" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:18 GMT + - Thu, 22 May 2025 14:59:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5332d773-09ef-45d2-9f7d-a7df735fcdc0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/32ac2c08-28d6-4fbc-89ff-b196b3b6cdba Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,30 +1641,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b889a1a2-22ae-4685-9036-de0bdc32c278 + - 0f9ca2d2-0a0a-457b-b53a-28360521dc74 status: 201 Created code: 201 duration: "" - request: - body: '{"private_nic": {"id": "3133b27e-6ed4-4751-b42a-8ec35fbafe82", "private_network_id": - "7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "server_id": "5332d773-09ef-45d2-9f7d-a7df735fcdc0", - "mac_address": "02:00:00:10:b7:63", "state": "available", "creation_date": "2025-05-20T08:24:18.526975+00:00", - "modification_date": "2025-05-20T08:24:18.661914+00:00", "zone": "fr-par-1", - "tags": [], "ipam_ip_ids": ["09f3a590-ac44-44e7-9d31-c7db5da362c0", "89816863-1830-4188-85c1-51c5b6c5f2e5"]}}' + body: '{"private_nic": {"id": "cad0684d-a799-4299-ab04-03af461ff4e2", "private_network_id": + "4715b0f1-7db9-47e1-a857-c2d25c6734df", "server_id": "32ac2c08-28d6-4fbc-89ff-b196b3b6cdba", + "mac_address": "02:00:00:1f:88:aa", "state": "available", "creation_date": "2025-05-22T14:59:59.105706+00:00", + "modification_date": "2025-05-22T14:59:59.234208+00:00", "zone": "fr-par-1", + "tags": [], "ipam_ip_ids": ["7e2baf00-2989-451e-a8c5-aaa1031b8b70", "f546daa5-be42-4c48-a6c3-54771576a628"]}}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5332d773-09ef-45d2-9f7d-a7df735fcdc0/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/32ac2c08-28d6-4fbc-89ff-b196b3b6cdba/private_nics method: POST response: - body: '{"private_nic": {"id": "3133b27e-6ed4-4751-b42a-8ec35fbafe82", "private_network_id": - "7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "server_id": "5332d773-09ef-45d2-9f7d-a7df735fcdc0", - "mac_address": "02:00:00:10:b7:63", "state": "available", "creation_date": "2025-05-20T08:24:18.526975+00:00", - "modification_date": "2025-05-20T08:24:18.661914+00:00", "zone": "fr-par-1", - "tags": [], "ipam_ip_ids": ["09f3a590-ac44-44e7-9d31-c7db5da362c0", "89816863-1830-4188-85c1-51c5b6c5f2e5"]}}' + body: '{"private_nic": {"id": "cad0684d-a799-4299-ab04-03af461ff4e2", "private_network_id": + "4715b0f1-7db9-47e1-a857-c2d25c6734df", "server_id": "32ac2c08-28d6-4fbc-89ff-b196b3b6cdba", + "mac_address": "02:00:00:1f:88:aa", "state": "available", "creation_date": "2025-05-22T14:59:59.105706+00:00", + "modification_date": "2025-05-22T14:59:59.234208+00:00", "zone": "fr-par-1", + "tags": [], "ipam_ip_ids": ["7e2baf00-2989-451e-a8c5-aaa1031b8b70", "f546daa5-be42-4c48-a6c3-54771576a628"]}}' headers: Content-Length: - "475" @@ -1725,9 +1673,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:19 GMT + - Thu, 22 May 2025 15:00:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1735,21 +1683,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2ca748a-053b-4001-82a9-743480efb088 + - 4debe9b3-7e13-448c-b76d-026e71fe9143 status: 201 Created code: 201 duration: "" - request: - body: '{"id":"538db5d8-81f8-4759-92df-708a2c89799b", "name":"cli-test", "description":"cli-test", - "status":"to_create", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", - "ip_address":"62.210.111.208", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", - "reverse":"62-210-111-208.lb.fr-par.scw.cloud", "tags":[], "region":"fr-par", - "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, "type":"lb-s", - "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719185606Z", "updated_at":"2025-05-20T08:24:19.719185606Z", - "private_network_count":0, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + body: '{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"to_create","instances":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833454Z","updated_at":"2025-05-22T15:00:00.283833454Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' form: {} headers: Content-Type: @@ -1759,27 +1698,50 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"id":"538db5d8-81f8-4759-92df-708a2c89799b", "name":"cli-test", "description":"cli-test", - "status":"to_create", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", - "ip_address":"62.210.111.208", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", - "reverse":"62-210-111-208.lb.fr-par.scw.cloud", "tags":[], "region":"fr-par", - "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, "type":"lb-s", - "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719185606Z", "updated_at":"2025-05-20T08:24:19.719185606Z", - "private_network_count":0, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + body: '{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"to_create","instances":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833454Z","updated_at":"2025-05-22T15:00:00.283833454Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "879" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 22 May 2025 15:00:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa82793d-b2d7-411e-8dad-38af3e989f60 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"to_create","instances":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:00.283833Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/687d73cc-64af-4dfe-ac3a-1038d13f2182 + method: GET + response: + body: '{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"to_create","instances":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:00.283833Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "906" + - "873" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:19 GMT + - Thu, 22 May 2025 15:00:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1787,53 +1749,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82646c54-2f29-4bf9-9eaa-162d957a9fe3 + - 3aa4a77d-3bf0-44b8-91fc-b881a05aadd8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"538db5d8-81f8-4759-92df-708a2c89799b", "name":"cli-test", "description":"cli-test", - "status":"creating", "instances":[{"id":"750d054d-a02a-48e2-b227-ff2cc1a8041b", - "status":"unknown", "ip_address":"", "created_at":"2025-05-20T08:19:38.798561Z", - "updated_at":"2025-05-20T08:24:19.985177Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", "ip_address":"62.210.111.208", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", "reverse":"62-210-111-208.lb.fr-par.scw.cloud", - "tags":[], "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, - "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719186Z", "updated_at":"2025-05-20T08:24:19.995727Z", - "private_network_count":0, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + body: '{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"creating","instances":[{"id":"e4af0be0-bec5-4481-b8b1-79559b3ff879","status":"unknown","ip_address":"","created_at":"2025-05-22T14:55:09.932624Z","updated_at":"2025-05-22T15:00:00.628222Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:00.635356Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/538db5d8-81f8-4759-92df-708a2c89799b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/687d73cc-64af-4dfe-ac3a-1038d13f2182 method: GET response: - body: '{"id":"538db5d8-81f8-4759-92df-708a2c89799b", "name":"cli-test", "description":"cli-test", - "status":"creating", "instances":[{"id":"750d054d-a02a-48e2-b227-ff2cc1a8041b", - "status":"unknown", "ip_address":"", "created_at":"2025-05-20T08:19:38.798561Z", - "updated_at":"2025-05-20T08:24:19.985177Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", "ip_address":"62.210.111.208", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", "reverse":"62-210-111-208.lb.fr-par.scw.cloud", - "tags":[], "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, - "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719186Z", "updated_at":"2025-05-20T08:24:19.995727Z", - "private_network_count":0, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + body: '{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"creating","instances":[{"id":"e4af0be0-bec5-4481-b8b1-79559b3ff879","status":"unknown","ip_address":"","created_at":"2025-05-22T14:55:09.932624Z","updated_at":"2025-05-22T15:00:00.628222Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:00.635356Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1074" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:20 GMT + - Thu, 22 May 2025 15:00:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1841,53 +1781,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4889c348-80cb-40d1-ba02-88056bbda278 + - f734e5e8-e8a4-4531-9d1d-9de2efa41808 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"538db5d8-81f8-4759-92df-708a2c89799b", "name":"cli-test", "description":"cli-test", - "status":"creating", "instances":[{"id":"750d054d-a02a-48e2-b227-ff2cc1a8041b", - "status":"ready", "ip_address":"", "created_at":"2025-05-20T08:19:38.798561Z", - "updated_at":"2025-05-20T08:24:21.624320Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", "ip_address":"62.210.111.208", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", "reverse":"62-210-111-208.lb.fr-par.scw.cloud", - "tags":[], "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, - "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719186Z", "updated_at":"2025-05-20T08:24:19.995727Z", - "private_network_count":0, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + body: '{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"creating","instances":[{"id":"e4af0be0-bec5-4481-b8b1-79559b3ff879","status":"ready","ip_address":"","created_at":"2025-05-22T14:55:09.932624Z","updated_at":"2025-05-22T15:00:02.904039Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:00.635356Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/538db5d8-81f8-4759-92df-708a2c89799b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/687d73cc-64af-4dfe-ac3a-1038d13f2182 method: GET response: - body: '{"id":"538db5d8-81f8-4759-92df-708a2c89799b", "name":"cli-test", "description":"cli-test", - "status":"creating", "instances":[{"id":"750d054d-a02a-48e2-b227-ff2cc1a8041b", - "status":"ready", "ip_address":"", "created_at":"2025-05-20T08:19:38.798561Z", - "updated_at":"2025-05-20T08:24:21.624320Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", "ip_address":"62.210.111.208", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", "reverse":"62-210-111-208.lb.fr-par.scw.cloud", - "tags":[], "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, - "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719186Z", "updated_at":"2025-05-20T08:24:19.995727Z", - "private_network_count":0, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + body: '{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"creating","instances":[{"id":"e4af0be0-bec5-4481-b8b1-79559b3ff879","status":"ready","ip_address":"","created_at":"2025-05-22T14:55:09.932624Z","updated_at":"2025-05-22T15:00:02.904039Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:00.635356Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:22 GMT + - Thu, 22 May 2025 15:00:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1895,53 +1813,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 211aad59-3fff-4074-aa73-eff8c46ab007 + - e3f99e1c-383b-4707-9131-7f8452a73ea2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"538db5d8-81f8-4759-92df-708a2c89799b", "name":"cli-test", "description":"cli-test", - "status":"ready", "instances":[{"id":"750d054d-a02a-48e2-b227-ff2cc1a8041b", - "status":"ready", "ip_address":"", "created_at":"2025-05-20T08:19:38.798561Z", - "updated_at":"2025-05-20T08:24:21.624320Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", "ip_address":"62.210.111.208", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", "reverse":"62-210-111-208.lb.fr-par.scw.cloud", - "tags":[], "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, - "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719186Z", "updated_at":"2025-05-20T08:24:22.832155Z", - "private_network_count":0, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + body: '{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"ready","instances":[{"id":"e4af0be0-bec5-4481-b8b1-79559b3ff879","status":"ready","ip_address":"","created_at":"2025-05-22T14:55:09.932624Z","updated_at":"2025-05-22T15:00:02.904039Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:06.224900Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/538db5d8-81f8-4759-92df-708a2c89799b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/687d73cc-64af-4dfe-ac3a-1038d13f2182 method: GET response: - body: '{"id":"538db5d8-81f8-4759-92df-708a2c89799b", "name":"cli-test", "description":"cli-test", - "status":"ready", "instances":[{"id":"750d054d-a02a-48e2-b227-ff2cc1a8041b", - "status":"ready", "ip_address":"", "created_at":"2025-05-20T08:19:38.798561Z", - "updated_at":"2025-05-20T08:24:21.624320Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", "ip_address":"62.210.111.208", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", "reverse":"62-210-111-208.lb.fr-par.scw.cloud", - "tags":[], "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, - "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719186Z", "updated_at":"2025-05-20T08:24:22.832155Z", - "private_network_count":0, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + body: '{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"ready","instances":[{"id":"e4af0be0-bec5-4481-b8b1-79559b3ff879","status":"ready","ip_address":"","created_at":"2025-05-22T14:55:09.932624Z","updated_at":"2025-05-22T15:00:02.904039Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:06.224900Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1102" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:24 GMT + - Thu, 22 May 2025 15:00:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1949,61 +1845,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04190eee-ba00-48ad-a4ac-d9a123335969 + - ef9a3c23-569c-4cab-96bd-df687cf0357c status: 200 OK code: 200 duration: "" - request: - body: '{"lb":{"id":"538db5d8-81f8-4759-92df-708a2c89799b", "name":"cli-test", - "description":"cli-test", "status":"ready", "instances":[{"id":"750d054d-a02a-48e2-b227-ff2cc1a8041b", - "status":"ready", "ip_address":"", "created_at":"2025-05-20T08:19:38.798561Z", - "updated_at":"2025-05-20T08:24:21.624320Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", "ip_address":"62.210.111.208", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", "reverse":"62-210-111-208.lb.fr-par.scw.cloud", - "tags":[], "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, - "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719186Z", "updated_at":"2025-05-20T08:24:22.832155Z", - "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}, - "private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "status":"pending", - "created_at":"2025-05-20T08:24:24.376768970Z", "updated_at":"2025-05-20T08:24:24.376768970Z", - "dhcp_config":{"ip_id":null}, "ipam_ids":[]}' + body: '{"lb":{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"ready","instances":[{"id":"e4af0be0-bec5-4481-b8b1-79559b3ff879","status":"ready","ip_address":"","created_at":"2025-05-22T14:55:09.932624Z","updated_at":"2025-05-22T15:00:02.904039Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:06.224900Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","status":"pending","created_at":"2025-05-22T15:00:07.379528625Z","updated_at":"2025-05-22T15:00:07.379528625Z","dhcp_config":{"ip_id":null},"ipam_ids":[]}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/538db5d8-81f8-4759-92df-708a2c89799b/attach-private-network + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/687d73cc-64af-4dfe-ac3a-1038d13f2182/attach-private-network method: POST response: - body: '{"lb":{"id":"538db5d8-81f8-4759-92df-708a2c89799b", "name":"cli-test", - "description":"cli-test", "status":"ready", "instances":[{"id":"750d054d-a02a-48e2-b227-ff2cc1a8041b", - "status":"ready", "ip_address":"", "created_at":"2025-05-20T08:19:38.798561Z", - "updated_at":"2025-05-20T08:24:21.624320Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", "ip_address":"62.210.111.208", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", "reverse":"62-210-111-208.lb.fr-par.scw.cloud", - "tags":[], "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, - "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719186Z", "updated_at":"2025-05-20T08:24:22.832155Z", - "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}, - "private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "status":"pending", - "created_at":"2025-05-20T08:24:24.376768970Z", "updated_at":"2025-05-20T08:24:24.376768970Z", - "dhcp_config":{"ip_id":null}, "ipam_ids":[]}' + body: '{"lb":{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"ready","instances":[{"id":"e4af0be0-bec5-4481-b8b1-79559b3ff879","status":"ready","ip_address":"","created_at":"2025-05-22T14:55:09.932624Z","updated_at":"2025-05-22T15:00:02.904039Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:06.224900Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","status":"pending","created_at":"2025-05-22T15:00:07.379528625Z","updated_at":"2025-05-22T15:00:07.379528625Z","dhcp_config":{"ip_id":null},"ipam_ids":[]}' headers: Content-Length: - - "1329" + - "1290" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:24 GMT + - Thu, 22 May 2025 15:00:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2011,1254 +1879,417 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1568d745-b99b-450f-a161-ccfda1ceee58 + - 4f352d63-d9b6-4d40-9176-19c10cd65fd8 status: 200 OK code: 200 duration: "" - request: - 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_digest_length", "default_value":"1024", "hot_configurable":false, - "description":"The maximum number of bytes of memory reserved per session for - computation of normalized statement digests", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":1024, "int_max":8192, "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":"performance_schema_max_digest_length", "default_value":"1024", - "hot_configurable":false, "description":"The maximum number of bytes of memory - reserved per statement for computation of normalized statement digest values - in the Performance Schema", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":1024, "int_max":8192, "float_min":null, "float_max":null}, {"name":"performance_schema_max_sql_text_length", - "default_value":"1024", "hot_configurable":false, "description":"The maximum - number of bytes used to store SQL statements", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":1024, "int_max":8192, "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 + 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_digest_length","default_value":"1024","hot_configurable":false,"description":"The + maximum number of bytes of memory reserved per session for computation of normalized + statement digests","property_type":"INT","unit":null,"string_constraint":null,"int_min":1024,"int_max":8192,"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":"performance_schema_max_digest_length","default_value":"1024","hot_configurable":false,"description":"The + maximum number of bytes of memory reserved per statement for computation of + normalized statement digest values in the Performance Schema","property_type":"INT","unit":null,"string_constraint":null,"int_min":1024,"int_max":8192,"float_min":null,"float_max":null},{"name":"performance_schema_max_sql_text_length","default_value":"1024","hot_configurable":false,"description":"The + maximum number of bytes used to store SQL statements","property_type":"INT","unit":null,"string_constraint":null,"int_min":1024,"int_max":8192,"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|ALLOW_INVALID_DATES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|ALLOW_INVALID_DATES|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 + 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":"16", "name":"PostgreSQL-16", "end_of_life":"2028-11-09T00:00:00Z", - "available_settings":[{"name":"autovacuum_vacuum_insert_scale_factor", "default_value":"0.2", - "hot_configurable":true, "description":"Specifies a fraction of the table size - to add to autovacuum_vacuum_insert_threshold when deciding whether to trigger - a VACUUM.", "property_type":"FLOAT", "unit":null, "string_constraint":null, - "int_min":null, "int_max":null, "float_min":0.1, "float_max":100}, {"name":"autovacuum_vacuum_insert_threshold", - "default_value":"1000", "hot_configurable":true, "description":"Specifies the - number of inserted tuples needed to trigger a VACUUM in any one table.", "property_type":"INT", - "unit":null, "string_constraint":null, "int_min":-1, "int_max":1147483647, "float_min":null, - "float_max":null}, {"name":"autovacuum_vacuum_scale_factor", "default_value":"0.2", - "hot_configurable":true, "description":"Specifies a fraction of the table size - to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM.", - "property_type":"FLOAT", "unit":null, "string_constraint":null, "int_min":null, - "int_max":null, "float_min":0.1, "float_max":100}, {"name":"autovacuum_vacuum_threshold", - "default_value":"50", "hot_configurable":true, "description":"Specifies the - minimum number of updated or deleted tuples needed to trigger a VACUUM in any - one table.", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":50, - "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"bgwriter_delay", - "default_value":"200", "hot_configurable":true, "description":"Background writer - sleep time between rounds.", "property_type":"INT", "unit":"ms", "string_constraint":null, - "int_min":10, "int_max":10000, "float_min":null, "float_max":null}, {"name":"bgwriter_flush_after", - "default_value":"512", "hot_configurable":true, "description":"Number of pages - after which previously performed writes are flushed to disk.", "property_type":"INT", - "unit":"kB", "string_constraint":null, "int_min":0, "int_max":2048, "float_min":null, - "float_max":null}, {"name":"bgwriter_lru_maxpages", "default_value":"100", "hot_configurable":true, - "description":"Background writer maximum number of LRU pages to flush per round.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":1073741823, - "float_min":null, "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", - "hot_configurable":true, "description":"Multiple of the average buffer usage - to free per round.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":0, "int_max":10, "float_min":null, "float_max":null}, {"name":"checkpoint_timeout", - "default_value":"30", "hot_configurable":true, "description":"Sets the maximum - time between automatic WAL checkpoints.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, "float_max":null}, - {"name":"commit_delay", "default_value":"0", "hot_configurable":true, "description":"Sets - the delay in microseconds between transaction commit and flushing WAL to disk.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":100000, - "float_min":null, "float_max":null}, {"name":"cron.timezone", "default_value":"GMT", - "hot_configurable":false, "description":"Specifies the timezone in which the - pg_cron background worker should run.", "property_type":"STRING", "unit":null, - "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", - "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", - "default_value":"1000", "hot_configurable":true, "description":"Sets the time - to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", - "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, - "float_max":null}, {"name":"default_statistics_target", "default_value":"100", - "hot_configurable":true, "description":"Sets the default statistics target.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, - "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", - "default_value":"off", "hot_configurable":true, "description":"Sets the default - deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, - "description":"Sets the planner s assumption about the size of the data cache.", - "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, - "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", - "default_value":"1", "hot_configurable":true, "description":"Sets the number - of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, - "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", - "hot_configurable":true, "description":"Specifies whether or not a hot standby - will send feedback to the primary or upstream standby about queries currently - executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, - "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", - "default_value":"3600000", "hot_configurable":true, "description":"Sets the - maximum allowed duration of any idling transaction. Value in ms.", "property_type":"INT", - "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, - "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", - "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", - "hot_configurable":true, "description":"Sets the minimum execution time above - which autovacuum actions will be logged.", "property_type":"INT", "unit":"ms", - "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"log_checkpoints", "default_value":"on", "hot_configurable":true, - "description":"Causes checkpoints and restartpoints to be logged in the server - log.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, "int_min":null, - "int_max":null, "float_min":null, "float_max":null}, {"name":"log_lock_waits", - "default_value":"on", "hot_configurable":true, "description":"Logs long lock - waits", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, "int_min":null, - "int_max":null, "float_min":null, "float_max":null}, {"name":"log_min_duration_statement", - "default_value":"5000", "hot_configurable":true, "description":"Sets the minimum - execution time above which all statements will be logged", "property_type":"INT", - "unit":"ms", "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"log_replication_commands", "default_value":"on", - "hot_configurable":false, "description":"Logs each replication command", "property_type":"BOOLEAN", - "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"log_temp_files", "default_value":"0", "hot_configurable":true, - "description":"Log the use of temporary files larger than this number of kilobytes", - "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":-1, - "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"maintenance_work_mem", - "default_value":"64", "hot_configurable":true, "description":"Sets the maximum - memory to be used for maintenance operations.", "property_type":"INT", "unit":"MB", - "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, - "float_max":null}, {"name":"max_connections", "default_value":"100", "hot_configurable":false, - "description":"Sets the maximum number of concurrent connections.", "property_type":"INT", - "unit":null, "string_constraint":null, "int_min":50, "int_max":10000, "float_min":null, - "float_max":null}, {"name":"max_locks_per_transaction", "default_value":"64", - "hot_configurable":false, "description":"Sets the maximum number of locks per - transaction.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", - "default_value":"8", "hot_configurable":true, "description":"Sets the maximum - number of parallel workers that can be active at one time.", "property_type":"INT", - "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, - "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", - "hot_configurable":true, "description":"Sets the maximum number of parallel - processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", - "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum - delay before canceling queries when a hot standby server is processing streamed - WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, - "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", - "default_value":"1024", "hot_configurable":true, "description":"Maximum size - to let the WAL grow during automatic checkpoints. Be careful adjusting this - setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, - "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pg_stat_statements.max", - "default_value":"5000", "hot_configurable":false, "description":"Specifies the - maximum number of statements tracked by the module.", "property_type":"INT", - "unit":null, "string_constraint":null, "int_min":100, "int_max":15000, "float_min":null, - "float_max":null}, {"name":"pg_stat_statements.track", "default_value":"top", - "hot_configurable":true, "description":"Controls which statements are counted - by the module.", "property_type":"STRING", "unit":null, "string_constraint":"^(top|all|none)$", - "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pg_stat_statements.track_utility", - "default_value":"on", "hot_configurable":true, "description":"Controls whether - utility commands are tracked by the module.", "property_type":"BOOLEAN", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"pgaudit.log", "default_value":"none", "hot_configurable":true, - "description":"Specifies which classes of statements will be logged by session - audit logging", "property_type":"STRING", "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", - "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", - "default_value":"", "hot_configurable":true, "description":"Specifies the master - role to use for object audit logging.", "property_type":"STRING", "unit":null, - "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, - "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", - "hot_configurable":true, "description":"Sets the planner''s estimate of the - cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, - {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, - "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", - "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, - "description":"Sets the planner''s estimate of the cost of a disk page fetch - that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, - {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, - "description":"Sets the maximum allowed duration of any statement. Value in - ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, - "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", - "default_value":"0", "hot_configurable":true, "description":"Maximum number - of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", - "default_value":"0", "hot_configurable":true, "description":"Time between issuing - TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", - "default_value":"0", "hot_configurable":true, "description":"Time between TCP - keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", - "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum - number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", - "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, - "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, - "description":"Limits the total size of all temporary files used by each session.", - "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":-1, - "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", - "default_value":"GMT", "hot_configurable":true, "description":"This option sets - the global timezone system variable.", "property_type":"STRING", "unit":null, - "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", - "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", - "default_value":"1024", "hot_configurable":false, "description":"Sets the size - reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, - "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", - "default_value":"off", "hot_configurable":false, "description":"Record commit - time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, - "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", - "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay - in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, - "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", - "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount - available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", - "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for - a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", - "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for - a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", - "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for - a page not found in the buffer cache.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, - {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets - the maximum memory to be used 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":"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}' + 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":"16","name":"PostgreSQL-16","end_of_life":"2028-11-09T00:00:00Z","available_settings":[{"name":"autovacuum_vacuum_insert_scale_factor","default_value":"0.2","hot_configurable":true,"description":"Specifies + a fraction of the table size to add to autovacuum_vacuum_insert_threshold when + deciding whether to trigger a VACUUM.","property_type":"FLOAT","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":0.1,"float_max":100},{"name":"autovacuum_vacuum_insert_threshold","default_value":"1000","hot_configurable":true,"description":"Specifies + the number of inserted tuples needed to trigger a VACUUM in any one table.","property_type":"INT","unit":null,"string_constraint":null,"int_min":-1,"int_max":1147483647,"float_min":null,"float_max":null},{"name":"autovacuum_vacuum_scale_factor","default_value":"0.2","hot_configurable":true,"description":"Specifies + a fraction of the table size to add to autovacuum_vacuum_threshold when deciding + whether to trigger a VACUUM.","property_type":"FLOAT","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":0.1,"float_max":100},{"name":"autovacuum_vacuum_threshold","default_value":"50","hot_configurable":true,"description":"Specifies + the minimum number of updated or deleted tuples needed to trigger a VACUUM in + any one table.","property_type":"INT","unit":null,"string_constraint":null,"int_min":50,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"bgwriter_delay","default_value":"200","hot_configurable":true,"description":"Background + writer sleep time between rounds.","property_type":"INT","unit":"ms","string_constraint":null,"int_min":10,"int_max":10000,"float_min":null,"float_max":null},{"name":"bgwriter_flush_after","default_value":"512","hot_configurable":true,"description":"Number + of pages after which previously performed writes are flushed to disk.","property_type":"INT","unit":"kB","string_constraint":null,"int_min":0,"int_max":2048,"float_min":null,"float_max":null},{"name":"bgwriter_lru_maxpages","default_value":"100","hot_configurable":true,"description":"Background + writer maximum number of LRU pages to flush per round.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":1073741823,"float_min":null,"float_max":null},{"name":"bgwriter_lru_multiplier","default_value":"2","hot_configurable":true,"description":"Multiple + of the average buffer usage to free per round.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":10,"float_min":null,"float_max":null},{"name":"checkpoint_timeout","default_value":"30","hot_configurable":true,"description":"Sets + the maximum time between automatic WAL checkpoints.","property_type":"INT","unit":null,"string_constraint":null,"int_min":30,"int_max":21600,"float_min":null,"float_max":null},{"name":"commit_delay","default_value":"0","hot_configurable":true,"description":"Sets + the delay in microseconds between transaction commit and flushing WAL to disk.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":100000,"float_min":null,"float_max":null},{"name":"cron.timezone","default_value":"GMT","hot_configurable":false,"description":"Specifies + the timezone in which the pg_cron background worker should run.","property_type":"STRING","unit":null,"string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"deadlock_timeout","default_value":"1000","hot_configurable":true,"description":"Sets + the time to wait on a lock before checking for deadlock.","property_type":"INT","unit":"ms","string_constraint":null,"int_min":100,"int_max":60000,"float_min":null,"float_max":null},{"name":"default_statistics_target","default_value":"100","hot_configurable":true,"description":"Sets + the default statistics target.","property_type":"INT","unit":null,"string_constraint":null,"int_min":1,"int_max":10000,"float_min":null,"float_max":null},{"name":"default_transaction_deferrable","default_value":"off","hot_configurable":true,"description":"Sets + the default deferrable status of new transactions.","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"effective_cache_size","default_value":"4096","hot_configurable":true,"description":"Sets + the planner s assumption about the size of the data cache.","property_type":"INT","unit":"MB","string_constraint":null,"int_min":64,"int_max":1048576,"float_min":null,"float_max":null},{"name":"effective_io_concurrency","default_value":"1","hot_configurable":true,"description":"Sets + the number of concurrent disk I/O operations that PostgreSQL expects can be + executed simultaneously.","property_type":"INT","unit":null,"string_constraint":null,"int_min":1,"int_max":32,"float_min":null,"float_max":null},{"name":"hot_standby_feedback","default_value":"off","hot_configurable":true,"description":"Specifies + whether or not a hot standby will send feedback to the primary or upstream standby + about queries currently executing on the standby.","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"idle_in_transaction_session_timeout","default_value":"3600000","hot_configurable":true,"description":"Sets + the maximum allowed duration of any idling transaction. Value in ms.","property_type":"INT","unit":"ms","string_constraint":null,"int_min":0,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"lock_timeout","default_value":"0","hot_configurable":false,"description":"Sets + the maximum allowed duration of any wait for a lock.","property_type":"INT","unit":"ms","string_constraint":null,"int_min":0,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"log_autovacuum_min_duration","default_value":"-1","hot_configurable":true,"description":"Sets + the minimum execution time above which autovacuum actions will be logged.","property_type":"INT","unit":"ms","string_constraint":null,"int_min":-1,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"log_checkpoints","default_value":"on","hot_configurable":true,"description":"Causes + checkpoints and restartpoints to be logged in the server log.","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"log_lock_waits","default_value":"on","hot_configurable":true,"description":"Logs + long lock waits","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"log_min_duration_statement","default_value":"5000","hot_configurable":true,"description":"Sets + the minimum execution time above which all statements will be logged","property_type":"INT","unit":"ms","string_constraint":null,"int_min":-1,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"log_replication_commands","default_value":"on","hot_configurable":false,"description":"Logs + each replication command","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"log_temp_files","default_value":"0","hot_configurable":true,"description":"Log + the use of temporary files larger than this number of kilobytes","property_type":"INT","unit":"kB","string_constraint":null,"int_min":-1,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"maintenance_work_mem","default_value":"64","hot_configurable":true,"description":"Sets + the maximum memory to be used for maintenance operations.","property_type":"INT","unit":"MB","string_constraint":null,"int_min":1,"int_max":2097151,"float_min":null,"float_max":null},{"name":"max_connections","default_value":"100","hot_configurable":false,"description":"Sets + the maximum number of concurrent connections.","property_type":"INT","unit":null,"string_constraint":null,"int_min":50,"int_max":10000,"float_min":null,"float_max":null},{"name":"max_locks_per_transaction","default_value":"64","hot_configurable":false,"description":"Sets + the maximum number of locks per transaction.","property_type":"INT","unit":null,"string_constraint":null,"int_min":10,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"max_parallel_workers","default_value":"8","hot_configurable":true,"description":"Sets + the maximum number of parallel workers that can be active at one time.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":1024,"float_min":null,"float_max":null},{"name":"max_parallel_workers_per_gather","default_value":"2","hot_configurable":true,"description":"Sets + the maximum number of parallel processes per executor node.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":1024,"float_min":null,"float_max":null},{"name":"max_standby_streaming_delay","default_value":"30000","hot_configurable":true,"description":"Sets + the maximum delay before canceling queries when a hot standby server is processing + streamed WAL data.","property_type":"INT","unit":"ms","string_constraint":null,"int_min":0,"int_max":180000,"float_min":null,"float_max":null},{"name":"max_wal_size","default_value":"1024","hot_configurable":true,"description":"Maximum + size to let the WAL grow during automatic checkpoints. Be careful adjusting + this setting will use disk space","property_type":"INT","unit":"MB","string_constraint":null,"int_min":256,"int_max":10240,"float_min":null,"float_max":null},{"name":"pg_stat_statements.max","default_value":"5000","hot_configurable":false,"description":"Specifies + the maximum number of statements tracked by the module.","property_type":"INT","unit":null,"string_constraint":null,"int_min":100,"int_max":15000,"float_min":null,"float_max":null},{"name":"pg_stat_statements.track","default_value":"top","hot_configurable":true,"description":"Controls + which statements are counted by the module.","property_type":"STRING","unit":null,"string_constraint":"^(top|all|none)$","int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"pg_stat_statements.track_utility","default_value":"on","hot_configurable":true,"description":"Controls + whether utility commands are tracked by the module.","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"pgaudit.log","default_value":"none","hot_configurable":true,"description":"Specifies + which classes of statements will be logged by session audit logging","property_type":"STRING","unit":null,"string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"pgaudit.role","default_value":"","hot_configurable":true,"description":"Specifies + the master role to use for object audit logging.","property_type":"STRING","unit":null,"string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"random_page_cost","default_value":"4.0","hot_configurable":true,"description":"Sets + the planner''s estimate of the cost of a non-sequentially-fetched disk page.","property_type":"FLOAT","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":0.1,"float_max":10},{"name":"rdb.enable_pgaudit","default_value":"off","hot_configurable":false,"description":"Enable + pgaudit extension on the instance.","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"seq_page_cost","default_value":"1.0","hot_configurable":true,"description":"Sets + the planner''s estimate of the cost of a disk page fetch that is part of a series + of sequential fetches.","property_type":"FLOAT","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":0.1,"float_max":10},{"name":"statement_timeout","default_value":"86400000","hot_configurable":true,"description":"Sets + the maximum allowed duration of any statement. Value in ms","property_type":"INT","unit":"ms","string_constraint":null,"int_min":30000,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"tcp_keepalives_count","default_value":"0","hot_configurable":true,"description":"Maximum + number of TCP keepalive retransmits.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"tcp_keepalives_idle","default_value":"0","hot_configurable":true,"description":"Time + between issuing TCP keepalives.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"tcp_keepalives_interval","default_value":"0","hot_configurable":true,"description":"Time + between TCP keepalive retransmits.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"temp_buffers","default_value":"8192","hot_configurable":true,"description":"Sets + the maximum number of temporary buffers used by each session.","property_type":"INT","unit":"kB","string_constraint":null,"int_min":800,"int_max":1073741824,"float_min":null,"float_max":null},{"name":"temp_file_limit","default_value":"-1","hot_configurable":false,"description":"Limits + the total size of all temporary files used by each session.","property_type":"INT","unit":"kB","string_constraint":null,"int_min":-1,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"timezone","default_value":"GMT","hot_configurable":true,"description":"This + option sets the global timezone system variable.","property_type":"STRING","unit":null,"string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"track_activity_query_size","default_value":"1024","hot_configurable":false,"description":"Sets + the size reserved for pg_stat_activity.query.","property_type":"INT","unit":"B","string_constraint":null,"int_min":100,"int_max":8192,"float_min":null,"float_max":null},{"name":"track_commit_timestamp","default_value":"off","hot_configurable":false,"description":"Record + commit time of transactions.","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"vacuum_cost_delay","default_value":"0","hot_configurable":true,"description":"Vacuum + cost delay in milliseconds.","property_type":"INT","unit":"ms","string_constraint":null,"int_min":0,"int_max":100,"float_min":null,"float_max":null},{"name":"vacuum_cost_limit","default_value":"200","hot_configurable":true,"description":"Vacuum + cost amount available before napping.","property_type":"INT","unit":null,"string_constraint":null,"int_min":1,"int_max":10000,"float_min":null,"float_max":null},{"name":"vacuum_cost_page_dirty","default_value":"20","hot_configurable":true,"description":"Vacuum + cost for a page dirtied by vacuum.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":10000,"float_min":null,"float_max":null},{"name":"vacuum_cost_page_hit","default_value":"1","hot_configurable":true,"description":"Vacuum + cost for a page found in the buffer cache.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":10000,"float_min":null,"float_max":null},{"name":"vacuum_cost_page_miss","default_value":"10","hot_configurable":true,"description":"Vacuum + cost for a page not found in the buffer cache.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":10000,"float_min":null,"float_max":null},{"name":"work_mem","default_value":"4","hot_configurable":true,"description":"Sets + the maximum memory to be used 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":"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: @@ -3266,1260 +2297,423 @@ interactions: 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_digest_length", "default_value":"1024", "hot_configurable":false, - "description":"The maximum number of bytes of memory reserved per session for - computation of normalized statement digests", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":1024, "int_max":8192, "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":"performance_schema_max_digest_length", "default_value":"1024", - "hot_configurable":false, "description":"The maximum number of bytes of memory - reserved per statement for computation of normalized statement digest values - in the Performance Schema", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":1024, "int_max":8192, "float_min":null, "float_max":null}, {"name":"performance_schema_max_sql_text_length", - "default_value":"1024", "hot_configurable":false, "description":"The maximum - number of bytes used to store SQL statements", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":1024, "int_max":8192, "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 + 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_digest_length","default_value":"1024","hot_configurable":false,"description":"The + maximum number of bytes of memory reserved per session for computation of normalized + statement digests","property_type":"INT","unit":null,"string_constraint":null,"int_min":1024,"int_max":8192,"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":"performance_schema_max_digest_length","default_value":"1024","hot_configurable":false,"description":"The + maximum number of bytes of memory reserved per statement for computation of + normalized statement digest values in the Performance Schema","property_type":"INT","unit":null,"string_constraint":null,"int_min":1024,"int_max":8192,"float_min":null,"float_max":null},{"name":"performance_schema_max_sql_text_length","default_value":"1024","hot_configurable":false,"description":"The + maximum number of bytes used to store SQL statements","property_type":"INT","unit":null,"string_constraint":null,"int_min":1024,"int_max":8192,"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|ALLOW_INVALID_DATES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|ALLOW_INVALID_DATES|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 + 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":"16", "name":"PostgreSQL-16", "end_of_life":"2028-11-09T00:00:00Z", - "available_settings":[{"name":"autovacuum_vacuum_insert_scale_factor", "default_value":"0.2", - "hot_configurable":true, "description":"Specifies a fraction of the table size - to add to autovacuum_vacuum_insert_threshold when deciding whether to trigger - a VACUUM.", "property_type":"FLOAT", "unit":null, "string_constraint":null, - "int_min":null, "int_max":null, "float_min":0.1, "float_max":100}, {"name":"autovacuum_vacuum_insert_threshold", - "default_value":"1000", "hot_configurable":true, "description":"Specifies the - number of inserted tuples needed to trigger a VACUUM in any one table.", "property_type":"INT", - "unit":null, "string_constraint":null, "int_min":-1, "int_max":1147483647, "float_min":null, - "float_max":null}, {"name":"autovacuum_vacuum_scale_factor", "default_value":"0.2", - "hot_configurable":true, "description":"Specifies a fraction of the table size - to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM.", - "property_type":"FLOAT", "unit":null, "string_constraint":null, "int_min":null, - "int_max":null, "float_min":0.1, "float_max":100}, {"name":"autovacuum_vacuum_threshold", - "default_value":"50", "hot_configurable":true, "description":"Specifies the - minimum number of updated or deleted tuples needed to trigger a VACUUM in any - one table.", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":50, - "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"bgwriter_delay", - "default_value":"200", "hot_configurable":true, "description":"Background writer - sleep time between rounds.", "property_type":"INT", "unit":"ms", "string_constraint":null, - "int_min":10, "int_max":10000, "float_min":null, "float_max":null}, {"name":"bgwriter_flush_after", - "default_value":"512", "hot_configurable":true, "description":"Number of pages - after which previously performed writes are flushed to disk.", "property_type":"INT", - "unit":"kB", "string_constraint":null, "int_min":0, "int_max":2048, "float_min":null, - "float_max":null}, {"name":"bgwriter_lru_maxpages", "default_value":"100", "hot_configurable":true, - "description":"Background writer maximum number of LRU pages to flush per round.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":1073741823, - "float_min":null, "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", - "hot_configurable":true, "description":"Multiple of the average buffer usage - to free per round.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":0, "int_max":10, "float_min":null, "float_max":null}, {"name":"checkpoint_timeout", - "default_value":"30", "hot_configurable":true, "description":"Sets the maximum - time between automatic WAL checkpoints.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, "float_max":null}, - {"name":"commit_delay", "default_value":"0", "hot_configurable":true, "description":"Sets - the delay in microseconds between transaction commit and flushing WAL to disk.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":100000, - "float_min":null, "float_max":null}, {"name":"cron.timezone", "default_value":"GMT", - "hot_configurable":false, "description":"Specifies the timezone in which the - pg_cron background worker should run.", "property_type":"STRING", "unit":null, - "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", - "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", - "default_value":"1000", "hot_configurable":true, "description":"Sets the time - to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", - "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, - "float_max":null}, {"name":"default_statistics_target", "default_value":"100", - "hot_configurable":true, "description":"Sets the default statistics target.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, - "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", - "default_value":"off", "hot_configurable":true, "description":"Sets the default - deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, - "description":"Sets the planner s assumption about the size of the data cache.", - "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, - "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", - "default_value":"1", "hot_configurable":true, "description":"Sets the number - of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, - "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", - "hot_configurable":true, "description":"Specifies whether or not a hot standby - will send feedback to the primary or upstream standby about queries currently - executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, - "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", - "default_value":"3600000", "hot_configurable":true, "description":"Sets the - maximum allowed duration of any idling transaction. Value in ms.", "property_type":"INT", - "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, - "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", - "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", - "hot_configurable":true, "description":"Sets the minimum execution time above - which autovacuum actions will be logged.", "property_type":"INT", "unit":"ms", - "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"log_checkpoints", "default_value":"on", "hot_configurable":true, - "description":"Causes checkpoints and restartpoints to be logged in the server - log.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, "int_min":null, - "int_max":null, "float_min":null, "float_max":null}, {"name":"log_lock_waits", - "default_value":"on", "hot_configurable":true, "description":"Logs long lock - waits", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, "int_min":null, - "int_max":null, "float_min":null, "float_max":null}, {"name":"log_min_duration_statement", - "default_value":"5000", "hot_configurable":true, "description":"Sets the minimum - execution time above which all statements will be logged", "property_type":"INT", - "unit":"ms", "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"log_replication_commands", "default_value":"on", - "hot_configurable":false, "description":"Logs each replication command", "property_type":"BOOLEAN", - "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"log_temp_files", "default_value":"0", "hot_configurable":true, - "description":"Log the use of temporary files larger than this number of kilobytes", - "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":-1, - "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"maintenance_work_mem", - "default_value":"64", "hot_configurable":true, "description":"Sets the maximum - memory to be used for maintenance operations.", "property_type":"INT", "unit":"MB", - "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, - "float_max":null}, {"name":"max_connections", "default_value":"100", "hot_configurable":false, - "description":"Sets the maximum number of concurrent connections.", "property_type":"INT", - "unit":null, "string_constraint":null, "int_min":50, "int_max":10000, "float_min":null, - "float_max":null}, {"name":"max_locks_per_transaction", "default_value":"64", - "hot_configurable":false, "description":"Sets the maximum number of locks per - transaction.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", - "default_value":"8", "hot_configurable":true, "description":"Sets the maximum - number of parallel workers that can be active at one time.", "property_type":"INT", - "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, - "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", - "hot_configurable":true, "description":"Sets the maximum number of parallel - processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", - "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum - delay before canceling queries when a hot standby server is processing streamed - WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, - "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", - "default_value":"1024", "hot_configurable":true, "description":"Maximum size - to let the WAL grow during automatic checkpoints. Be careful adjusting this - setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, - "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pg_stat_statements.max", - "default_value":"5000", "hot_configurable":false, "description":"Specifies the - maximum number of statements tracked by the module.", "property_type":"INT", - "unit":null, "string_constraint":null, "int_min":100, "int_max":15000, "float_min":null, - "float_max":null}, {"name":"pg_stat_statements.track", "default_value":"top", - "hot_configurable":true, "description":"Controls which statements are counted - by the module.", "property_type":"STRING", "unit":null, "string_constraint":"^(top|all|none)$", - "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pg_stat_statements.track_utility", - "default_value":"on", "hot_configurable":true, "description":"Controls whether - utility commands are tracked by the module.", "property_type":"BOOLEAN", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"pgaudit.log", "default_value":"none", "hot_configurable":true, - "description":"Specifies which classes of statements will be logged by session - audit logging", "property_type":"STRING", "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", - "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", - "default_value":"", "hot_configurable":true, "description":"Specifies the master - role to use for object audit logging.", "property_type":"STRING", "unit":null, - "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, - "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", - "hot_configurable":true, "description":"Sets the planner''s estimate of the - cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, - {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, - "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", - "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, - "description":"Sets the planner''s estimate of the cost of a disk page fetch - that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, - {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, - "description":"Sets the maximum allowed duration of any statement. Value in - ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, - "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", - "default_value":"0", "hot_configurable":true, "description":"Maximum number - of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", - "default_value":"0", "hot_configurable":true, "description":"Time between issuing - TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", - "default_value":"0", "hot_configurable":true, "description":"Time between TCP - keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", - "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum - number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", - "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, - "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, - "description":"Limits the total size of all temporary files used by each session.", - "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":-1, - "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", - "default_value":"GMT", "hot_configurable":true, "description":"This option sets - the global timezone system variable.", "property_type":"STRING", "unit":null, - "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", - "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", - "default_value":"1024", "hot_configurable":false, "description":"Sets the size - reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, - "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", - "default_value":"off", "hot_configurable":false, "description":"Record commit - time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, - "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", - "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay - in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, - "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", - "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount - available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", - "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for - a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", - "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for - a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, - "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", - "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for - a page not found in the buffer cache.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, - {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets - the maximum memory to be used 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":"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}' + 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":"16","name":"PostgreSQL-16","end_of_life":"2028-11-09T00:00:00Z","available_settings":[{"name":"autovacuum_vacuum_insert_scale_factor","default_value":"0.2","hot_configurable":true,"description":"Specifies + a fraction of the table size to add to autovacuum_vacuum_insert_threshold when + deciding whether to trigger a VACUUM.","property_type":"FLOAT","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":0.1,"float_max":100},{"name":"autovacuum_vacuum_insert_threshold","default_value":"1000","hot_configurable":true,"description":"Specifies + the number of inserted tuples needed to trigger a VACUUM in any one table.","property_type":"INT","unit":null,"string_constraint":null,"int_min":-1,"int_max":1147483647,"float_min":null,"float_max":null},{"name":"autovacuum_vacuum_scale_factor","default_value":"0.2","hot_configurable":true,"description":"Specifies + a fraction of the table size to add to autovacuum_vacuum_threshold when deciding + whether to trigger a VACUUM.","property_type":"FLOAT","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":0.1,"float_max":100},{"name":"autovacuum_vacuum_threshold","default_value":"50","hot_configurable":true,"description":"Specifies + the minimum number of updated or deleted tuples needed to trigger a VACUUM in + any one table.","property_type":"INT","unit":null,"string_constraint":null,"int_min":50,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"bgwriter_delay","default_value":"200","hot_configurable":true,"description":"Background + writer sleep time between rounds.","property_type":"INT","unit":"ms","string_constraint":null,"int_min":10,"int_max":10000,"float_min":null,"float_max":null},{"name":"bgwriter_flush_after","default_value":"512","hot_configurable":true,"description":"Number + of pages after which previously performed writes are flushed to disk.","property_type":"INT","unit":"kB","string_constraint":null,"int_min":0,"int_max":2048,"float_min":null,"float_max":null},{"name":"bgwriter_lru_maxpages","default_value":"100","hot_configurable":true,"description":"Background + writer maximum number of LRU pages to flush per round.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":1073741823,"float_min":null,"float_max":null},{"name":"bgwriter_lru_multiplier","default_value":"2","hot_configurable":true,"description":"Multiple + of the average buffer usage to free per round.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":10,"float_min":null,"float_max":null},{"name":"checkpoint_timeout","default_value":"30","hot_configurable":true,"description":"Sets + the maximum time between automatic WAL checkpoints.","property_type":"INT","unit":null,"string_constraint":null,"int_min":30,"int_max":21600,"float_min":null,"float_max":null},{"name":"commit_delay","default_value":"0","hot_configurable":true,"description":"Sets + the delay in microseconds between transaction commit and flushing WAL to disk.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":100000,"float_min":null,"float_max":null},{"name":"cron.timezone","default_value":"GMT","hot_configurable":false,"description":"Specifies + the timezone in which the pg_cron background worker should run.","property_type":"STRING","unit":null,"string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"deadlock_timeout","default_value":"1000","hot_configurable":true,"description":"Sets + the time to wait on a lock before checking for deadlock.","property_type":"INT","unit":"ms","string_constraint":null,"int_min":100,"int_max":60000,"float_min":null,"float_max":null},{"name":"default_statistics_target","default_value":"100","hot_configurable":true,"description":"Sets + the default statistics target.","property_type":"INT","unit":null,"string_constraint":null,"int_min":1,"int_max":10000,"float_min":null,"float_max":null},{"name":"default_transaction_deferrable","default_value":"off","hot_configurable":true,"description":"Sets + the default deferrable status of new transactions.","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"effective_cache_size","default_value":"4096","hot_configurable":true,"description":"Sets + the planner s assumption about the size of the data cache.","property_type":"INT","unit":"MB","string_constraint":null,"int_min":64,"int_max":1048576,"float_min":null,"float_max":null},{"name":"effective_io_concurrency","default_value":"1","hot_configurable":true,"description":"Sets + the number of concurrent disk I/O operations that PostgreSQL expects can be + executed simultaneously.","property_type":"INT","unit":null,"string_constraint":null,"int_min":1,"int_max":32,"float_min":null,"float_max":null},{"name":"hot_standby_feedback","default_value":"off","hot_configurable":true,"description":"Specifies + whether or not a hot standby will send feedback to the primary or upstream standby + about queries currently executing on the standby.","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"idle_in_transaction_session_timeout","default_value":"3600000","hot_configurable":true,"description":"Sets + the maximum allowed duration of any idling transaction. Value in ms.","property_type":"INT","unit":"ms","string_constraint":null,"int_min":0,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"lock_timeout","default_value":"0","hot_configurable":false,"description":"Sets + the maximum allowed duration of any wait for a lock.","property_type":"INT","unit":"ms","string_constraint":null,"int_min":0,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"log_autovacuum_min_duration","default_value":"-1","hot_configurable":true,"description":"Sets + the minimum execution time above which autovacuum actions will be logged.","property_type":"INT","unit":"ms","string_constraint":null,"int_min":-1,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"log_checkpoints","default_value":"on","hot_configurable":true,"description":"Causes + checkpoints and restartpoints to be logged in the server log.","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"log_lock_waits","default_value":"on","hot_configurable":true,"description":"Logs + long lock waits","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"log_min_duration_statement","default_value":"5000","hot_configurable":true,"description":"Sets + the minimum execution time above which all statements will be logged","property_type":"INT","unit":"ms","string_constraint":null,"int_min":-1,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"log_replication_commands","default_value":"on","hot_configurable":false,"description":"Logs + each replication command","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"log_temp_files","default_value":"0","hot_configurable":true,"description":"Log + the use of temporary files larger than this number of kilobytes","property_type":"INT","unit":"kB","string_constraint":null,"int_min":-1,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"maintenance_work_mem","default_value":"64","hot_configurable":true,"description":"Sets + the maximum memory to be used for maintenance operations.","property_type":"INT","unit":"MB","string_constraint":null,"int_min":1,"int_max":2097151,"float_min":null,"float_max":null},{"name":"max_connections","default_value":"100","hot_configurable":false,"description":"Sets + the maximum number of concurrent connections.","property_type":"INT","unit":null,"string_constraint":null,"int_min":50,"int_max":10000,"float_min":null,"float_max":null},{"name":"max_locks_per_transaction","default_value":"64","hot_configurable":false,"description":"Sets + the maximum number of locks per transaction.","property_type":"INT","unit":null,"string_constraint":null,"int_min":10,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"max_parallel_workers","default_value":"8","hot_configurable":true,"description":"Sets + the maximum number of parallel workers that can be active at one time.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":1024,"float_min":null,"float_max":null},{"name":"max_parallel_workers_per_gather","default_value":"2","hot_configurable":true,"description":"Sets + the maximum number of parallel processes per executor node.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":1024,"float_min":null,"float_max":null},{"name":"max_standby_streaming_delay","default_value":"30000","hot_configurable":true,"description":"Sets + the maximum delay before canceling queries when a hot standby server is processing + streamed WAL data.","property_type":"INT","unit":"ms","string_constraint":null,"int_min":0,"int_max":180000,"float_min":null,"float_max":null},{"name":"max_wal_size","default_value":"1024","hot_configurable":true,"description":"Maximum + size to let the WAL grow during automatic checkpoints. Be careful adjusting + this setting will use disk space","property_type":"INT","unit":"MB","string_constraint":null,"int_min":256,"int_max":10240,"float_min":null,"float_max":null},{"name":"pg_stat_statements.max","default_value":"5000","hot_configurable":false,"description":"Specifies + the maximum number of statements tracked by the module.","property_type":"INT","unit":null,"string_constraint":null,"int_min":100,"int_max":15000,"float_min":null,"float_max":null},{"name":"pg_stat_statements.track","default_value":"top","hot_configurable":true,"description":"Controls + which statements are counted by the module.","property_type":"STRING","unit":null,"string_constraint":"^(top|all|none)$","int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"pg_stat_statements.track_utility","default_value":"on","hot_configurable":true,"description":"Controls + whether utility commands are tracked by the module.","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"pgaudit.log","default_value":"none","hot_configurable":true,"description":"Specifies + which classes of statements will be logged by session audit logging","property_type":"STRING","unit":null,"string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"pgaudit.role","default_value":"","hot_configurable":true,"description":"Specifies + the master role to use for object audit logging.","property_type":"STRING","unit":null,"string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"random_page_cost","default_value":"4.0","hot_configurable":true,"description":"Sets + the planner''s estimate of the cost of a non-sequentially-fetched disk page.","property_type":"FLOAT","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":0.1,"float_max":10},{"name":"rdb.enable_pgaudit","default_value":"off","hot_configurable":false,"description":"Enable + pgaudit extension on the instance.","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"seq_page_cost","default_value":"1.0","hot_configurable":true,"description":"Sets + the planner''s estimate of the cost of a disk page fetch that is part of a series + of sequential fetches.","property_type":"FLOAT","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":0.1,"float_max":10},{"name":"statement_timeout","default_value":"86400000","hot_configurable":true,"description":"Sets + the maximum allowed duration of any statement. Value in ms","property_type":"INT","unit":"ms","string_constraint":null,"int_min":30000,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"tcp_keepalives_count","default_value":"0","hot_configurable":true,"description":"Maximum + number of TCP keepalive retransmits.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"tcp_keepalives_idle","default_value":"0","hot_configurable":true,"description":"Time + between issuing TCP keepalives.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"tcp_keepalives_interval","default_value":"0","hot_configurable":true,"description":"Time + between TCP keepalive retransmits.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"temp_buffers","default_value":"8192","hot_configurable":true,"description":"Sets + the maximum number of temporary buffers used by each session.","property_type":"INT","unit":"kB","string_constraint":null,"int_min":800,"int_max":1073741824,"float_min":null,"float_max":null},{"name":"temp_file_limit","default_value":"-1","hot_configurable":false,"description":"Limits + the total size of all temporary files used by each session.","property_type":"INT","unit":"kB","string_constraint":null,"int_min":-1,"int_max":2147483647,"float_min":null,"float_max":null},{"name":"timezone","default_value":"GMT","hot_configurable":true,"description":"This + option sets the global timezone system variable.","property_type":"STRING","unit":null,"string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"track_activity_query_size","default_value":"1024","hot_configurable":false,"description":"Sets + the size reserved for pg_stat_activity.query.","property_type":"INT","unit":"B","string_constraint":null,"int_min":100,"int_max":8192,"float_min":null,"float_max":null},{"name":"track_commit_timestamp","default_value":"off","hot_configurable":false,"description":"Record + commit time of transactions.","property_type":"BOOLEAN","unit":null,"string_constraint":null,"int_min":null,"int_max":null,"float_min":null,"float_max":null},{"name":"vacuum_cost_delay","default_value":"0","hot_configurable":true,"description":"Vacuum + cost delay in milliseconds.","property_type":"INT","unit":"ms","string_constraint":null,"int_min":0,"int_max":100,"float_min":null,"float_max":null},{"name":"vacuum_cost_limit","default_value":"200","hot_configurable":true,"description":"Vacuum + cost amount available before napping.","property_type":"INT","unit":null,"string_constraint":null,"int_min":1,"int_max":10000,"float_min":null,"float_max":null},{"name":"vacuum_cost_page_dirty","default_value":"20","hot_configurable":true,"description":"Vacuum + cost for a page dirtied by vacuum.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":10000,"float_min":null,"float_max":null},{"name":"vacuum_cost_page_hit","default_value":"1","hot_configurable":true,"description":"Vacuum + cost for a page found in the buffer cache.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":10000,"float_min":null,"float_max":null},{"name":"vacuum_cost_page_miss","default_value":"10","hot_configurable":true,"description":"Vacuum + cost for a page not found in the buffer cache.","property_type":"INT","unit":null,"string_constraint":null,"int_min":0,"int_max":10000,"float_min":null,"float_max":null},{"name":"work_mem","default_value":"4","hot_configurable":true,"description":"Sets + the maximum memory to be used 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":"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: - - "150339" + - "146415" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:24 GMT + - Thu, 22 May 2025 15:00:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4527,23 +2721,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06c1cecb-147b-418f-8afd-1fb489362197 + - 91688443-adff-4946-9406-531af5a98dd6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' form: {} headers: Content-Type: @@ -4553,29 +2736,18 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' headers: Content-Length: - - "1035" + - "1000" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:25 GMT + - Thu, 22 May 2025 15:00:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4583,53 +2755,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c078be6a-23c1-4bf0-abdb-edc4b3fc6b08 + - afdc838a-5c8b-493b-9d7f-13d4ce1ccaf7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0bca8a1-3d8d-4e68-8583-a466b165d225 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/584f11f5-73e1-4699-a609-3fc0e2ae8d42 method: GET response: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' headers: Content-Length: - - "1035" + - "1000" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:25 GMT + - Thu, 22 May 2025 15:00:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4637,53 +2787,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c76d2a6-9180-4493-8ff3-fa3ff11ae82a + - 17c56ae3-7a70-4981-ad6c-ef31ca643747 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0bca8a1-3d8d-4e68-8583-a466b165d225 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/584f11f5-73e1-4699-a609-3fc0e2ae8d42 method: GET response: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' headers: Content-Length: - - "1035" + - "1000" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:40 GMT + - Thu, 22 May 2025 15:00:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4691,53 +2819,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db137e90-786d-4fdd-83dd-b7880a9e90e0 + - d53f08e9-ac01-403a-abf2-d9519a1f94b3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0bca8a1-3d8d-4e68-8583-a466b165d225 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/584f11f5-73e1-4699-a609-3fc0e2ae8d42 method: GET response: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' headers: Content-Length: - - "1035" + - "1000" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:55 GMT + - Thu, 22 May 2025 15:00:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4745,53 +2851,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5ca7992-e262-4286-94cb-14295c0552aa + - c37070b4-9969-45a8-8699-7022616db2fd status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0bca8a1-3d8d-4e68-8583-a466b165d225 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/584f11f5-73e1-4699-a609-3fc0e2ae8d42 method: GET response: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' headers: Content-Length: - - "1035" + - "1000" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:25:11 GMT + - Thu, 22 May 2025 15:00:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4799,53 +2883,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3899b294-e9fe-409f-85b5-98c9088ce9b9 + - 61657f1a-3b1c-45a4-9e9e-70c10cf89f02 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0bca8a1-3d8d-4e68-8583-a466b165d225 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/584f11f5-73e1-4699-a609-3fc0e2ae8d42 method: GET response: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' headers: Content-Length: - - "1035" + - "1000" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:25:26 GMT + - Thu, 22 May 2025 15:01:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4853,53 +2915,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d172b40-d99c-4442-8b13-d3e58c8de70f + - e47d9321-6eb6-4854-a23c-22401cb492d1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0bca8a1-3d8d-4e68-8583-a466b165d225 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/584f11f5-73e1-4699-a609-3fc0e2ae8d42 method: GET response: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' headers: Content-Length: - - "1035" + - "1000" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:25:41 GMT + - Thu, 22 May 2025 15:01:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4907,53 +2947,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2114d7c-2849-4c02-83b3-15e8fd443f86 + - 32e6b840-e8d3-45f8-b687-741e94ab50e2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0bca8a1-3d8d-4e68-8583-a466b165d225 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/584f11f5-73e1-4699-a609-3fc0e2ae8d42 method: GET response: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' headers: Content-Length: - - "1035" + - "1000" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:25:56 GMT + - Thu, 22 May 2025 15:01:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4961,53 +2979,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02984f60-3415-4cd3-9920-887d86a9a56b + - 75a2c402-5930-4adf-be8d-41d2867ded83 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0bca8a1-3d8d-4e68-8583-a466b165d225 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/584f11f5-73e1-4699-a609-3fc0e2ae8d42 method: GET response: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' headers: Content-Length: - - "1035" + - "1000" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:26:11 GMT + - Thu, 22 May 2025 15:01:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5015,53 +3011,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6df3690b-3f06-4d3c-bfb0-061e8c224375 + - 89dbab31-2ed1-4c43-8401-2952db39811e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0bca8a1-3d8d-4e68-8583-a466b165d225 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/584f11f5-73e1-4699-a609-3fc0e2ae8d42 method: GET response: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' headers: Content-Length: - - "1035" + - "1000" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:26:27 GMT + - Thu, 22 May 2025 15:02:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5069,53 +3043,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65b318c9-9620-4f00-8511-183a42312465 + - c33ed70c-f422-481a-a1fc-71ecb434e195 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0bca8a1-3d8d-4e68-8583-a466b165d225 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/584f11f5-73e1-4699-a609-3fc0e2ae8d42 method: GET response: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-16", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2025-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' headers: Content-Length: - - "1035" + - "1000" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:26:42 GMT + - Thu, 22 May 2025 15:02:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5123,57 +3075,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f121d3f6-2e5e-4e59-a1ef-a66dc3c1fe66 + - a3c7a952-71c5-47bf-b71d-68cb69b81a01 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "engine":"PostgreSQL-16", - "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-05-21T08:24:25.064167Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", - "port":5432, "name":null, "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0bca8a1-3d8d-4e68-8583-a466b165d225 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/584f11f5-73e1-4699-a609-3fc0e2ae8d42 method: GET response: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "engine":"PostgreSQL-16", - "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-05-21T08:24:25.064167Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", - "port":5432, "name":null, "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-16","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2025-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' headers: Content-Length: - - "1303" + - "1000" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:26:57 GMT + - Thu, 22 May 2025 15:02:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5181,13 +3107,44 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 635a0fc9-51ee-4de6-b332-5487a94c976f + - 8b58a99f-2761-4937-959f-43ab2064a4eb status: 200 OK code: 200 duration: "" - request: - body: '{"versions":[{"version":"7.0.12", "end_of_life_at":"2026-01-02T15:04:05Z", - "available_settings":[]}], "total_count":1}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","engine":"PostgreSQL-16","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-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/584f11f5-73e1-4699-a609-3fc0e2ae8d42 + method: GET + response: + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","engine":"PostgreSQL-16","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-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' + headers: + Content-Length: + - "1257" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 22 May 2025 15:02:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3370e73a-16d5-4d18-95f2-c34df1b889cb + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"versions":[{"version":"7.0.12","end_of_life_at":"2026-01-02T15:04:05Z","available_settings":[]}],"total_count":1}' form: {} headers: User-Agent: @@ -5195,19 +3152,18 @@ interactions: url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/versions method: GET response: - body: '{"versions":[{"version":"7.0.12", "end_of_life_at":"2026-01-02T15:04:05Z", - "available_settings":[]}], "total_count":1}' + body: '{"versions":[{"version":"7.0.12","end_of_life_at":"2026-01-02T15:04:05Z","available_settings":[]}],"total_count":1}' headers: Content-Length: - - "118" + - "115" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:26:57 GMT + - Thu, 22 May 2025 15:02:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5215,18 +3171,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 875b9fde-f44b-45a9-9d26-895e7efc261c + - caad2093-bcaa-4904-834a-a21120f3c1b7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: Content-Type: @@ -5236,24 +3186,18 @@ interactions: url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances method: POST response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:26:58 GMT + - Thu, 22 May 2025 15:02:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5261,43 +3205,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77a29708-313b-423c-bd1b-9e8211cc6259 + - 3e255526-a75b-4933-92ad-29d5c981d388 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:26:58 GMT + - Thu, 22 May 2025 15:02:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5305,43 +3237,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5738acb1-a90f-4bcf-82aa-3e6d7eda4224 + - 61e4a724-0daa-46b0-9910-e24302099fd8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:27:13 GMT + - Thu, 22 May 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5349,43 +3269,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3d884ea-d2b5-43b0-b8be-aa448b207ed3 + - 3dfd6618-3ca2-4245-8b0d-72ad0e03c66e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:27:28 GMT + - Thu, 22 May 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5393,43 +3301,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b46df00-cc59-4ee1-b32c-4a51cd78725c + - 551da009-d315-4207-ad5a-5f8fe8ee7dee status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:27:43 GMT + - Thu, 22 May 2025 15:03:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5437,43 +3333,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcf12fc7-7ab9-4ddc-a18d-80538e09e286 + - 52a184a0-2913-4f13-b1b4-3ff44dbddde5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:27:58 GMT + - Thu, 22 May 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5481,43 +3365,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1849e1d8-5c9e-4118-a98f-4d6b07d976cb + - bb10e6ad-eb50-4e8b-884a-f68f5ddf4788 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:28:13 GMT + - Thu, 22 May 2025 15:04:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5525,43 +3397,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3f4ac59-bb9c-476e-a6db-ace93db846a4 + - 1e8e6bea-30cf-4a81-8f34-25dc122d42db status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:28:28 GMT + - Thu, 22 May 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5569,43 +3429,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da506c59-a695-4be7-acd7-fa518027a4d4 + - 43ae48e9-d4f8-47da-afd5-761f42686177 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:28:43 GMT + - Thu, 22 May 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5613,43 +3461,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5084e56-6c1d-4190-b68e-3de9af131853 + - a6585695-3199-4ae3-a1ea-b56b408992d4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:28:58 GMT + - Thu, 22 May 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5657,43 +3493,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc34bec9-d3f0-4e90-baa3-e145edf92196 + - 0d8a6fec-60f6-4475-b449-850f097354ca status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:29:13 GMT + - Thu, 22 May 2025 15:05:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5701,43 +3525,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9dfbba2-5570-4923-a82d-4e411d56a862 + - 8ad92c78-3600-4887-a0d3-2e942986d33c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:29:28 GMT + - Thu, 22 May 2025 15:05:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5745,43 +3557,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 837012c9-d14b-4d6f-a1a1-853d2bfed434 + - 811ceb8e-7b8c-4810-a70b-1402c322821f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:29:43 GMT + - Thu, 22 May 2025 15:05:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5789,43 +3589,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d115173d-794f-4411-8d60-ad29a06a3b6e + - d541a827-179a-4121-8cc1-73c42e900530 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:29:58 GMT + - Thu, 22 May 2025 15:05:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5833,43 +3621,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 547944c1-67ab-41a4-b6d5-54997462cd9e + - 20a8a008-8ef7-4edb-9331-1e0e4ab23d85 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:30:13 GMT + - Thu, 22 May 2025 15:06:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5877,43 +3653,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0693b075-1efc-451d-9a2e-eef7057ff4b4 + - ffbf341c-1612-4c53-9eb3-20a4f88f0401 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:30:28 GMT + - Thu, 22 May 2025 15:06:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5921,43 +3685,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79a814b6-9bd1-4643-9285-1cc4f24f42a4 + - f0634f80-69d9-4ed7-867a-00ac37aa9d2e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:30:43 GMT + - Thu, 22 May 2025 15:06:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5965,43 +3717,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6cfaabe3-bdc6-4fdd-b833-4dcb78107cf8 + - 2ead9292-1581-4324-a2f5-e3cfcdbc6613 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:30:59 GMT + - Thu, 22 May 2025 15:06:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6009,43 +3749,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe23beaa-dd0c-4116-aa79-fca4cbe8f68d + - d74474eb-96a2-4d1b-adf4-5bd46c28e814 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:31:14 GMT + - Thu, 22 May 2025 15:07:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6053,43 +3781,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2edc706d-052c-4419-9e89-f2c103f2cbbf + - 4b582e9c-3131-4e19-8173-a507ba44a0db status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:31:29 GMT + - Thu, 22 May 2025 15:07:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6097,43 +3813,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1596c0f7-9af4-4260-9051-9bc83f3712c4 + - 3395c02a-d3aa-4939-aeec-c3459626d144 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:31:44 GMT + - Thu, 22 May 2025 15:07:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6141,43 +3845,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04024290-f241-463f-af79-4551ea544513 + - 4bdeef32-3553-427a-8622-e70f1c52a418 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:31:59 GMT + - Thu, 22 May 2025 15:07:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6185,43 +3877,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46ede797-9191-4d48-8bca-f44a69975899 + - 712ad0dc-6707-473d-a589-370e03849133 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:32:14 GMT + - Thu, 22 May 2025 15:08:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6229,43 +3909,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3994f257-de18-4103-b233-5c929fc24412 + - 0142252a-209d-438d-96e8-f8814eea0c42 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:32:29 GMT + - Thu, 22 May 2025 15:08:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6273,43 +3941,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e99b956-641d-4de6-9c46-f28214a6c0bb + - e56b4f4d-9d23-4ab0-aa97-0b5a0d9811ac status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:32:44 GMT + - Thu, 22 May 2025 15:08:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6317,43 +3973,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 810605ca-f668-4f76-a2e4-f23e4ddc556d + - 106d1e37-0f87-4f21-badb-820547410ad8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:32:59 GMT + - Thu, 22 May 2025 15:08:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6361,43 +4005,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d69ee842-01d0-4916-aba7-159d88f10317 + - f57634b6-ddfb-474b-b6ae-2154745079d7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "620" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:14 GMT + - Thu, 22 May 2025 15:09:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6405,43 +4037,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59d09480-77dd-4e09-8d71-8e1ce02df3b6 + - b909dd50-9af7-4772-9a35-bb459860b865 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "version":"7.0.12", - "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", "volume":{"type":"sbs_5k", - "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "version":"7.0.12", - "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", "volume":{"type":"sbs_5k", - "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "613" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:29 GMT + - Thu, 22 May 2025 15:09:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6449,51 +4069,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2165911-2b86-4645-9209-7a9a3efd5fe1 + - 3dc56460-23f3-4729-a002-8b1d73a530d1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "name":"cli-pn-gracious-dubinsky", - "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2025-05-20T08:24:15.144576Z", - "updated_at":"2025-05-20T08:24:15.144576Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "subnets":[{"id":"462ffc2e-0d44-4ed9-8e43-cad864e937ff", "created_at":"2025-05-20T08:24:15.144576Z", - "updated_at":"2025-05-20T08:24:15.144576Z", "subnet":"172.16.32.0/22", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}, - {"id":"caa87efd-3bc6-4e70-a3ca-c6fdf1435f1a", "created_at":"2025-05-20T08:24:15.144576Z", - "updated_at":"2025-05-20T08:24:15.144576Z", "subnet":"fd46:78ab:30b8:e551::/64", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}], "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19", - "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7c8b3dfe-09b3-4808-bcce-207359bb4b5e + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "name":"cli-pn-gracious-dubinsky", - "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2025-05-20T08:24:15.144576Z", - "updated_at":"2025-05-20T08:24:15.144576Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "subnets":[{"id":"462ffc2e-0d44-4ed9-8e43-cad864e937ff", "created_at":"2025-05-20T08:24:15.144576Z", - "updated_at":"2025-05-20T08:24:15.144576Z", "subnet":"172.16.32.0/22", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}, - {"id":"caa87efd-3bc6-4e70-a3ca-c6fdf1435f1a", "created_at":"2025-05-20T08:24:15.144576Z", - "updated_at":"2025-05-20T08:24:15.144576Z", "subnet":"fd46:78ab:30b8:e551::/64", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}], "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19", - "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "1094" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:29 GMT + - Thu, 22 May 2025 15:09:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6501,94 +4101,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 313e94d4-3fd6-4159-be47-1d9fc2397f70 + - 759fe85e-962b-4f2a-a44e-172b0b254885 status: 200 OK code: 200 duration: "" - request: - body: '{"servers": [{"id": "5332d773-09ef-45d2-9f7d-a7df735fcdc0", "name": "cli-srv-hopeful-edison", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-hopeful-edison", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", - "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "93e3db6b-bc72-4d6f-b8c7-3f035f47fc7e", "zone": "fr-par-1"}}, "tags": - [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "ec0685fe-227c-4971-8f31-00f34a970720", "address": "51.158.100.56", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "ba13c869-8d35-4291-9721-babfcd0831ed"}, - "public_ips": [{"id": "ec0685fe-227c-4971-8f31-00f34a970720", "address": "51.158.100.56", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ba13c869-8d35-4291-9721-babfcd0831ed"}], - "mac_address": "de:00:00:af:7b:85", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-05-20T08:24:17.743572+00:00", "modification_date": - "2025-05-20T08:24:17.743572+00:00", "bootscript": null, "security_group": {"id": - "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": - null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": - null, "private_nics": [{"id": "3133b27e-6ed4-4751-b42a-8ec35fbafe82", "private_network_id": - "7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "server_id": "5332d773-09ef-45d2-9f7d-a7df735fcdc0", - "mac_address": "02:00:00:10:b7:63", "state": "available", "creation_date": "2025-05-20T08:24:18.526975+00:00", - "modification_date": "2025-05-20T08:24:18.661914+00:00", "zone": "fr-par-1", - "tags": [], "ipam_ip_ids": ["09f3a590-ac44-44e7-9d31-c7db5da362c0", "89816863-1830-4188-85c1-51c5b6c5f2e5"]}], - "zone": "fr-par-1", "filesystems": [], "end_of_service": false}]}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&page=1&private_network=7c8b3dfe-09b3-4808-bcce-207359bb4b5e + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"servers": [{"id": "5332d773-09ef-45d2-9f7d-a7df735fcdc0", "name": "cli-srv-hopeful-edison", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-hopeful-edison", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", - "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "93e3db6b-bc72-4d6f-b8c7-3f035f47fc7e", "zone": "fr-par-1"}}, "tags": - [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "ec0685fe-227c-4971-8f31-00f34a970720", "address": "51.158.100.56", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "ba13c869-8d35-4291-9721-babfcd0831ed"}, - "public_ips": [{"id": "ec0685fe-227c-4971-8f31-00f34a970720", "address": "51.158.100.56", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ba13c869-8d35-4291-9721-babfcd0831ed"}], - "mac_address": "de:00:00:af:7b:85", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-05-20T08:24:17.743572+00:00", "modification_date": - "2025-05-20T08:24:17.743572+00:00", "bootscript": null, "security_group": {"id": - "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": - null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": - null, "private_nics": [{"id": "3133b27e-6ed4-4751-b42a-8ec35fbafe82", "private_network_id": - "7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "server_id": "5332d773-09ef-45d2-9f7d-a7df735fcdc0", - "mac_address": "02:00:00:10:b7:63", "state": "available", "creation_date": "2025-05-20T08:24:18.526975+00:00", - "modification_date": "2025-05-20T08:24:18.661914+00:00", "zone": "fr-par-1", - "tags": [], "ipam_ip_ids": ["09f3a590-ac44-44e7-9d31-c7db5da362c0", "89816863-1830-4188-85c1-51c5b6c5f2e5"]}], - "zone": "fr-par-1", "filesystems": [], "end_of_service": false}]}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "2704" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:29 GMT - Link: - - ; - rel="last" + - Thu, 22 May 2025 15:09:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6596,36 +4133,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee0d29d6-d173-4592-91fa-7bdacc73d3ac - X-Total-Count: - - "1" + - f21074ca-12d7-4870-9d09-123da8ae42f2 status: 200 OK code: 200 duration: "" - request: - body: '{"servers": []}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?order=creation_date_desc&page=1&private_network=7c8b3dfe-09b3-4808-bcce-207359bb4b5e + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"servers": []}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "15" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:29 GMT - Link: - - ; - rel="last" + - Thu, 22 May 2025 15:10:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6633,36 +4165,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f137f1ef-d6c8-4539-8cf2-6d87262409bb - X-Total-Count: - - "0" + - 4df2ce97-22af-42ab-84e9-19827859d408 status: 200 OK code: 200 duration: "" - request: - body: '{"servers": []}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-3/servers?order=creation_date_desc&page=1&private_network=7c8b3dfe-09b3-4808-bcce-207359bb4b5e + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"servers": []}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "15" + - "603" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:29 GMT - Link: - - ; - rel="last" + - Thu, 22 May 2025 15:10:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6670,33 +4197,159 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ff4e208-1156-4272-bdd8-9252ba354cde - X-Total-Count: - - "0" + - ac522480-613b-4d63-a0df-e0f4ded3ad10 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc + method: GET + response: + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' + headers: + Content-Length: + - "603" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 22 May 2025 15:10:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2eadfd98-8669-4d33-a465-68778d6d365a + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc + method: GET + response: + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' + headers: + Content-Length: + - "603" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 22 May 2025 15:10:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d617a68a-4ff6-48e4-8f42-1179cb5c7309 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc + method: GET + response: + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' + headers: + Content-Length: + - "603" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 22 May 2025 15:11:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2fef21c-2f96-4c8b-81bc-c40e7232769a + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc + method: GET + response: + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' + headers: + Content-Length: + - "596" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 22 May 2025 15:11:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0e172a3e-a269-4fec-8ea7-696123582540 status: 200 OK code: 200 duration: "" - request: - body: '{"server_private_networks":[], "total_count":0}' + body: '{"id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","name":"cli-pn-elastic-jepsen","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-22T14:59:56.811135Z","updated_at":"2025-05-22T14:59:56.811135Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":[{"id":"6f92b461-bd15-4766-a4d0-98431e2070e1","created_at":"2025-05-22T14:59:56.811135Z","updated_at":"2025-05-22T14:59:56.811135Z","subnet":"172.16.40.0/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"id":"8ff8ba73-6cef-4745-9226-effcfed300e6","created_at":"2025-05-22T14:59:56.811135Z","updated_at":"2025-05-22T14:59:56.811135Z","subnet":"fd46:78ab:30b8:e2da::/64","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"vpc_id":"086a5171-f7ab-4667-a231-840a81203f19","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&page=1&private_network_id=7c8b3dfe-09b3-4808-bcce-207359bb4b5e + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4715b0f1-7db9-47e1-a857-c2d25c6734df method: GET response: - body: '{"server_private_networks":[], "total_count":0}' + body: '{"id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","name":"cli-pn-elastic-jepsen","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-22T14:59:56.811135Z","updated_at":"2025-05-22T14:59:56.811135Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":[{"id":"6f92b461-bd15-4766-a4d0-98431e2070e1","created_at":"2025-05-22T14:59:56.811135Z","updated_at":"2025-05-22T14:59:56.811135Z","subnet":"172.16.40.0/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"id":"8ff8ba73-6cef-4745-9226-effcfed300e6","created_at":"2025-05-22T14:59:56.811135Z","updated_at":"2025-05-22T14:59:56.811135Z","subnet":"fd46:78ab:30b8:e2da::/64","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"vpc_id":"086a5171-f7ab-4667-a231-840a81203f19","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' headers: Content-Length: - - "47" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:30 GMT + - Thu, 22 May 2025 15:11:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6704,31 +4357,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f9de4d6-a474-4230-898e-9369c2c8bed6 + - c101a96a-13e4-49ab-8d87-c5b303773dec status: 200 OK code: 200 duration: "" - request: - body: '{"server_private_networks":[], "total_count":0}' + body: '{"server_private_networks":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1/zones/fr-par-2/server-private-networks?order_by=created_at_asc&page=1&private_network_id=7c8b3dfe-09b3-4808-bcce-207359bb4b5e + url: https://api.scaleway.com/baremetal/v1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&page=1&private_network_id=4715b0f1-7db9-47e1-a857-c2d25c6734df method: GET response: - body: '{"server_private_networks":[], "total_count":0}' + body: '{"server_private_networks":[],"total_count":0}' headers: Content-Length: - - "47" + - "46" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:30 GMT + - Thu, 22 May 2025 15:11:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6736,27 +4389,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb9410ac-301a-467a-a724-0e07447a83cc + - 79ebcf9e-67c4-4ddb-91fc-d08d593d158a status: 200 OK code: 200 duration: "" - request: - body: '{"total_count":1, "clusters":[{"region":"fr-par", "id":"4b349ce8-6f5a-4e88-a73e-fd4acb19f8af", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "created_at":"2025-05-19T15:08:05.087030Z", "updated_at":"2025-05-19T15:28:33.285269Z", - "type":"kapsule", "name":"k8s-par-zen-hawking", "description":"", "status":"ready", - "version":"1.32.3", "cni":"cilium", "tags":[], "cluster_url":"https://4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"fddb969f-ef3c-4924-b9df-b22b00fc4690", - "commitment_ends_at":"2025-05-19T15:08:05.087036Z", "acl_available":true, "iam_nodes_group_id":"82ceaf82-a3ef-47b9-9761-d4b646a1a328", - "new_images_enabled":false}]}' + body: '{"total_count":1,"clusters":[{"region":"fr-par","id":"4b349ce8-6f5a-4e88-a73e-fd4acb19f8af","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-19T15:08:05.087030Z","updated_at":"2025-05-19T15:28:33.285269Z","type":"kapsule","name":"k8s-par-zen-hawking","description":"","status":"ready","version":"1.32.3","cni":"cilium","tags":[],"cluster_url":"https://4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":-10,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":600},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fddb969f-ef3c-4924-b9df-b22b00fc4690","commitment_ends_at":"2025-05-19T15:08:05.087036Z","acl_available":true,"iam_nodes_group_id":"82ceaf82-a3ef-47b9-9761-d4b646a1a328","new_images_enabled":false}]}' form: {} headers: User-Agent: @@ -6764,33 +4402,18 @@ interactions: url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?order_by=created_at_asc&page=1&status=unknown method: GET response: - body: '{"total_count":1, "clusters":[{"region":"fr-par", "id":"4b349ce8-6f5a-4e88-a73e-fd4acb19f8af", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "created_at":"2025-05-19T15:08:05.087030Z", "updated_at":"2025-05-19T15:28:33.285269Z", - "type":"kapsule", "name":"k8s-par-zen-hawking", "description":"", "status":"ready", - "version":"1.32.3", "cni":"cilium", "tags":[], "cluster_url":"https://4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"fddb969f-ef3c-4924-b9df-b22b00fc4690", - "commitment_ends_at":"2025-05-19T15:08:05.087036Z", "acl_available":true, "iam_nodes_group_id":"82ceaf82-a3ef-47b9-9761-d4b646a1a328", - "new_images_enabled":false}]}' + body: '{"total_count":1,"clusters":[{"region":"fr-par","id":"4b349ce8-6f5a-4e88-a73e-fd4acb19f8af","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-19T15:08:05.087030Z","updated_at":"2025-05-19T15:28:33.285269Z","type":"kapsule","name":"k8s-par-zen-hawking","description":"","status":"ready","version":"1.32.3","cni":"cilium","tags":[],"cluster_url":"https://4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":-10,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":600},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fddb969f-ef3c-4924-b9df-b22b00fc4690","commitment_ends_at":"2025-05-19T15:08:05.087036Z","acl_available":true,"iam_nodes_group_id":"82ceaf82-a3ef-47b9-9761-d4b646a1a328","new_images_enabled":false}]}' headers: Content-Length: - - "1531" + - "1487" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:30 GMT + - Thu, 22 May 2025 15:11:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6798,55 +4421,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6306608-966d-4ba5-9cc9-6c6bb0696bd5 + - c99f943c-be24-41e2-abd4-a04f28881301 status: 200 OK code: 200 duration: "" - request: - body: '{"lbs":[{"id":"538db5d8-81f8-4759-92df-708a2c89799b", "name":"cli-test", - "description":"cli-test", "status":"ready", "instances":[{"id":"750d054d-a02a-48e2-b227-ff2cc1a8041b", - "status":"ready", "ip_address":"", "created_at":"2025-05-20T08:19:38.798561Z", - "updated_at":"2025-05-20T08:24:26.978655Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", "ip_address":"62.210.111.208", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", "reverse":"62-210-111-208.lb.fr-par.scw.cloud", - "tags":[], "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, - "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719186Z", "updated_at":"2025-05-20T08:24:22.832155Z", - "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}], - "total_count":1}' + body: '{"server_private_networks":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?order_by=created_at_asc + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-3/server-private-networks?order_by=created_at_asc&page=1&private_network_id=4715b0f1-7db9-47e1-a857-c2d25c6734df method: GET response: - body: '{"lbs":[{"id":"538db5d8-81f8-4759-92df-708a2c89799b", "name":"cli-test", - "description":"cli-test", "status":"ready", "instances":[{"id":"750d054d-a02a-48e2-b227-ff2cc1a8041b", - "status":"ready", "ip_address":"", "created_at":"2025-05-20T08:19:38.798561Z", - "updated_at":"2025-05-20T08:24:26.978655Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", "ip_address":"62.210.111.208", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", "reverse":"62-210-111-208.lb.fr-par.scw.cloud", - "tags":[], "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, - "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719186Z", "updated_at":"2025-05-20T08:24:22.832155Z", - "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}], - "total_count":1}' + body: '{"server_private_networks":[],"total_count":0}' headers: Content-Length: - - "1129" + - "46" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:30 GMT + - Thu, 22 May 2025 15:11:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6854,57 +4453,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c55e4c67-f01c-440d-9618-90dd5799cf59 + - 1fe9d21a-6983-474a-b98b-9a76226e024d status: 200 OK code: 200 duration: "" - request: - body: '{"private_network":[{"lb":{"id":"538db5d8-81f8-4759-92df-708a2c89799b", - "name":"cli-test", "description":"cli-test", "status":"ready", "instances":[], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", "ip_address":"62.210.111.208", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", "reverse":"62-210-111-208.lb.fr-par.scw.cloud", - "tags":[], "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, - "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719186Z", "updated_at":"2025-05-20T08:24:22.832155Z", - "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}, - "private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "status":"ready", - "created_at":"2025-05-20T08:24:24.376769Z", "updated_at":"2025-05-20T08:24:27.275804Z", - "dhcp_config":{"ip_id":"9b5e8d76-0dba-4d8e-b73c-6070406daa11"}, "ipam_ids":["9b5e8d76-0dba-4d8e-b73c-6070406daa11"]}], - "total_count":1}' + body: '{"gateways":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/538db5d8-81f8-4759-92df-708a2c89799b/private-networks?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways?order_by=created_at_asc&page=1 method: GET response: - body: '{"private_network":[{"lb":{"id":"538db5d8-81f8-4759-92df-708a2c89799b", - "name":"cli-test", "description":"cli-test", "status":"ready", "instances":[], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", "ip_address":"62.210.111.208", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", "reverse":"62-210-111-208.lb.fr-par.scw.cloud", - "tags":[], "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, - "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719186Z", "updated_at":"2025-05-20T08:24:22.832155Z", - "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}, - "private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "status":"ready", - "created_at":"2025-05-20T08:24:24.376769Z", "updated_at":"2025-05-20T08:24:27.275804Z", - "dhcp_config":{"ip_id":"9b5e8d76-0dba-4d8e-b73c-6070406daa11"}, "ipam_ids":["9b5e8d76-0dba-4d8e-b73c-6070406daa11"]}], - "total_count":1}' + body: '{"gateways":[],"total_count":0}' headers: Content-Length: - - "1226" + - "31" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:30 GMT + - Thu, 22 May 2025 15:11:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6912,31 +4485,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3e4bafa-0773-4277-904a-4f29b635a7a2 + - 477a6f45-963f-4e7d-8970-88705d81bbda status: 200 OK code: 200 duration: "" - request: - body: '{"lbs":[], "total_count":0}' + body: '{"instances":[{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}],"total_count":1}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-2/lbs?order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances?order_by=created_at_asc&page=1 method: GET response: - body: '{"lbs":[], "total_count":0}' + body: '{"instances":[{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}],"total_count":1}' headers: Content-Length: - - "27" + - "628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:30 GMT + - Thu, 22 May 2025 15:11:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6944,59 +4517,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4701a810-02c1-4560-9c5d-7b24b3b0492b + - 5b23a3b6-434e-4dd3-afea-7f35456ff6be status: 200 OK code: 200 duration: "" - request: - body: '{"instances":[{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "status":"ready", "engine":"PostgreSQL-16", "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-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}], "total_count":1}' + body: '{"deployments":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/inference/v1beta1/regions/fr-par/deployments?order_by=created_at_desc&page=1 method: GET response: - body: '{"instances":[{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "status":"ready", "engine":"PostgreSQL-16", "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-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}], "total_count":1}' + body: '{"deployments":[],"total_count":0}' headers: Content-Length: - - "1336" + - "34" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:30 GMT + - Thu, 22 May 2025 15:11:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7004,31 +4549,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aac65af0-8a41-4ac2-8a13-da4655b2db10 + - 6e228c9d-21b2-4eff-807b-0af4e7b1d4d6 status: 200 OK code: 200 duration: "" - request: - body: '{"clusters":[], "total_count":0}' + body: '{"total_count":6,"ips":[{"id":"dee76fae-cf05-4d12-9bb3-2018a0300697","address":"172.16.40.5/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"created_at":"2025-05-22T15:08:09.750706Z","updated_at":"2025-05-22T15:08:09.750706Z","source":{"subnet_id":"6f92b461-bd15-4766-a4d0-98431e2070e1"},"resource":{"type":"mgdb_instance","id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","mac_address":null,"name":"fe898c1a-5b18-4191-b0c2-7595b7de07fc-0"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"0db22feb-c537-4899-b0a3-4799580e3e6a","address":"fd46:78ab:30b8:e2da:c844:9a1:e8c:c2a9/64","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":true,"created_at":"2025-05-22T15:00:53.488885Z","updated_at":"2025-05-22T15:00:53.488885Z","source":{"subnet_id":"8ff8ba73-6cef-4745-9226-effcfed300e6"},"resource":{"type":"instance_private_nic","id":"37000a67-7a16-460c-88cd-0ba04498267a","mac_address":"02:00:00:1E:5D:3A","name":"53cd02f7-fc4b-4239-932e-8d8e9f60ffc8"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"8b430281-103d-4b32-90e1-6919b8aeab31","address":"172.16.40.4/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"created_at":"2025-05-22T15:00:53.051803Z","updated_at":"2025-05-22T15:00:53.051803Z","source":{"subnet_id":"6f92b461-bd15-4766-a4d0-98431e2070e1"},"resource":{"type":"instance_private_nic","id":"37000a67-7a16-460c-88cd-0ba04498267a","mac_address":"02:00:00:1E:5D:3A","name":"53cd02f7-fc4b-4239-932e-8d8e9f60ffc8"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"bbaeb533-56f9-4c69-9318-239e96c56e60","address":"172.16.40.3/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"created_at":"2025-05-22T15:00:08.186018Z","updated_at":"2025-05-22T15:00:09.127360Z","source":{"subnet_id":"6f92b461-bd15-4766-a4d0-98431e2070e1"},"resource":{"type":"lb_server","id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","mac_address":"02:00:00:13:76:16","name":"cli-test"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"f546daa5-be42-4c48-a6c3-54771576a628","address":"fd46:78ab:30b8:e2da:deca:54ba:ba68:5d10/64","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":true,"created_at":"2025-05-22T14:59:59.864201Z","updated_at":"2025-05-22T14:59:59.864201Z","source":{"subnet_id":"8ff8ba73-6cef-4745-9226-effcfed300e6"},"resource":{"type":"instance_private_nic","id":"cad0684d-a799-4299-ab04-03af461ff4e2","mac_address":"02:00:00:1F:88:AA","name":"cli-srv-ecstatic-lamarr"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"7e2baf00-2989-451e-a8c5-aaa1031b8b70","address":"172.16.40.2/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"created_at":"2025-05-22T14:59:59.474209Z","updated_at":"2025-05-22T14:59:59.474209Z","source":{"subnet_id":"6f92b461-bd15-4766-a4d0-98431e2070e1"},"resource":{"type":"instance_private_nic","id":"cad0684d-a799-4299-ab04-03af461ff4e2","mac_address":"02:00:00:1F:88:AA","name":"cli-srv-ecstatic-lamarr"},"tags":[],"reverses":[],"region":"fr-par","zone":null}]}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&private_network_id=4715b0f1-7db9-47e1-a857-c2d25c6734df&resource_type=unknown_type method: GET response: - body: '{"clusters":[], "total_count":0}' + body: '{"total_count":6,"ips":[{"id":"dee76fae-cf05-4d12-9bb3-2018a0300697","address":"172.16.40.5/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"created_at":"2025-05-22T15:08:09.750706Z","updated_at":"2025-05-22T15:08:09.750706Z","source":{"subnet_id":"6f92b461-bd15-4766-a4d0-98431e2070e1"},"resource":{"type":"mgdb_instance","id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","mac_address":null,"name":"fe898c1a-5b18-4191-b0c2-7595b7de07fc-0"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"0db22feb-c537-4899-b0a3-4799580e3e6a","address":"fd46:78ab:30b8:e2da:c844:9a1:e8c:c2a9/64","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":true,"created_at":"2025-05-22T15:00:53.488885Z","updated_at":"2025-05-22T15:00:53.488885Z","source":{"subnet_id":"8ff8ba73-6cef-4745-9226-effcfed300e6"},"resource":{"type":"instance_private_nic","id":"37000a67-7a16-460c-88cd-0ba04498267a","mac_address":"02:00:00:1E:5D:3A","name":"53cd02f7-fc4b-4239-932e-8d8e9f60ffc8"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"8b430281-103d-4b32-90e1-6919b8aeab31","address":"172.16.40.4/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"created_at":"2025-05-22T15:00:53.051803Z","updated_at":"2025-05-22T15:00:53.051803Z","source":{"subnet_id":"6f92b461-bd15-4766-a4d0-98431e2070e1"},"resource":{"type":"instance_private_nic","id":"37000a67-7a16-460c-88cd-0ba04498267a","mac_address":"02:00:00:1E:5D:3A","name":"53cd02f7-fc4b-4239-932e-8d8e9f60ffc8"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"bbaeb533-56f9-4c69-9318-239e96c56e60","address":"172.16.40.3/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"created_at":"2025-05-22T15:00:08.186018Z","updated_at":"2025-05-22T15:00:09.127360Z","source":{"subnet_id":"6f92b461-bd15-4766-a4d0-98431e2070e1"},"resource":{"type":"lb_server","id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","mac_address":"02:00:00:13:76:16","name":"cli-test"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"f546daa5-be42-4c48-a6c3-54771576a628","address":"fd46:78ab:30b8:e2da:deca:54ba:ba68:5d10/64","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":true,"created_at":"2025-05-22T14:59:59.864201Z","updated_at":"2025-05-22T14:59:59.864201Z","source":{"subnet_id":"8ff8ba73-6cef-4745-9226-effcfed300e6"},"resource":{"type":"instance_private_nic","id":"cad0684d-a799-4299-ab04-03af461ff4e2","mac_address":"02:00:00:1F:88:AA","name":"cli-srv-ecstatic-lamarr"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"7e2baf00-2989-451e-a8c5-aaa1031b8b70","address":"172.16.40.2/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"created_at":"2025-05-22T14:59:59.474209Z","updated_at":"2025-05-22T14:59:59.474209Z","source":{"subnet_id":"6f92b461-bd15-4766-a4d0-98431e2070e1"},"resource":{"type":"instance_private_nic","id":"cad0684d-a799-4299-ab04-03af461ff4e2","mac_address":"02:00:00:1F:88:AA","name":"cli-srv-ecstatic-lamarr"},"tags":[],"reverses":[],"region":"fr-par","zone":null}]}' headers: Content-Length: - - "32" + - "3052" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:30 GMT + - Thu, 22 May 2025 15:11:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7036,31 +4581,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea04b7ee-caed-417b-9d08-bb5d7fd79db8 + - 6c09dd3f-7938-437f-8438-efc8833be54b status: 200 OK code: 200 duration: "" - request: - body: '{"clusters":[], "total_count":0}' + body: '{"server_private_networks":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/redis/v1/zones/fr-par-2/clusters?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/baremetal/v1/zones/fr-par-2/server-private-networks?order_by=created_at_asc&page=1&private_network_id=4715b0f1-7db9-47e1-a857-c2d25c6734df method: GET response: - body: '{"clusters":[], "total_count":0}' + body: '{"server_private_networks":[],"total_count":0}' headers: Content-Length: - - "32" + - "46" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:30 GMT + - Thu, 22 May 2025 15:11:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7068,31 +4613,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce3533b8-bb1b-46d7-ad1b-df103eb452a3 + - 113d2d7f-ae4d-464f-9aa2-2c6cc518dd64 status: 200 OK code: 200 duration: "" - request: - body: '{"gateways":[], "total_count":0}' + body: '{"lbs":[{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"ready","instances":[{"id":"e4af0be0-bec5-4481-b8b1-79559b3ff879","status":"ready","ip_address":"","created_at":"2025-05-22T14:55:09.932624Z","updated_at":"2025-05-22T15:00:10.996170Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:06.224900Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}],"total_count":1}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?order_by=created_at_asc&page=1 method: GET response: - body: '{"gateways":[], "total_count":0}' + body: '{"lbs":[{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"ready","instances":[{"id":"e4af0be0-bec5-4481-b8b1-79559b3ff879","status":"ready","ip_address":"","created_at":"2025-05-22T14:55:09.932624Z","updated_at":"2025-05-22T15:00:10.996170Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:06.224900Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "32" + - "1095" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:30 GMT + - Thu, 22 May 2025 15:11:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7100,12 +4645,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00d19060-c101-4950-a30c-d1932c76f1a0 + - 06729488-a53a-4c7d-bc47-3c9832324e1b status: 200 OK code: 200 duration: "" - request: - body: '{"gateways":[], "total_count":0}' + body: '{"gateways":[],"total_count":0}' form: {} headers: User-Agent: @@ -7113,18 +4658,18 @@ interactions: url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-2/gateways?order_by=created_at_asc&page=1 method: GET response: - body: '{"gateways":[], "total_count":0}' + body: '{"gateways":[],"total_count":0}' headers: Content-Length: - - "32" + - "31" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:30 GMT + - Thu, 22 May 2025 15:11:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7132,31 +4677,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5753bfdd-7bde-4c2e-801a-21f185daf177 + - 2565c97e-0e8b-4482-8907-650d5d04f208 status: 200 OK code: 200 duration: "" - request: - body: '{"server_private_networks":[], "total_count":0}' + body: '{"clusters":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-3/server-private-networks?order_by=created_at_asc&page=1&private_network_id=7c8b3dfe-09b3-4808-bcce-207359bb4b5e + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters?order_by=created_at_asc&page=1 method: GET response: - body: '{"server_private_networks":[], "total_count":0}' + body: '{"clusters":[],"total_count":0}' headers: Content-Length: - - "47" + - "31" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:30 GMT + - Thu, 22 May 2025 15:11:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7164,55 +4709,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a2ec9e7-247a-4da7-96f9-f49f6f59fd19 + - a141dd9c-7cc8-4a12-bd44-f6e85473d2e9 status: 200 OK code: 200 duration: "" - request: - body: '{"instances":[{"id":"24a19e18-2889-4643-a48e-ee5fb2ca5fce", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"error", "version":"7.0.12", - "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", "volume":{"type":"sbs_5k", - "size":5000000000}, "endpoints":[{"id":"794aed75-b91c-44d7-b98d-5a2d26a22485", - "ips":[], "dns_records":["24a19e18-2889-4643-a48e-ee5fb2ca5fce.3b677b6f-51d3-4b33-80cd-99f37a4b2219.internal"], - "port":27017, "private_network":{"private_network_id":"3b677b6f-51d3-4b33-80cd-99f37a4b2219"}}], - "created_at":"2025-05-19T20:49:42.936488Z", "region":"fr-par"}, {"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", - "name":"mongo-cli-test", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "status":"ready", "version":"7.0.12", "tags":[], "settings":[], "node_number":1, - "node_type":"mgdb-play2-nano", "volume":{"type":"sbs_5k", "size":5000000000}, - "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}], "total_count":2}' + body: '{"instances":[{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","engine":"PostgreSQL-16","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-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}],"total_count":1}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances?order_by=created_at_asc&page=1 method: GET response: - body: '{"instances":[{"id":"24a19e18-2889-4643-a48e-ee5fb2ca5fce", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"error", "version":"7.0.12", - "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", "volume":{"type":"sbs_5k", - "size":5000000000}, "endpoints":[{"id":"794aed75-b91c-44d7-b98d-5a2d26a22485", - "ips":[], "dns_records":["24a19e18-2889-4643-a48e-ee5fb2ca5fce.3b677b6f-51d3-4b33-80cd-99f37a4b2219.internal"], - "port":27017, "private_network":{"private_network_id":"3b677b6f-51d3-4b33-80cd-99f37a4b2219"}}], - "created_at":"2025-05-19T20:49:42.936488Z", "region":"fr-par"}, {"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", - "name":"mongo-cli-test", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "status":"ready", "version":"7.0.12", "tags":[], "settings":[], "node_number":1, - "node_type":"mgdb-play2-nano", "volume":{"type":"sbs_5k", "size":5000000000}, - "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}], "total_count":2}' + body: '{"instances":[{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","engine":"PostgreSQL-16","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-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}],"total_count":1}' headers: Content-Length: - - "1261" + - "1289" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:30 GMT + - Thu, 22 May 2025 15:11:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7220,99 +4741,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb686ec0-4bb2-478e-9fd6-c741309e76a9 + - bf229bf3-78e2-42c7-aa3c-11299443d6ec status: 200 OK code: 200 duration: "" - request: - body: '{"total_count":6, "ips":[{"id":"d93711fe-1670-49d7-abdd-5a883e655985", - "address":"172.16.32.5/22", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "is_ipv6":false, "created_at":"2025-05-20T08:31:05.104563Z", "updated_at":"2025-05-20T08:31:50.574808Z", - "source":{"subnet_id":"462ffc2e-0d44-4ed9-8e43-cad864e937ff"}, "resource":{"type":"mgdb_instance", - "id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "mac_address":"02:00:00:14:90:B4", - "name":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3-0"}, "tags":[], "reverses":[], - "region":"fr-par", "zone":null}, {"id":"b7d166a1-72a9-49c0-ba18-661ead1410bd", - "address":"fd46:78ab:30b8:e551:33aa:8d21:e968:71d3/64", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "is_ipv6":true, "created_at":"2025-05-20T08:24:52.893588Z", "updated_at":"2025-05-20T08:24:52.893588Z", - "source":{"subnet_id":"caa87efd-3bc6-4e70-a3ca-c6fdf1435f1a"}, "resource":{"type":"instance_private_nic", - "id":"b22d862c-d27c-4e40-8103-bcff142ec9c4", "mac_address":"02:00:00:18:9A:6E", - "name":"765c2437-8e80-46fe-918c-ba731d739ff3"}, "tags":[], "reverses":[], "region":"fr-par", - "zone":null}, {"id":"49b42496-4268-4838-8003-17a0654e89db", "address":"172.16.32.4/22", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "is_ipv6":false, "created_at":"2025-05-20T08:24:52.578023Z", - "updated_at":"2025-05-20T08:24:52.578023Z", "source":{"subnet_id":"462ffc2e-0d44-4ed9-8e43-cad864e937ff"}, - "resource":{"type":"instance_private_nic", "id":"b22d862c-d27c-4e40-8103-bcff142ec9c4", - "mac_address":"02:00:00:18:9A:6E", "name":"765c2437-8e80-46fe-918c-ba731d739ff3"}, - "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"9b5e8d76-0dba-4d8e-b73c-6070406daa11", - "address":"172.16.32.3/22", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "is_ipv6":false, "created_at":"2025-05-20T08:24:24.927718Z", "updated_at":"2025-05-20T08:24:25.628811Z", - "source":{"subnet_id":"462ffc2e-0d44-4ed9-8e43-cad864e937ff"}, "resource":{"type":"lb_server", - "id":"538db5d8-81f8-4759-92df-708a2c89799b", "mac_address":"02:00:00:17:C4:29", - "name":"cli-test"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, - {"id":"89816863-1830-4188-85c1-51c5b6c5f2e5", "address":"fd46:78ab:30b8:e551:c76:b167:16a3:f0fb/64", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "is_ipv6":true, "created_at":"2025-05-20T08:24:19.327989Z", - "updated_at":"2025-05-20T08:24:19.327989Z", "source":{"subnet_id":"caa87efd-3bc6-4e70-a3ca-c6fdf1435f1a"}, - "resource":{"type":"instance_private_nic", "id":"3133b27e-6ed4-4751-b42a-8ec35fbafe82", - "mac_address":"02:00:00:10:B7:63", "name":"cli-srv-hopeful-edison"}, "tags":[], - "reverses":[], "region":"fr-par", "zone":null}, {"id":"09f3a590-ac44-44e7-9d31-c7db5da362c0", - "address":"172.16.32.2/22", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "is_ipv6":false, "created_at":"2025-05-20T08:24:18.924067Z", "updated_at":"2025-05-20T08:24:18.924067Z", - "source":{"subnet_id":"462ffc2e-0d44-4ed9-8e43-cad864e937ff"}, "resource":{"type":"instance_private_nic", - "id":"3133b27e-6ed4-4751-b42a-8ec35fbafe82", "mac_address":"02:00:00:10:B7:63", - "name":"cli-srv-hopeful-edison"}, "tags":[], "reverses":[], "region":"fr-par", - "zone":null}]}' + body: '{"private_network":[{"lb":{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"ready","instances":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:06.224900Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","status":"ready","created_at":"2025-05-22T15:00:07.379529Z","updated_at":"2025-05-22T15:00:11.387763Z","dhcp_config":{"ip_id":"bbaeb533-56f9-4c69-9318-239e96c56e60"},"ipam_ids":["bbaeb533-56f9-4c69-9318-239e96c56e60"]}],"total_count":1}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&private_network_id=7c8b3dfe-09b3-4808-bcce-207359bb4b5e&resource_type=unknown_type + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/687d73cc-64af-4dfe-ac3a-1038d13f2182/private-networks?order_by=created_at_asc&page=1 method: GET response: - body: '{"total_count":6, "ips":[{"id":"d93711fe-1670-49d7-abdd-5a883e655985", - "address":"172.16.32.5/22", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "is_ipv6":false, "created_at":"2025-05-20T08:31:05.104563Z", "updated_at":"2025-05-20T08:31:50.574808Z", - "source":{"subnet_id":"462ffc2e-0d44-4ed9-8e43-cad864e937ff"}, "resource":{"type":"mgdb_instance", - "id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "mac_address":"02:00:00:14:90:B4", - "name":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3-0"}, "tags":[], "reverses":[], - "region":"fr-par", "zone":null}, {"id":"b7d166a1-72a9-49c0-ba18-661ead1410bd", - "address":"fd46:78ab:30b8:e551:33aa:8d21:e968:71d3/64", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "is_ipv6":true, "created_at":"2025-05-20T08:24:52.893588Z", "updated_at":"2025-05-20T08:24:52.893588Z", - "source":{"subnet_id":"caa87efd-3bc6-4e70-a3ca-c6fdf1435f1a"}, "resource":{"type":"instance_private_nic", - "id":"b22d862c-d27c-4e40-8103-bcff142ec9c4", "mac_address":"02:00:00:18:9A:6E", - "name":"765c2437-8e80-46fe-918c-ba731d739ff3"}, "tags":[], "reverses":[], "region":"fr-par", - "zone":null}, {"id":"49b42496-4268-4838-8003-17a0654e89db", "address":"172.16.32.4/22", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "is_ipv6":false, "created_at":"2025-05-20T08:24:52.578023Z", - "updated_at":"2025-05-20T08:24:52.578023Z", "source":{"subnet_id":"462ffc2e-0d44-4ed9-8e43-cad864e937ff"}, - "resource":{"type":"instance_private_nic", "id":"b22d862c-d27c-4e40-8103-bcff142ec9c4", - "mac_address":"02:00:00:18:9A:6E", "name":"765c2437-8e80-46fe-918c-ba731d739ff3"}, - "tags":[], "reverses":[], "region":"fr-par", "zone":null}, {"id":"9b5e8d76-0dba-4d8e-b73c-6070406daa11", - "address":"172.16.32.3/22", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "is_ipv6":false, "created_at":"2025-05-20T08:24:24.927718Z", "updated_at":"2025-05-20T08:24:25.628811Z", - "source":{"subnet_id":"462ffc2e-0d44-4ed9-8e43-cad864e937ff"}, "resource":{"type":"lb_server", - "id":"538db5d8-81f8-4759-92df-708a2c89799b", "mac_address":"02:00:00:17:C4:29", - "name":"cli-test"}, "tags":[], "reverses":[], "region":"fr-par", "zone":null}, - {"id":"89816863-1830-4188-85c1-51c5b6c5f2e5", "address":"fd46:78ab:30b8:e551:c76:b167:16a3:f0fb/64", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "is_ipv6":true, "created_at":"2025-05-20T08:24:19.327989Z", - "updated_at":"2025-05-20T08:24:19.327989Z", "source":{"subnet_id":"caa87efd-3bc6-4e70-a3ca-c6fdf1435f1a"}, - "resource":{"type":"instance_private_nic", "id":"3133b27e-6ed4-4751-b42a-8ec35fbafe82", - "mac_address":"02:00:00:10:B7:63", "name":"cli-srv-hopeful-edison"}, "tags":[], - "reverses":[], "region":"fr-par", "zone":null}, {"id":"09f3a590-ac44-44e7-9d31-c7db5da362c0", - "address":"172.16.32.2/22", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "is_ipv6":false, "created_at":"2025-05-20T08:24:18.924067Z", "updated_at":"2025-05-20T08:24:18.924067Z", - "source":{"subnet_id":"462ffc2e-0d44-4ed9-8e43-cad864e937ff"}, "resource":{"type":"instance_private_nic", - "id":"3133b27e-6ed4-4751-b42a-8ec35fbafe82", "mac_address":"02:00:00:10:B7:63", - "name":"cli-srv-hopeful-edison"}, "tags":[], "reverses":[], "region":"fr-par", - "zone":null}]}' + body: '{"private_network":[{"lb":{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"ready","instances":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:06.224900Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","status":"ready","created_at":"2025-05-22T15:00:07.379529Z","updated_at":"2025-05-22T15:00:11.387763Z","dhcp_config":{"ip_id":"bbaeb533-56f9-4c69-9318-239e96c56e60"},"ipam_ids":["bbaeb533-56f9-4c69-9318-239e96c56e60"]}],"total_count":1}' headers: Content-Length: - - "3156" + - "1192" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:31 GMT + - Thu, 22 May 2025 15:11:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7320,31 +4773,128 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0411460a-d032-47ef-998d-a5108e22e281 + - 0433b6e2-c8a2-44fd-b7fd-03c2f3ec355a status: 200 OK code: 200 duration: "" - request: - body: '{"deployments":[], "total_count":0}' + body: '{"servers": [{"id": "32ac2c08-28d6-4fbc-89ff-b196b3b6cdba", "name": "cli-srv-ecstatic-lamarr", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-ecstatic-lamarr", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", + "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "9f3a6fed-65d4-4c05-bc84-4c8b7095dd7e", "zone": "fr-par-1"}}, "tags": + [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": + {"id": "5af75c04-b46d-40b2-aa99-bf3d03a2dce3", "address": "212.47.244.143", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "b36d0ffe-846e-4216-bfb6-0a16d98ca26c"}, + "public_ips": [{"id": "5af75c04-b46d-40b2-aa99-bf3d03a2dce3", "address": "212.47.244.143", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "b36d0ffe-846e-4216-bfb6-0a16d98ca26c"}], + "mac_address": "de:00:00:b0:1b:11", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-05-22T14:59:58.454323+00:00", "modification_date": + "2025-05-22T14:59:58.454323+00:00", "bootscript": null, "security_group": {"id": + "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": + null, "private_nics": [{"id": "cad0684d-a799-4299-ab04-03af461ff4e2", "private_network_id": + "4715b0f1-7db9-47e1-a857-c2d25c6734df", "server_id": "32ac2c08-28d6-4fbc-89ff-b196b3b6cdba", + "mac_address": "02:00:00:1f:88:aa", "state": "available", "creation_date": "2025-05-22T14:59:59.105706+00:00", + "modification_date": "2025-05-22T14:59:59.234208+00:00", "zone": "fr-par-1", + "tags": [], "ipam_ip_ids": ["7e2baf00-2989-451e-a8c5-aaa1031b8b70", "f546daa5-be42-4c48-a6c3-54771576a628"]}], + "zone": "fr-par-1", "filesystems": [], "end_of_service": false}]}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/inference/v1beta1/regions/fr-par/deployments?order_by=created_at_desc&page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&page=1&private_network=4715b0f1-7db9-47e1-a857-c2d25c6734df + method: GET + response: + body: '{"servers": [{"id": "32ac2c08-28d6-4fbc-89ff-b196b3b6cdba", "name": "cli-srv-ecstatic-lamarr", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-ecstatic-lamarr", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", + "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "9f3a6fed-65d4-4c05-bc84-4c8b7095dd7e", "zone": "fr-par-1"}}, "tags": + [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": + {"id": "5af75c04-b46d-40b2-aa99-bf3d03a2dce3", "address": "212.47.244.143", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "b36d0ffe-846e-4216-bfb6-0a16d98ca26c"}, + "public_ips": [{"id": "5af75c04-b46d-40b2-aa99-bf3d03a2dce3", "address": "212.47.244.143", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "b36d0ffe-846e-4216-bfb6-0a16d98ca26c"}], + "mac_address": "de:00:00:b0:1b:11", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-05-22T14:59:58.454323+00:00", "modification_date": + "2025-05-22T14:59:58.454323+00:00", "bootscript": null, "security_group": {"id": + "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": + null, "private_nics": [{"id": "cad0684d-a799-4299-ab04-03af461ff4e2", "private_network_id": + "4715b0f1-7db9-47e1-a857-c2d25c6734df", "server_id": "32ac2c08-28d6-4fbc-89ff-b196b3b6cdba", + "mac_address": "02:00:00:1f:88:aa", "state": "available", "creation_date": "2025-05-22T14:59:59.105706+00:00", + "modification_date": "2025-05-22T14:59:59.234208+00:00", "zone": "fr-par-1", + "tags": [], "ipam_ip_ids": ["7e2baf00-2989-451e-a8c5-aaa1031b8b70", "f546daa5-be42-4c48-a6c3-54771576a628"]}], + "zone": "fr-par-1", "filesystems": [], "end_of_service": false}]}' + headers: + Content-Length: + - "2708" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 22 May 2025 15:11:27 GMT + Link: + - ; + rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e2c1dab2-b6f3-41fb-99cc-4890e7779eb0 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"clusters":[],"total_count":0}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/redis/v1/zones/fr-par-2/clusters?order_by=created_at_asc&page=1 method: GET response: - body: '{"deployments":[], "total_count":0}' + body: '{"clusters":[],"total_count":0}' headers: Content-Length: - - "35" + - "31" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:31 GMT + - Thu, 22 May 2025 15:11:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7352,7 +4902,113 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdd2d15d-12bf-474c-b0a2-e2c7232437b9 + - 0b840fa3-4fca-49ba-ac09-5feddee1c956 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"lbs":[],"total_count":0}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-2/lbs?order_by=created_at_asc&page=1 + method: GET + response: + body: '{"lbs":[],"total_count":0}' + headers: + Content-Length: + - "26" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 22 May 2025 15:11:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1df7ff60-8fc6-4b23-bab1-c5925a8c7694 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"servers": []}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?order=creation_date_desc&page=1&private_network=4715b0f1-7db9-47e1-a857-c2d25c6734df + method: GET + response: + body: '{"servers": []}' + headers: + Content-Length: + - "15" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 22 May 2025 15:11:27 GMT + Link: + - ; + rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8a5d5330-d23c-44af-9f5a-0d11970e1589 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"servers": []}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-3/servers?order=creation_date_desc&page=1&private_network=4715b0f1-7db9-47e1-a857-c2d25c6734df + method: GET + response: + body: '{"servers": []}' + headers: + Content-Length: + - "15" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 22 May 2025 15:11:28 GMT + Link: + - ; + rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - af305a37-df52-43b0-a4cb-c3a61be6a252 + X-Total-Count: + - "0" status: 200 OK code: 200 duration: "" @@ -7364,7 +5020,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/538db5d8-81f8-4759-92df-708a2c89799b/detach-private-network + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/687d73cc-64af-4dfe-ac3a-1038d13f2182/detach-private-network method: POST response: body: "" @@ -7374,9 +5030,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:31 GMT + - Thu, 22 May 2025 15:11:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7384,53 +5040,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f59b3406-9824-43e0-8e51-4f65974a6141 + - ab931d80-b379-4ee4-9486-d54f92f25cf6 status: 204 No Content code: 204 duration: "" - request: - body: '{"id":"538db5d8-81f8-4759-92df-708a2c89799b", "name":"cli-test", "description":"cli-test", - "status":"ready", "instances":[{"id":"750d054d-a02a-48e2-b227-ff2cc1a8041b", - "status":"ready", "ip_address":"", "created_at":"2025-05-20T08:19:38.798561Z", - "updated_at":"2025-05-20T08:24:26.978655Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", "ip_address":"62.210.111.208", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", "reverse":"62-210-111-208.lb.fr-par.scw.cloud", - "tags":[], "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, - "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719186Z", "updated_at":"2025-05-20T08:24:22.832155Z", - "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + body: '{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"ready","instances":[{"id":"e4af0be0-bec5-4481-b8b1-79559b3ff879","status":"ready","ip_address":"","created_at":"2025-05-22T14:55:09.932624Z","updated_at":"2025-05-22T15:00:10.996170Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:06.224900Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/538db5d8-81f8-4759-92df-708a2c89799b + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/687d73cc-64af-4dfe-ac3a-1038d13f2182 method: GET response: - body: '{"id":"538db5d8-81f8-4759-92df-708a2c89799b", "name":"cli-test", "description":"cli-test", - "status":"ready", "instances":[{"id":"750d054d-a02a-48e2-b227-ff2cc1a8041b", - "status":"ready", "ip_address":"", "created_at":"2025-05-20T08:19:38.798561Z", - "updated_at":"2025-05-20T08:24:26.978655Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"409ba5af-b51f-4603-8b5d-e4eac430f388", "ip_address":"62.210.111.208", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"538db5d8-81f8-4759-92df-708a2c89799b", "reverse":"62-210-111-208.lb.fr-par.scw.cloud", - "tags":[], "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, - "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2025-05-20T08:24:19.719186Z", "updated_at":"2025-05-20T08:24:22.832155Z", - "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + body: '{"id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","name":"cli-test","description":"cli-test","status":"ready","instances":[{"id":"e4af0be0-bec5-4481-b8b1-79559b3ff879","status":"ready","ip_address":"","created_at":"2025-05-22T14:55:09.932624Z","updated_at":"2025-05-22T15:00:10.996170Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"e671cd8c-f8ed-43f4-bbe0-ac03257f5032","ip_address":"62.210.111.140","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"687d73cc-64af-4dfe-ac3a-1038d13f2182","reverse":"62-210-111-140.lb.fr-par.scw.cloud","tags":[],"region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2025-05-22T15:00:00.283833Z","updated_at":"2025-05-22T15:00:06.224900Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1102" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:31 GMT + - Thu, 22 May 2025 15:11:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7438,7 +5072,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be1c663d-2f1c-4307-8725-5021c800bdf9 + - f59e3669-847f-4e43-b464-3979b12002cc status: 200 OK code: 200 duration: "" @@ -7448,7 +5082,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/538db5d8-81f8-4759-92df-708a2c89799b?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/687d73cc-64af-4dfe-ac3a-1038d13f2182?release_ip=false method: DELETE response: body: "" @@ -7458,9 +5092,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:31 GMT + - Thu, 22 May 2025 15:11:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7468,15 +5102,15 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01a67ea1-398b-4fa5-94e1-a58d64d86084 + - 970827d8-ee1d-4942-920f-26d5c50722c4 status: 204 No Content code: 204 duration: "" - request: - body: '{"server": {"id": "5332d773-09ef-45d2-9f7d-a7df735fcdc0", "name": "cli-srv-hopeful-edison", + body: '{"server": {"id": "32ac2c08-28d6-4fbc-89ff-b196b3b6cdba", "name": "cli-srv-ecstatic-lamarr", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-hopeful-edison", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", + "hostname": "cli-srv-ecstatic-lamarr", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": @@ -7484,37 +5118,37 @@ interactions: "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "93e3db6b-bc72-4d6f-b8c7-3f035f47fc7e", "zone": "fr-par-1"}}, "tags": + "id": "9f3a6fed-65d4-4c05-bc84-4c8b7095dd7e", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "ec0685fe-227c-4971-8f31-00f34a970720", "address": "51.158.100.56", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "ba13c869-8d35-4291-9721-babfcd0831ed"}, - "public_ips": [{"id": "ec0685fe-227c-4971-8f31-00f34a970720", "address": "51.158.100.56", + {"id": "5af75c04-b46d-40b2-aa99-bf3d03a2dce3", "address": "212.47.244.143", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ba13c869-8d35-4291-9721-babfcd0831ed"}], - "mac_address": "de:00:00:af:7b:85", "routed_ip_enabled": true, "ipv6": null, + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "b36d0ffe-846e-4216-bfb6-0a16d98ca26c"}, + "public_ips": [{"id": "5af75c04-b46d-40b2-aa99-bf3d03a2dce3", "address": "212.47.244.143", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "b36d0ffe-846e-4216-bfb6-0a16d98ca26c"}], + "mac_address": "de:00:00:b0:1b:11", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-05-20T08:24:17.743572+00:00", "modification_date": - "2025-05-20T08:24:17.743572+00:00", "bootscript": null, "security_group": {"id": + null, "creation_date": "2025-05-22T14:59:58.454323+00:00", "modification_date": + "2025-05-22T14:59:58.454323+00:00", "bootscript": null, "security_group": {"id": "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": - null, "private_nics": [{"id": "3133b27e-6ed4-4751-b42a-8ec35fbafe82", "private_network_id": - "7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "server_id": "5332d773-09ef-45d2-9f7d-a7df735fcdc0", - "mac_address": "02:00:00:10:b7:63", "state": "available", "creation_date": "2025-05-20T08:24:18.526975+00:00", - "modification_date": "2025-05-20T08:24:18.661914+00:00", "zone": "fr-par-1", - "tags": [], "ipam_ip_ids": ["09f3a590-ac44-44e7-9d31-c7db5da362c0", "89816863-1830-4188-85c1-51c5b6c5f2e5"]}], + null, "private_nics": [{"id": "cad0684d-a799-4299-ab04-03af461ff4e2", "private_network_id": + "4715b0f1-7db9-47e1-a857-c2d25c6734df", "server_id": "32ac2c08-28d6-4fbc-89ff-b196b3b6cdba", + "mac_address": "02:00:00:1f:88:aa", "state": "available", "creation_date": "2025-05-22T14:59:59.105706+00:00", + "modification_date": "2025-05-22T14:59:59.234208+00:00", "zone": "fr-par-1", + "tags": [], "ipam_ip_ids": ["7e2baf00-2989-451e-a8c5-aaa1031b8b70", "f546daa5-be42-4c48-a6c3-54771576a628"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5332d773-09ef-45d2-9f7d-a7df735fcdc0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/32ac2c08-28d6-4fbc-89ff-b196b3b6cdba method: GET response: - body: '{"server": {"id": "5332d773-09ef-45d2-9f7d-a7df735fcdc0", "name": "cli-srv-hopeful-edison", + body: '{"server": {"id": "32ac2c08-28d6-4fbc-89ff-b196b3b6cdba", "name": "cli-srv-ecstatic-lamarr", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-hopeful-edison", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", + "hostname": "cli-srv-ecstatic-lamarr", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": @@ -7522,37 +5156,37 @@ interactions: "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "93e3db6b-bc72-4d6f-b8c7-3f035f47fc7e", "zone": "fr-par-1"}}, "tags": + "id": "9f3a6fed-65d4-4c05-bc84-4c8b7095dd7e", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "ec0685fe-227c-4971-8f31-00f34a970720", "address": "51.158.100.56", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "ba13c869-8d35-4291-9721-babfcd0831ed"}, - "public_ips": [{"id": "ec0685fe-227c-4971-8f31-00f34a970720", "address": "51.158.100.56", + {"id": "5af75c04-b46d-40b2-aa99-bf3d03a2dce3", "address": "212.47.244.143", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "b36d0ffe-846e-4216-bfb6-0a16d98ca26c"}, + "public_ips": [{"id": "5af75c04-b46d-40b2-aa99-bf3d03a2dce3", "address": "212.47.244.143", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "ba13c869-8d35-4291-9721-babfcd0831ed"}], - "mac_address": "de:00:00:af:7b:85", "routed_ip_enabled": true, "ipv6": null, + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "b36d0ffe-846e-4216-bfb6-0a16d98ca26c"}], + "mac_address": "de:00:00:b0:1b:11", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-05-20T08:24:17.743572+00:00", "modification_date": - "2025-05-20T08:24:17.743572+00:00", "bootscript": null, "security_group": {"id": + null, "creation_date": "2025-05-22T14:59:58.454323+00:00", "modification_date": + "2025-05-22T14:59:58.454323+00:00", "bootscript": null, "security_group": {"id": "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": - null, "private_nics": [{"id": "3133b27e-6ed4-4751-b42a-8ec35fbafe82", "private_network_id": - "7c8b3dfe-09b3-4808-bcce-207359bb4b5e", "server_id": "5332d773-09ef-45d2-9f7d-a7df735fcdc0", - "mac_address": "02:00:00:10:b7:63", "state": "available", "creation_date": "2025-05-20T08:24:18.526975+00:00", - "modification_date": "2025-05-20T08:24:18.661914+00:00", "zone": "fr-par-1", - "tags": [], "ipam_ip_ids": ["09f3a590-ac44-44e7-9d31-c7db5da362c0", "89816863-1830-4188-85c1-51c5b6c5f2e5"]}], + null, "private_nics": [{"id": "cad0684d-a799-4299-ab04-03af461ff4e2", "private_network_id": + "4715b0f1-7db9-47e1-a857-c2d25c6734df", "server_id": "32ac2c08-28d6-4fbc-89ff-b196b3b6cdba", + "mac_address": "02:00:00:1f:88:aa", "state": "available", "creation_date": "2025-05-22T14:59:59.105706+00:00", + "modification_date": "2025-05-22T14:59:59.234208+00:00", "zone": "fr-par-1", + "tags": [], "ipam_ip_ids": ["7e2baf00-2989-451e-a8c5-aaa1031b8b70", "f546daa5-be42-4c48-a6c3-54771576a628"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2701" + - "2705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:31 GMT + - Thu, 22 May 2025 15:11:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7560,7 +5194,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b19ef38-bc79-4a8f-b2f2-57bde53e40c8 + - 14b0f45b-9838-440a-a754-b4110f7f85ab status: 200 OK code: 200 duration: "" @@ -7570,7 +5204,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5332d773-09ef-45d2-9f7d-a7df735fcdc0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/32ac2c08-28d6-4fbc-89ff-b196b3b6cdba method: DELETE response: body: "" @@ -7580,9 +5214,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:32 GMT + - Thu, 22 May 2025 15:11:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7590,45 +5224,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f09b3fed-e852-43d7-9f50-d112d80f4aac + - 5192ec64-8a82-4e63-8fd1-c87e1d4a21f7 status: 204 No Content code: 204 duration: "" - request: - body: '{"id":"93e3db6b-bc72-4d6f-b8c7-3f035f47fc7e", "name":"Ubuntu 20.04 Focal - Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "created_at":"2025-05-20T08:24:17.855296Z", "updated_at":"2025-05-20T08:24:17.855296Z", - "references":[{"id":"b6dcc898-45e8-456e-bb6b-617435d44e93", "product_resource_type":"instance_server", - "product_resource_id":"5332d773-09ef-45d2-9f7d-a7df735fcdc0", "created_at":"2025-05-20T08:24:17.855296Z", - "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444", - "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, - "zone":"fr-par-1"}' + body: '{"id":"9f3a6fed-65d4-4c05-bc84-4c8b7095dd7e","name":"Ubuntu 20.04 Focal + Fossa_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-22T14:59:58.550081Z","updated_at":"2025-05-22T14:59:58.550081Z","references":[{"id":"569046a1-cea5-472d-964b-5fd4c4d1ba60","product_resource_type":"instance_server","product_resource_id":"32ac2c08-28d6-4fbc-89ff-b196b3b6cdba","created_at":"2025-05-22T14:59:58.550081Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/93e3db6b-bc72-4d6f-b8c7-3f035f47fc7e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f3a6fed-65d4-4c05-bc84-4c8b7095dd7e method: GET response: - body: '{"id":"93e3db6b-bc72-4d6f-b8c7-3f035f47fc7e", "name":"Ubuntu 20.04 Focal - Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "created_at":"2025-05-20T08:24:17.855296Z", "updated_at":"2025-05-20T08:24:17.855296Z", - "references":[{"id":"b6dcc898-45e8-456e-bb6b-617435d44e93", "product_resource_type":"instance_server", - "product_resource_id":"5332d773-09ef-45d2-9f7d-a7df735fcdc0", "created_at":"2025-05-20T08:24:17.855296Z", - "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444", - "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, - "zone":"fr-par-1"}' + body: '{"id":"9f3a6fed-65d4-4c05-bc84-4c8b7095dd7e","name":"Ubuntu 20.04 Focal + Fossa_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-22T14:59:58.550081Z","updated_at":"2025-05-22T14:59:58.550081Z","references":[{"id":"569046a1-cea5-472d-964b-5fd4c4d1ba60","product_resource_type":"instance_server","product_resource_id":"32ac2c08-28d6-4fbc-89ff-b196b3b6cdba","created_at":"2025-05-22T14:59:58.550081Z","type":"exclusive","status":"attached"}],"parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","status":"in_use","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":null,"zone":"fr-par-1"}' headers: Content-Length: - - "701" + - "682" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:32 GMT + - Thu, 22 May 2025 15:11:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7636,41 +5258,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f5ac8b5-5128-4390-a0b5-47374f5eae8d + - c691d88b-5d31-460b-a03c-a59050dd7d37 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"93e3db6b-bc72-4d6f-b8c7-3f035f47fc7e", "name":"Ubuntu 20.04 Focal - Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "created_at":"2025-05-20T08:24:17.855296Z", "updated_at":"2025-05-20T08:33:32.396307Z", - "references":[], "parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444", - "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, - "last_detached_at":"2025-05-20T08:33:32.396307Z", "zone":"fr-par-1"}' + body: '{"id":"9f3a6fed-65d4-4c05-bc84-4c8b7095dd7e","name":"Ubuntu 20.04 Focal + Fossa_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-22T14:59:58.550081Z","updated_at":"2025-05-22T15:11:29.578797Z","references":[],"parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-05-22T15:11:29.578797Z","zone":"fr-par-1"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/93e3db6b-bc72-4d6f-b8c7-3f035f47fc7e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f3a6fed-65d4-4c05-bc84-4c8b7095dd7e method: GET response: - body: '{"id":"93e3db6b-bc72-4d6f-b8c7-3f035f47fc7e", "name":"Ubuntu 20.04 Focal - Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "created_at":"2025-05-20T08:24:17.855296Z", "updated_at":"2025-05-20T08:33:32.396307Z", - "references":[], "parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444", - "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, - "last_detached_at":"2025-05-20T08:33:32.396307Z", "zone":"fr-par-1"}' + body: '{"id":"9f3a6fed-65d4-4c05-bc84-4c8b7095dd7e","name":"Ubuntu 20.04 Focal + Fossa_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-22T14:59:58.550081Z","updated_at":"2025-05-22T15:11:29.578797Z","references":[],"parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-05-22T15:11:29.578797Z","zone":"fr-par-1"}' headers: Content-Length: - - "494" + - "480" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:37 GMT + - Thu, 22 May 2025 15:11:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7678,7 +5292,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a94fed6-914f-48cb-9730-488c7e6b2141 + - 7dcd671b-027e-4be0-8c6d-0d43b8ef2927 status: 200 OK code: 200 duration: "" @@ -7688,7 +5302,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/93e3db6b-bc72-4d6f-b8c7-3f035f47fc7e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f3a6fed-65d4-4c05-bc84-4c8b7095dd7e method: DELETE response: body: "" @@ -7698,9 +5312,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:37 GMT + - Thu, 22 May 2025 15:11:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7708,22 +5322,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c471279-2887-44cc-9c8b-9c396832448c + - e459ae1a-5a35-4562-9511-10a38bec830a status: 204 No Content code: 204 duration: "" - request: body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_server", - "resource_id": "5332d773-09ef-45d2-9f7d-a7df735fcdc0"}' + "resource_id": "32ac2c08-28d6-4fbc-89ff-b196b3b6cdba"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5332d773-09ef-45d2-9f7d-a7df735fcdc0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/32ac2c08-28d6-4fbc-89ff-b196b3b6cdba method: GET response: body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_server", - "resource_id": "5332d773-09ef-45d2-9f7d-a7df735fcdc0"}' + "resource_id": "32ac2c08-28d6-4fbc-89ff-b196b3b6cdba"}' headers: Content-Length: - "143" @@ -7732,9 +5346,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:37 GMT + - Thu, 22 May 2025 15:11:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7742,7 +5356,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 412d7a38-a666-455f-a8b3-0ea5aef352ff + - 6f7ca126-00a7-4de9-aa47-95254c4ee557 status: 404 Not Found code: 404 duration: "" @@ -7752,7 +5366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/316fad5b-6234-4abd-8b4f-daa81b2b6438 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/a06df612-6a9f-4d27-9ac0-351afcbb5700 method: DELETE response: body: "" @@ -7762,9 +5376,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:37 GMT + - Thu, 22 May 2025 15:11:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7772,59 +5386,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 277e68e8-ca9f-4415-9123-07a9591e6455 + - d109d15b-f3df-41b2-9cbb-eeaf12fcd1b5 status: 204 No Content code: 204 duration: "" - request: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"configuring", - "engine":"PostgreSQL-16", "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-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"configuring","engine":"PostgreSQL-16","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-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0bca8a1-3d8d-4e68-8583-a466b165d225 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/584f11f5-73e1-4699-a609-3fc0e2ae8d42 method: GET response: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"configuring", - "engine":"PostgreSQL-16", "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-05-21T08:24:25.064167Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, "name":null, - "id":"316fad5b-6234-4abd-8b4f-daa81b2b6438", "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "service_ip":"192.168.0.1/24", "zone":"fr-par-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-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"configuring","engine":"PostgreSQL-16","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-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"a06df612-6a9f-4d27-9ac0-351afcbb5700","private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df","service_ip":"192.168.0.1/24","zone":"fr-par-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-05-22T15:00:08.308180Z","region":"fr-par"}' headers: Content-Length: - - "1309" + - "1263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:37 GMT + - Thu, 22 May 2025 15:11:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7832,53 +5418,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0978261d-3ec2-488a-8a5b-aeb8c32e253b + - 5c7d29e7-b702-49c4-9b33-63507fd427e0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "engine":"PostgreSQL-16", - "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-05-21T08:24:25.064167Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2025-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","engine":"PostgreSQL-16","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-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"encryption":{"enabled":false},"created_at":"2025-05-22T15:00:08.308180Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0bca8a1-3d8d-4e68-8583-a466b165d225 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/584f11f5-73e1-4699-a609-3fc0e2ae8d42 method: GET response: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "engine":"PostgreSQL-16", - "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-05-21T08:24:25.064167Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2025-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","engine":"PostgreSQL-16","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-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"encryption":{"enabled":false},"created_at":"2025-05-22T15:00:08.308180Z","region":"fr-par"}' headers: Content-Length: - - "1051" + - "1012" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:53 GMT + - Thu, 22 May 2025 15:11:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7886,53 +5450,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91c38867-bec2-48c2-bbd8-2eed72f800fa + - a1835687-dc3a-4705-84e3-f41c66f8a64c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"deleting", "engine":"PostgreSQL-16", - "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-05-21T08:24:25.064167Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2025-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","engine":"PostgreSQL-16","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-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"encryption":{"enabled":false},"created_at":"2025-05-22T15:00:08.308180Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0bca8a1-3d8d-4e68-8583-a466b165d225 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/584f11f5-73e1-4699-a609-3fc0e2ae8d42 method: DELETE response: - body: '{"id":"c0bca8a1-3d8d-4e68-8583-a466b165d225", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"deleting", "engine":"PostgreSQL-16", - "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-05-21T08:24:25.064167Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2025-05-20T08:24:25.064167Z", - "region":"fr-par"}' + body: '{"id":"584f11f5-73e1-4699-a609-3fc0e2ae8d42","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","engine":"PostgreSQL-16","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-05-23T15:00:08.308180Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"encryption":{"enabled":false},"created_at":"2025-05-22T15:00:08.308180Z","region":"fr-par"}' headers: Content-Length: - - "1054" + - "1015" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:53 GMT + - Thu, 22 May 2025 15:11:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7940,7 +5482,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 270fa146-3b56-4c60-a978-1632c9710320 + - fb498723-0b95-445f-ab7b-e624a299d649 status: 200 OK code: 200 duration: "" @@ -7950,7 +5492,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/endpoints/7898e0fc-c606-4442-a726-524fb8d3ae00 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/endpoints/2b95ba69-cdb1-4b3e-a1a6-db215c596304 method: DELETE response: body: "" @@ -7960,9 +5502,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:53 GMT + - Thu, 22 May 2025 15:11:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7970,43 +5512,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b6753c7-6b1c-4eee-8486-dec37deb47fb + - e59e354c-7ad0-4a6f-bbd5-4e0493ca419b status: 204 No Content code: 204 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"configuring", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"configuring","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"configuring", - "version":"7.0.12", "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", - "volume":{"type":"sbs_5k", "size":5000000000}, "endpoints":[{"id":"7898e0fc-c606-4442-a726-524fb8d3ae00", - "ips":[], "dns_records":["4e4e8d03-a645-4ad0-86cf-8bfbbb208be3.7c8b3dfe-09b3-4808-bcce-207359bb4b5e.internal"], - "port":27017, "private_network":{"private_network_id":"7c8b3dfe-09b3-4808-bcce-207359bb4b5e"}}], - "created_at":"2025-05-20T08:26:57.518441Z", "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"configuring","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[{"id":"2b95ba69-cdb1-4b3e-a1a6-db215c596304","ips":[],"dns_records":["fe898c1a-5b18-4191-b0c2-7595b7de07fc.4715b0f1-7db9-47e1-a857-c2d25c6734df.internal"],"port":27017,"private_network":{"private_network_id":"4715b0f1-7db9-47e1-a857-c2d25c6734df"}}],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "619" + - "602" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:33:53 GMT + - Thu, 22 May 2025 15:11:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8014,39 +5544,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f16a95b0-0a3b-42fa-ac7b-f1ae4af70bf8 + - 421f7338-bba7-4a4b-9c81-58c50413e933 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "version":"7.0.12", - "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", "volume":{"type":"sbs_5k", - "size":5000000000}, "endpoints":[], "created_at":"2025-05-20T08:26:57.518441Z", - "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: GET response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "version":"7.0.12", - "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", "volume":{"type":"sbs_5k", - "size":5000000000}, "endpoints":[], "created_at":"2025-05-20T08:26:57.518441Z", - "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "361" + - "348" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:34:08 GMT + - Thu, 22 May 2025 15:12:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8054,39 +5576,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dcfa0f51-db0c-49d0-a9b8-045524a829c4 + - 8d1e30bf-1920-4304-87ef-84796bf74857 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"deleting", "version":"7.0.12", - "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", "volume":{"type":"sbs_5k", - "size":5000000000}, "endpoints":[], "created_at":"2025-05-20T08:26:57.518441Z", - "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fe898c1a-5b18-4191-b0c2-7595b7de07fc method: DELETE response: - body: '{"id":"4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"deleting", "version":"7.0.12", - "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", "volume":{"type":"sbs_5k", - "size":5000000000}, "endpoints":[], "created_at":"2025-05-20T08:26:57.518441Z", - "region":"fr-par"}' + body: '{"id":"fe898c1a-5b18-4191-b0c2-7595b7de07fc","name":"mongo-cli-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","version":"7.0.12","tags":[],"settings":[],"node_number":1,"node_type":"mgdb-play2-nano","volume":{"type":"sbs_5k","size":5000000000},"endpoints":[],"created_at":"2025-05-22T15:02:55.560737Z","region":"fr-par"}' headers: Content-Length: - - "364" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:34:08 GMT + - Thu, 22 May 2025 15:12:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8094,7 +5608,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3929836-5831-4ef7-b394-e379a5bd6fed + - d5dd6e35-ae43-41e6-8297-4293819683fa status: 200 OK code: 200 duration: "" @@ -8104,7 +5618,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7c8b3dfe-09b3-4808-bcce-207359bb4b5e + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4715b0f1-7db9-47e1-a857-c2d25c6734df method: DELETE response: body: "" @@ -8114,9 +5628,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:34:09 GMT + - Thu, 22 May 2025 15:12:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8124,7 +5638,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6feb6866-93c0-4be9-b82c-c5e0feb1d083 + - 37d5d19f-8c6d-49c0-af43-b2030ab14b5f status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/vpc/v2/testdata/test-get-private-network-multiple.golden b/internal/namespaces/vpc/v2/testdata/test-get-private-network-multiple.golden index 5d0668a48f..07db65dc3a 100644 --- a/internal/namespaces/vpc/v2/testdata/test-get-private-network-multiple.golden +++ b/internal/namespaces/vpc/v2/testdata/test-get-private-network-multiple.golden @@ -1,7 +1,7 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID 7c8b3dfe-09b3-4808-bcce-207359bb4b5e -Name cli-pn-gracious-dubinsky +ID 4715b0f1-7db9-47e1-a857-c2d25c6734df +Name cli-pn-elastic-jepsen OrganizationID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 ProjectID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 Region fr-par @@ -11,39 +11,39 @@ VpcID 086a5171-f7ab-4667-a231-840a81203f19 DHCPEnabled true DefaultRoutePropagationEnabled false +Subnets: +ID CREATED AT UPDATED AT SUBNET PROJECT ID PRIVATE NETWORK ID VPC ID +6f92b461-bd15-4766-a4d0-98431e2070e1 few seconds ago few seconds ago 172.16.40.0/22 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 4715b0f1-7db9-47e1-a857-c2d25c6734df 086a5171-f7ab-4667-a231-840a81203f19 +8ff8ba73-6cef-4745-9226-effcfed300e6 few seconds ago few seconds ago fd46:78ab:30b8:e2da::/64 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 4715b0f1-7db9-47e1-a857-c2d25c6734df 086a5171-f7ab-4667-a231-840a81203f19 + Instance Servers: -ID NAME STATE NIC ID MAC ADDRESS -5332d773-09ef-45d2-9f7d-a7df735fcdc0 cli-srv-hopeful-edison archived 3133b27e-6ed4-4751-b42a-8ec35fbafe82 02:00:00:10:b7:63 +ID NAME STATE NIC ID MAC ADDRESS +32ac2c08-28d6-4fbc-89ff-b196b3b6cdba cli-srv-ecstatic-lamarr archived cad0684d-a799-4299-ab04-03af461ff4e2 02:00:00:1f:88:aa Load-Balancers: ID NAME STATE -538db5d8-81f8-4759-92df-708a2c89799b cli-test ready +687d73cc-64af-4dfe-ac3a-1038d13f2182 cli-test ready Rdb Instances: ID NAME STATE ENDPOINT ID -c0bca8a1-3d8d-4e68-8583-a466b165d225 cli-test ready 316fad5b-6234-4abd-8b4f-daa81b2b6438 - -Subnets: -ID CREATED AT UPDATED AT SUBNET PROJECT ID PRIVATE NETWORK ID VPC ID -462ffc2e-0d44-4ed9-8e43-cad864e937ff few seconds ago few seconds ago 172.16.32.0/22 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 7c8b3dfe-09b3-4808-bcce-207359bb4b5e 086a5171-f7ab-4667-a231-840a81203f19 -caa87efd-3bc6-4e70-a3ca-c6fdf1435f1a few seconds ago few seconds ago fd46:78ab:30b8:e551::/64 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 7c8b3dfe-09b3-4808-bcce-207359bb4b5e 086a5171-f7ab-4667-a231-840a81203f19 +584f11f5-73e1-4699-a609-3fc0e2ae8d42 cli-test ready a06df612-6a9f-4d27-9ac0-351afcbb5700 MongoDB Instances: ID NAME STATE ENDPOINT ID -4e4e8d03-a645-4ad0-86cf-8bfbbb208be3 mongo-cli-test ready 7898e0fc-c606-4442-a726-524fb8d3ae00 +fe898c1a-5b18-4191-b0c2-7595b7de07fc mongo-cli-test ready 2b95ba69-cdb1-4b3e-a1a6-db215c596304 IPAM IPs: ID ADDRESS -d93711fe-1670-49d7-abdd-5a883e655985 172.16.32.5/22 -b7d166a1-72a9-49c0-ba18-661ead1410bd fd46:78ab:30b8:e551:33aa:8d21:e968:71d3/64 -49b42496-4268-4838-8003-17a0654e89db 172.16.32.4/22 -9b5e8d76-0dba-4d8e-b73c-6070406daa11 172.16.32.3/22 -89816863-1830-4188-85c1-51c5b6c5f2e5 fd46:78ab:30b8:e551:c76:b167:16a3:f0fb/64 -09f3a590-ac44-44e7-9d31-c7db5da362c0 172.16.32.2/22 +dee76fae-cf05-4d12-9bb3-2018a0300697 172.16.40.5/22 +0db22feb-c537-4899-b0a3-4799580e3e6a fd46:78ab:30b8:e2da:c844:9a1:e8c:c2a9/64 +8b430281-103d-4b32-90e1-6919b8aeab31 172.16.40.4/22 +bbaeb533-56f9-4c69-9318-239e96c56e60 172.16.40.3/22 +f546daa5-be42-4c48-a6c3-54771576a628 fd46:78ab:30b8:e2da:deca:54ba:ba68:5d10/64 +7e2baf00-2989-451e-a8c5-aaa1031b8b70 172.16.40.2/22 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "id": "7c8b3dfe-09b3-4808-bcce-207359bb4b5e", - "name": "cli-pn-gracious-dubinsky", + "id": "4715b0f1-7db9-47e1-a857-c2d25c6734df", + "name": "cli-pn-elastic-jepsen", "organization_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "region": "fr-par", @@ -52,21 +52,21 @@ b7d166a1-72a9-49c0-ba18-661ead1410bd fd46:78ab:30b8:e551:33aa:8d21:e968:71d3/64 "updated_at": "1970-01-01T00:00:00.0Z", "subnets": [ { - "id": "462ffc2e-0d44-4ed9-8e43-cad864e937ff", + "id": "6f92b461-bd15-4766-a4d0-98431e2070e1", "created_at": "1970-01-01T00:00:00.0Z", "updated_at": "1970-01-01T00:00:00.0Z", - "subnet": "172.16.32.0/22", + "subnet": "172.16.40.0/22", "project_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "private_network_id": "7c8b3dfe-09b3-4808-bcce-207359bb4b5e", + "private_network_id": "4715b0f1-7db9-47e1-a857-c2d25c6734df", "vpc_id": "086a5171-f7ab-4667-a231-840a81203f19" }, { - "id": "caa87efd-3bc6-4e70-a3ca-c6fdf1435f1a", + "id": "8ff8ba73-6cef-4745-9226-effcfed300e6", "created_at": "1970-01-01T00:00:00.0Z", "updated_at": "1970-01-01T00:00:00.0Z", - "subnet": "fd46:78ab:30b8:e551::/64", + "subnet": "fd46:78ab:30b8:e2da::/64", "project_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "private_network_id": "7c8b3dfe-09b3-4808-bcce-207359bb4b5e", + "private_network_id": "4715b0f1-7db9-47e1-a857-c2d25c6734df", "vpc_id": "086a5171-f7ab-4667-a231-840a81203f19" } ], @@ -75,60 +75,60 @@ b7d166a1-72a9-49c0-ba18-661ead1410bd fd46:78ab:30b8:e551:33aa:8d21:e968:71d3/64 "default_route_propagation_enabled": false, "instance_servers": [ { - "id": "5332d773-09ef-45d2-9f7d-a7df735fcdc0", - "name": "cli-srv-hopeful-edison", + "id": "32ac2c08-28d6-4fbc-89ff-b196b3b6cdba", + "name": "cli-srv-ecstatic-lamarr", "state": "stopped", - "nic_id": "3133b27e-6ed4-4751-b42a-8ec35fbafe82", - "mac": "02:00:00:10:b7:63" + "nic_id": "cad0684d-a799-4299-ab04-03af461ff4e2", + "mac": "02:00:00:1f:88:aa" } ], "lbs": [ { - "id": "538db5d8-81f8-4759-92df-708a2c89799b", + "id": "687d73cc-64af-4dfe-ac3a-1038d13f2182", "name": "cli-test", "state": "ready" } ], "rdb_instances": [ { - "id": "c0bca8a1-3d8d-4e68-8583-a466b165d225", + "id": "584f11f5-73e1-4699-a609-3fc0e2ae8d42", "name": "cli-test", "state": "ready", - "endpoint_id": "316fad5b-6234-4abd-8b4f-daa81b2b6438" + "endpoint_id": "a06df612-6a9f-4d27-9ac0-351afcbb5700" } ], "mongodb_instances": [ { - "id": "4e4e8d03-a645-4ad0-86cf-8bfbbb208be3", + "id": "fe898c1a-5b18-4191-b0c2-7595b7de07fc", "name": "mongo-cli-test", "state": "ready", - "endpoint_id": "7898e0fc-c606-4442-a726-524fb8d3ae00" + "endpoint_id": "2b95ba69-cdb1-4b3e-a1a6-db215c596304" } ], "ipam_ips": [ { - "id": "d93711fe-1670-49d7-abdd-5a883e655985", - "address": "172.16.32.5/22" + "id": "dee76fae-cf05-4d12-9bb3-2018a0300697", + "address": "172.16.40.5/22" }, { - "id": "b7d166a1-72a9-49c0-ba18-661ead1410bd", - "address": "fd46:78ab:30b8:e551:33aa:8d21:e968:71d3/64" + "id": "0db22feb-c537-4899-b0a3-4799580e3e6a", + "address": "fd46:78ab:30b8:e2da:c844:9a1:e8c:c2a9/64" }, { - "id": "49b42496-4268-4838-8003-17a0654e89db", - "address": "172.16.32.4/22" + "id": "8b430281-103d-4b32-90e1-6919b8aeab31", + "address": "172.16.40.4/22" }, { - "id": "9b5e8d76-0dba-4d8e-b73c-6070406daa11", - "address": "172.16.32.3/22" + "id": "bbaeb533-56f9-4c69-9318-239e96c56e60", + "address": "172.16.40.3/22" }, { - "id": "89816863-1830-4188-85c1-51c5b6c5f2e5", - "address": "fd46:78ab:30b8:e551:c76:b167:16a3:f0fb/64" + "id": "f546daa5-be42-4c48-a6c3-54771576a628", + "address": "fd46:78ab:30b8:e2da:deca:54ba:ba68:5d10/64" }, { - "id": "09f3a590-ac44-44e7-9d31-c7db5da362c0", - "address": "172.16.32.2/22" + "id": "7e2baf00-2989-451e-a8c5-aaa1031b8b70", + "address": "172.16.40.2/22" } ] } diff --git a/internal/namespaces/vpc/v2/testdata/test-get-private-network-simple.cassette.yaml b/internal/namespaces/vpc/v2/testdata/test-get-private-network-simple.cassette.yaml index 7026d4d255..ab264a88db 100644 --- a/internal/namespaces/vpc/v2/testdata/test-get-private-network-simple.cassette.yaml +++ b/internal/namespaces/vpc/v2/testdata/test-get-private-network-simple.cassette.yaml @@ -2,17 +2,7 @@ version: 1 interactions: - request: - body: '{"id":"d8062887-e437-4815-ae65-3b9ca3154012", "name":"cli-pn-focused-roentgen", - "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2025-05-20T08:23:56.170277Z", - "updated_at":"2025-05-20T08:23:56.170277Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "subnets":[{"id":"52befe78-3676-459a-bb8d-d48657a375d9", "created_at":"2025-05-20T08:23:56.170277Z", - "updated_at":"2025-05-20T08:23:56.170277Z", "subnet":"172.16.12.0/22", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "private_network_id":"d8062887-e437-4815-ae65-3b9ca3154012", "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}, - {"id":"c7a195d3-a507-4102-8a79-28295d72b3f0", "created_at":"2025-05-20T08:23:56.170277Z", - "updated_at":"2025-05-20T08:23:56.170277Z", "subnet":"fd46:78ab:30b8:1478::/64", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "private_network_id":"d8062887-e437-4815-ae65-3b9ca3154012", - "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}], "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19", - "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' + body: '{"id":"3f26c4fe-061a-4b86-8b3b-07ab95c768c9","name":"cli-pn-serene-mendeleev","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-22T14:59:44.320895Z","updated_at":"2025-05-22T14:59:44.320895Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":[{"id":"2575fda0-e06c-4149-bcd1-274c76c7dcd8","created_at":"2025-05-22T14:59:44.320895Z","updated_at":"2025-05-22T14:59:44.320895Z","subnet":"172.16.52.0/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"3f26c4fe-061a-4b86-8b3b-07ab95c768c9","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"id":"5398d0ef-54a7-4037-81e0-a2835618fd37","created_at":"2025-05-22T14:59:44.320895Z","updated_at":"2025-05-22T14:59:44.320895Z","subnet":"fd46:78ab:30b8:83ca::/64","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"3f26c4fe-061a-4b86-8b3b-07ab95c768c9","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"vpc_id":"086a5171-f7ab-4667-a231-840a81203f19","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' form: {} headers: Content-Type: @@ -22,28 +12,18 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"d8062887-e437-4815-ae65-3b9ca3154012", "name":"cli-pn-focused-roentgen", - "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2025-05-20T08:23:56.170277Z", - "updated_at":"2025-05-20T08:23:56.170277Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "subnets":[{"id":"52befe78-3676-459a-bb8d-d48657a375d9", "created_at":"2025-05-20T08:23:56.170277Z", - "updated_at":"2025-05-20T08:23:56.170277Z", "subnet":"172.16.12.0/22", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "private_network_id":"d8062887-e437-4815-ae65-3b9ca3154012", "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}, - {"id":"c7a195d3-a507-4102-8a79-28295d72b3f0", "created_at":"2025-05-20T08:23:56.170277Z", - "updated_at":"2025-05-20T08:23:56.170277Z", "subnet":"fd46:78ab:30b8:1478::/64", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "private_network_id":"d8062887-e437-4815-ae65-3b9ca3154012", - "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}], "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19", - "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' + body: '{"id":"3f26c4fe-061a-4b86-8b3b-07ab95c768c9","name":"cli-pn-serene-mendeleev","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-22T14:59:44.320895Z","updated_at":"2025-05-22T14:59:44.320895Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":[{"id":"2575fda0-e06c-4149-bcd1-274c76c7dcd8","created_at":"2025-05-22T14:59:44.320895Z","updated_at":"2025-05-22T14:59:44.320895Z","subnet":"172.16.52.0/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"3f26c4fe-061a-4b86-8b3b-07ab95c768c9","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"id":"5398d0ef-54a7-4037-81e0-a2835618fd37","created_at":"2025-05-22T14:59:44.320895Z","updated_at":"2025-05-22T14:59:44.320895Z","subnet":"fd46:78ab:30b8:83ca::/64","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"3f26c4fe-061a-4b86-8b3b-07ab95c768c9","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"vpc_id":"086a5171-f7ab-4667-a231-840a81203f19","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' headers: Content-Length: - - "1093" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:23:56 GMT + - Thu, 22 May 2025 14:59:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -51,7 +31,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08becfd1-48b8-4033-9e15-dfa493a3597e + - 6e11d4cf-534f-4a8c-9e5b-11cc5e0e9185 status: 200 OK code: 200 duration: "" @@ -1003,12 +983,12 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:23:56 GMT + - Thu, 22 May 2025 14:59:45 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1016,7 +996,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2170696-1f14-4d7b-8cec-d5eb0f6be8b7 + - 2aa55869-b210-4afb-b59a-4a5cdc1cdf2b X-Total-Count: - "71" status: 200 OK @@ -1438,12 +1418,12 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:23:56 GMT + - Thu, 22 May 2025 14:59:45 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1451,30 +1431,14 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5db9981-320f-4717-8ec4-342e4abdba99 + - 52c1c799-cb7a-4b57-9433-132d79cb019c X-Total-Count: - "71" status: 200 OK code: 200 duration: "" - request: - body: '{"local_images":[{"id":"2dd98c87-6ea2-49d9-8420-feafa534e478", "arch":"x86_64", - "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", - "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", - "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", - "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", "POP2-HM-64C-512G", - "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", "POP2-HC-32C-64G", - "POP2-HC-64C-128G", "POP2-HN-3", "POP2-HN-5", "POP2-HN-10", "POP2-48C-192G", - "POP2-HC-48C-96G", "POP2-HM-48C-384G"], "label":"ubuntu_focal", "type":"instance_sbs"}, - {"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6", "arch":"arm64", "zone":"fr-par-1", - "compatible_commercial_types":["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", - "AMP2-C24", "AMP2-C48", "AMP2-C60", "COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", - "COPARM1-16C-64G", "COPARM1-32C-128G"], "label":"ubuntu_focal", "type":"instance_sbs"}], - "total_count":2}' + body: '{"local_images":[{"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"label":"ubuntu_focal","type":"instance_sbs"},{"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_focal","type":"instance_sbs"}],"total_count":2}' form: {} headers: User-Agent: @@ -1482,34 +1446,18 @@ interactions: url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: - body: '{"local_images":[{"id":"2dd98c87-6ea2-49d9-8420-feafa534e478", "arch":"x86_64", - "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", - "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", - "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", - "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", "POP2-HM-64C-512G", - "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", "POP2-HC-32C-64G", - "POP2-HC-64C-128G", "POP2-HN-3", "POP2-HN-5", "POP2-HN-10", "POP2-48C-192G", - "POP2-HC-48C-96G", "POP2-HM-48C-384G"], "label":"ubuntu_focal", "type":"instance_sbs"}, - {"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6", "arch":"arm64", "zone":"fr-par-1", - "compatible_commercial_types":["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", - "AMP2-C24", "AMP2-C48", "AMP2-C60", "COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", - "COPARM1-16C-64G", "COPARM1-32C-128G"], "label":"ubuntu_focal", "type":"instance_sbs"}], - "total_count":2}' + body: '{"local_images":[{"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","arch":"x86_64","zone":"fr-par-1","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"label":"ubuntu_focal","type":"instance_sbs"},{"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","arch":"arm64","zone":"fr-par-1","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"label":"ubuntu_focal","type":"instance_sbs"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1269" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:23:56 GMT + - Thu, 22 May 2025 14:59:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1517,7 +1465,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f3f628a-6af3-45df-a97c-c234f87fefe9 + - dcec148b-f318-406f-b209-d601a8b3a817 status: 200 OK code: 200 duration: "" @@ -1553,9 +1501,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:23:56 GMT + - Thu, 22 May 2025 14:59:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1563,15 +1511,15 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2603f136-b9ed-4b57-b900-24d234f067e0 + - 22bfca9e-0da3-4c9e-89a6-7d63e51683a2 status: 200 OK code: 200 duration: "" - request: - body: '{"ip": {"id": "c8b9a7b6-58fc-494c-84b3-4f56a6ca1fbe", "address": "51.15.229.153", + body: '{"ip": {"id": "8465a9bf-2dcd-4d49-aa6b-6f7c1a423a31", "address": "163.172.135.253", "prefix": null, "reverse": null, "server": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", "type": - "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "18bd684a-4ede-4aa8-af65-b92b91527a16"}}' + "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "43faa980-3a19-4a7a-acdb-63d83fee07f2"}}' form: {} headers: Content-Type: @@ -1581,23 +1529,23 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"id": "c8b9a7b6-58fc-494c-84b3-4f56a6ca1fbe", "address": "51.15.229.153", + body: '{"ip": {"id": "8465a9bf-2dcd-4d49-aa6b-6f7c1a423a31", "address": "163.172.135.253", "prefix": null, "reverse": null, "server": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", "type": - "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "18bd684a-4ede-4aa8-af65-b92b91527a16"}}' + "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "43faa980-3a19-4a7a-acdb-63d83fee07f2"}}' headers: Content-Length: - - "365" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:23:57 GMT + - Thu, 22 May 2025 14:59:46 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8b9a7b6-58fc-494c-84b3-4f56a6ca1fbe + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8465a9bf-2dcd-4d49-aa6b-6f7c1a423a31 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1605,15 +1553,15 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a1b2e95-7f81-4163-aa87-f92b67f5fc89 + - 7bb35512-fcf9-450a-b69d-bcee5331cb6e status: 201 Created code: 201 duration: "" - request: - body: '{"server": {"id": "0cea3627-8042-43c1-b103-591d0b13f09e", "name": "cli-srv-keen-ptolemy", + body: '{"server": {"id": "11d289ea-9848-4c72-b3da-eaba461d1828", "name": "cli-srv-wizardly-sinoussi", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-keen-ptolemy", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", + "hostname": "cli-srv-wizardly-sinoussi", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": @@ -1621,18 +1569,18 @@ interactions: "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "68dd478e-db2a-47f9-95da-4021780dd292", "zone": "fr-par-1"}}, "tags": + "id": "c18e7e7e-94d9-4f9b-95c2-f700cbd2ca9b", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "c8b9a7b6-58fc-494c-84b3-4f56a6ca1fbe", "address": "51.15.229.153", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "18bd684a-4ede-4aa8-af65-b92b91527a16"}, - "public_ips": [{"id": "c8b9a7b6-58fc-494c-84b3-4f56a6ca1fbe", "address": "51.15.229.153", + {"id": "8465a9bf-2dcd-4d49-aa6b-6f7c1a423a31", "address": "163.172.135.253", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "18bd684a-4ede-4aa8-af65-b92b91527a16"}], - "mac_address": "de:00:00:af:7b:83", "routed_ip_enabled": true, "ipv6": null, + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "43faa980-3a19-4a7a-acdb-63d83fee07f2"}, + "public_ips": [{"id": "8465a9bf-2dcd-4d49-aa6b-6f7c1a423a31", "address": "163.172.135.253", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "43faa980-3a19-4a7a-acdb-63d83fee07f2"}], + "mac_address": "de:00:00:b0:1b:0d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-05-20T08:23:57.685004+00:00", "modification_date": - "2025-05-20T08:23:57.685004+00:00", "bootscript": null, "security_group": {"id": + null, "creation_date": "2025-05-22T14:59:46.514313+00:00", "modification_date": + "2025-05-22T14:59:46.514313+00:00", "bootscript": null, "security_group": {"id": "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": @@ -1646,10 +1594,10 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: - body: '{"server": {"id": "0cea3627-8042-43c1-b103-591d0b13f09e", "name": "cli-srv-keen-ptolemy", + body: '{"server": {"id": "11d289ea-9848-4c72-b3da-eaba461d1828", "name": "cli-srv-wizardly-sinoussi", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-keen-ptolemy", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", + "hostname": "cli-srv-wizardly-sinoussi", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": @@ -1657,35 +1605,35 @@ interactions: "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "68dd478e-db2a-47f9-95da-4021780dd292", "zone": "fr-par-1"}}, "tags": + "id": "c18e7e7e-94d9-4f9b-95c2-f700cbd2ca9b", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "c8b9a7b6-58fc-494c-84b3-4f56a6ca1fbe", "address": "51.15.229.153", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "18bd684a-4ede-4aa8-af65-b92b91527a16"}, - "public_ips": [{"id": "c8b9a7b6-58fc-494c-84b3-4f56a6ca1fbe", "address": "51.15.229.153", + {"id": "8465a9bf-2dcd-4d49-aa6b-6f7c1a423a31", "address": "163.172.135.253", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "43faa980-3a19-4a7a-acdb-63d83fee07f2"}, + "public_ips": [{"id": "8465a9bf-2dcd-4d49-aa6b-6f7c1a423a31", "address": "163.172.135.253", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "18bd684a-4ede-4aa8-af65-b92b91527a16"}], - "mac_address": "de:00:00:af:7b:83", "routed_ip_enabled": true, "ipv6": null, + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "43faa980-3a19-4a7a-acdb-63d83fee07f2"}], + "mac_address": "de:00:00:b0:1b:0d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-05-20T08:23:57.685004+00:00", "modification_date": - "2025-05-20T08:23:57.685004+00:00", "bootscript": null, "security_group": {"id": + null, "creation_date": "2025-05-22T14:59:46.514313+00:00", "modification_date": + "2025-05-22T14:59:46.514313+00:00", "bootscript": null, "security_group": {"id": "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2239" + - "2253" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:23:58 GMT + - Thu, 22 May 2025 14:59:47 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cea3627-8042-43c1-b103-591d0b13f09e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11d289ea-9848-4c72-b3da-eaba461d1828 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,30 +1641,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73704aeb-efff-4b48-bf05-9553f403380c + - a9bc3969-2082-4a74-b5dc-619e78c7f935 status: 201 Created code: 201 duration: "" - request: - body: '{"private_nic": {"id": "33a50d04-6f35-4999-94f7-3be3cd021082", "private_network_id": - "d8062887-e437-4815-ae65-3b9ca3154012", "server_id": "0cea3627-8042-43c1-b103-591d0b13f09e", - "mac_address": "02:00:00:14:cd:45", "state": "available", "creation_date": "2025-05-20T08:23:58.232441+00:00", - "modification_date": "2025-05-20T08:23:58.364734+00:00", "zone": "fr-par-1", - "tags": [], "ipam_ip_ids": ["676ffb07-9ddb-499f-a340-c3ca18e70a98", "77f223e5-24bc-4ccc-9a46-b5e518b45b36"]}}' + body: '{"private_nic": {"id": "bee0e62c-32ff-4efb-baec-5aca70dbfdba", "private_network_id": + "3f26c4fe-061a-4b86-8b3b-07ab95c768c9", "server_id": "11d289ea-9848-4c72-b3da-eaba461d1828", + "mac_address": "02:00:00:11:07:cb", "state": "available", "creation_date": "2025-05-22T14:59:47.377222+00:00", + "modification_date": "2025-05-22T14:59:47.538701+00:00", "zone": "fr-par-1", + "tags": [], "ipam_ip_ids": ["8347d6f5-f42d-44da-97ad-72f16d466e7e", "e8eee783-12e1-4753-83b9-a961add1cc33"]}}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cea3627-8042-43c1-b103-591d0b13f09e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11d289ea-9848-4c72-b3da-eaba461d1828/private_nics method: POST response: - body: '{"private_nic": {"id": "33a50d04-6f35-4999-94f7-3be3cd021082", "private_network_id": - "d8062887-e437-4815-ae65-3b9ca3154012", "server_id": "0cea3627-8042-43c1-b103-591d0b13f09e", - "mac_address": "02:00:00:14:cd:45", "state": "available", "creation_date": "2025-05-20T08:23:58.232441+00:00", - "modification_date": "2025-05-20T08:23:58.364734+00:00", "zone": "fr-par-1", - "tags": [], "ipam_ip_ids": ["676ffb07-9ddb-499f-a340-c3ca18e70a98", "77f223e5-24bc-4ccc-9a46-b5e518b45b36"]}}' + body: '{"private_nic": {"id": "bee0e62c-32ff-4efb-baec-5aca70dbfdba", "private_network_id": + "3f26c4fe-061a-4b86-8b3b-07ab95c768c9", "server_id": "11d289ea-9848-4c72-b3da-eaba461d1828", + "mac_address": "02:00:00:11:07:cb", "state": "available", "creation_date": "2025-05-22T14:59:47.377222+00:00", + "modification_date": "2025-05-22T14:59:47.538701+00:00", "zone": "fr-par-1", + "tags": [], "ipam_ip_ids": ["8347d6f5-f42d-44da-97ad-72f16d466e7e", "e8eee783-12e1-4753-83b9-a961add1cc33"]}}' headers: Content-Length: - "475" @@ -1725,9 +1673,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:23:59 GMT + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1735,51 +1683,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa807648-cf42-44a2-a362-590f1704715a + - 4348f534-eee0-4f14-aedb-e82e4fcc877a status: 201 Created code: 201 duration: "" - request: - body: '{"id":"d8062887-e437-4815-ae65-3b9ca3154012", "name":"cli-pn-focused-roentgen", - "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2025-05-20T08:23:56.170277Z", - "updated_at":"2025-05-20T08:23:56.170277Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "subnets":[{"id":"52befe78-3676-459a-bb8d-d48657a375d9", "created_at":"2025-05-20T08:23:56.170277Z", - "updated_at":"2025-05-20T08:23:56.170277Z", "subnet":"172.16.12.0/22", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "private_network_id":"d8062887-e437-4815-ae65-3b9ca3154012", "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}, - {"id":"c7a195d3-a507-4102-8a79-28295d72b3f0", "created_at":"2025-05-20T08:23:56.170277Z", - "updated_at":"2025-05-20T08:23:56.170277Z", "subnet":"fd46:78ab:30b8:1478::/64", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "private_network_id":"d8062887-e437-4815-ae65-3b9ca3154012", - "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}], "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19", - "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' + body: '{"id":"3f26c4fe-061a-4b86-8b3b-07ab95c768c9","name":"cli-pn-serene-mendeleev","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-22T14:59:44.320895Z","updated_at":"2025-05-22T14:59:44.320895Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":[{"id":"2575fda0-e06c-4149-bcd1-274c76c7dcd8","created_at":"2025-05-22T14:59:44.320895Z","updated_at":"2025-05-22T14:59:44.320895Z","subnet":"172.16.52.0/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"3f26c4fe-061a-4b86-8b3b-07ab95c768c9","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"id":"5398d0ef-54a7-4037-81e0-a2835618fd37","created_at":"2025-05-22T14:59:44.320895Z","updated_at":"2025-05-22T14:59:44.320895Z","subnet":"fd46:78ab:30b8:83ca::/64","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"3f26c4fe-061a-4b86-8b3b-07ab95c768c9","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"vpc_id":"086a5171-f7ab-4667-a231-840a81203f19","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8062887-e437-4815-ae65-3b9ca3154012 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3f26c4fe-061a-4b86-8b3b-07ab95c768c9 method: GET response: - body: '{"id":"d8062887-e437-4815-ae65-3b9ca3154012", "name":"cli-pn-focused-roentgen", - "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2025-05-20T08:23:56.170277Z", - "updated_at":"2025-05-20T08:23:56.170277Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "subnets":[{"id":"52befe78-3676-459a-bb8d-d48657a375d9", "created_at":"2025-05-20T08:23:56.170277Z", - "updated_at":"2025-05-20T08:23:56.170277Z", "subnet":"172.16.12.0/22", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "private_network_id":"d8062887-e437-4815-ae65-3b9ca3154012", "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}, - {"id":"c7a195d3-a507-4102-8a79-28295d72b3f0", "created_at":"2025-05-20T08:23:56.170277Z", - "updated_at":"2025-05-20T08:23:56.170277Z", "subnet":"fd46:78ab:30b8:1478::/64", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "private_network_id":"d8062887-e437-4815-ae65-3b9ca3154012", - "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}], "vpc_id":"086a5171-f7ab-4667-a231-840a81203f19", - "dhcp_enabled":true, "default_route_propagation_enabled":false, "region":"fr-par"}' + body: '{"id":"3f26c4fe-061a-4b86-8b3b-07ab95c768c9","name":"cli-pn-serene-mendeleev","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-22T14:59:44.320895Z","updated_at":"2025-05-22T14:59:44.320895Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":[{"id":"2575fda0-e06c-4149-bcd1-274c76c7dcd8","created_at":"2025-05-22T14:59:44.320895Z","updated_at":"2025-05-22T14:59:44.320895Z","subnet":"172.16.52.0/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"3f26c4fe-061a-4b86-8b3b-07ab95c768c9","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"id":"5398d0ef-54a7-4037-81e0-a2835618fd37","created_at":"2025-05-22T14:59:44.320895Z","updated_at":"2025-05-22T14:59:44.320895Z","subnet":"fd46:78ab:30b8:83ca::/64","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_id":"3f26c4fe-061a-4b86-8b3b-07ab95c768c9","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"vpc_id":"086a5171-f7ab-4667-a231-840a81203f19","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' headers: Content-Length: - - "1093" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:23:59 GMT + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1787,94 +1715,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9d9ba0a-767f-422d-953b-dc3ad3a975da + - ee754ef8-6324-45a2-99a7-0a32e33388e9 status: 200 OK code: 200 duration: "" - request: - body: '{"servers": [{"id": "0cea3627-8042-43c1-b103-591d0b13f09e", "name": "cli-srv-keen-ptolemy", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-keen-ptolemy", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", - "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "68dd478e-db2a-47f9-95da-4021780dd292", "zone": "fr-par-1"}}, "tags": - [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "c8b9a7b6-58fc-494c-84b3-4f56a6ca1fbe", "address": "51.15.229.153", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "18bd684a-4ede-4aa8-af65-b92b91527a16"}, - "public_ips": [{"id": "c8b9a7b6-58fc-494c-84b3-4f56a6ca1fbe", "address": "51.15.229.153", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "18bd684a-4ede-4aa8-af65-b92b91527a16"}], - "mac_address": "de:00:00:af:7b:83", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-05-20T08:23:57.685004+00:00", "modification_date": - "2025-05-20T08:23:57.685004+00:00", "bootscript": null, "security_group": {"id": - "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": - null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": - null, "private_nics": [{"id": "33a50d04-6f35-4999-94f7-3be3cd021082", "private_network_id": - "d8062887-e437-4815-ae65-3b9ca3154012", "server_id": "0cea3627-8042-43c1-b103-591d0b13f09e", - "mac_address": "02:00:00:14:cd:45", "state": "available", "creation_date": "2025-05-20T08:23:58.232441+00:00", - "modification_date": "2025-05-20T08:23:58.364734+00:00", "zone": "fr-par-1", - "tags": [], "ipam_ip_ids": ["676ffb07-9ddb-499f-a340-c3ca18e70a98", "77f223e5-24bc-4ccc-9a46-b5e518b45b36"]}], - "zone": "fr-par-1", "filesystems": [], "end_of_service": false}]}' + body: '{"lbs":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&page=1&private_network=d8062887-e437-4815-ae65-3b9ca3154012 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?order_by=created_at_asc&page=1 method: GET response: - body: '{"servers": [{"id": "0cea3627-8042-43c1-b103-591d0b13f09e", "name": "cli-srv-keen-ptolemy", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-keen-ptolemy", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", - "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": - "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": - ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", - "default_bootscript": null, "from_server": "", "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "68dd478e-db2a-47f9-95da-4021780dd292", "zone": "fr-par-1"}}, "tags": - [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "c8b9a7b6-58fc-494c-84b3-4f56a6ca1fbe", "address": "51.15.229.153", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "18bd684a-4ede-4aa8-af65-b92b91527a16"}, - "public_ips": [{"id": "c8b9a7b6-58fc-494c-84b3-4f56a6ca1fbe", "address": "51.15.229.153", - "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "18bd684a-4ede-4aa8-af65-b92b91527a16"}], - "mac_address": "de:00:00:af:7b:83", "routed_ip_enabled": true, "ipv6": null, - "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-05-20T08:23:57.685004+00:00", "modification_date": - "2025-05-20T08:23:57.685004+00:00", "bootscript": null, "security_group": {"id": - "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": - null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": - null, "private_nics": [{"id": "33a50d04-6f35-4999-94f7-3be3cd021082", "private_network_id": - "d8062887-e437-4815-ae65-3b9ca3154012", "server_id": "0cea3627-8042-43c1-b103-591d0b13f09e", - "mac_address": "02:00:00:14:cd:45", "state": "available", "creation_date": "2025-05-20T08:23:58.232441+00:00", - "modification_date": "2025-05-20T08:23:58.364734+00:00", "zone": "fr-par-1", - "tags": [], "ipam_ip_ids": ["676ffb07-9ddb-499f-a340-c3ca18e70a98", "77f223e5-24bc-4ccc-9a46-b5e518b45b36"]}], - "zone": "fr-par-1", "filesystems": [], "end_of_service": false}]}' + body: '{"lbs":[],"total_count":0}' headers: Content-Length: - - "2700" + - "26" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:23:59 GMT - Link: - - ; - rel="last" + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1882,36 +1747,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c330b2f-1e89-40d6-bdf7-08585cbe811e - X-Total-Count: - - "1" + - c77390b6-9817-4887-849c-b135f161c3c1 status: 200 OK code: 200 duration: "" - request: - body: '{"servers": []}' + body: '{"total_count":1,"clusters":[{"region":"fr-par","id":"4b349ce8-6f5a-4e88-a73e-fd4acb19f8af","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-19T15:08:05.087030Z","updated_at":"2025-05-19T15:28:33.285269Z","type":"kapsule","name":"k8s-par-zen-hawking","description":"","status":"ready","version":"1.32.3","cni":"cilium","tags":[],"cluster_url":"https://4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":-10,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":600},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fddb969f-ef3c-4924-b9df-b22b00fc4690","commitment_ends_at":"2025-05-19T15:08:05.087036Z","acl_available":true,"iam_nodes_group_id":"82ceaf82-a3ef-47b9-9761-d4b646a1a328","new_images_enabled":false}]}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?order=creation_date_desc&page=1&private_network=d8062887-e437-4815-ae65-3b9ca3154012 + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?order_by=created_at_asc&page=1&status=unknown method: GET response: - body: '{"servers": []}' + body: '{"total_count":1,"clusters":[{"region":"fr-par","id":"4b349ce8-6f5a-4e88-a73e-fd4acb19f8af","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-19T15:08:05.087030Z","updated_at":"2025-05-19T15:28:33.285269Z","type":"kapsule","name":"k8s-par-zen-hawking","description":"","status":"ready","version":"1.32.3","cni":"cilium","tags":[],"cluster_url":"https://4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":-10,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":600},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fddb969f-ef3c-4924-b9df-b22b00fc4690","commitment_ends_at":"2025-05-19T15:08:05.087036Z","acl_available":true,"iam_nodes_group_id":"82ceaf82-a3ef-47b9-9761-d4b646a1a328","new_images_enabled":false}]}' headers: Content-Length: - - "15" + - "1487" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:23:59 GMT - Link: - - ; - rel="last" + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1919,36 +1779,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b57d8d2e-9cbf-4f2e-a6a7-3d82d3257306 - X-Total-Count: - - "0" + - 04bca10f-3234-40f7-b314-58c17aaa646f status: 200 OK code: 200 duration: "" - request: - body: '{"servers": []}' + body: '{"server_private_networks":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-3/servers?order=creation_date_desc&page=1&private_network=d8062887-e437-4815-ae65-3b9ca3154012 + url: https://api.scaleway.com/baremetal/v1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&page=1&private_network_id=3f26c4fe-061a-4b86-8b3b-07ab95c768c9 method: GET response: - body: '{"servers": []}' + body: '{"server_private_networks":[],"total_count":0}' headers: Content-Length: - - "15" + - "46" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:00 GMT - Link: - - ; - rel="last" + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1956,33 +1811,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7318c95-d573-41a3-b2b0-7bd66ff7bd49 - X-Total-Count: - - "0" + - 27051616-a7b7-4266-b8b2-425fea7b2c5d status: 200 OK code: 200 duration: "" - request: - body: '{"server_private_networks":[], "total_count":0}' + body: '{"gateways":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&page=1&private_network_id=d8062887-e437-4815-ae65-3b9ca3154012 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways?order_by=created_at_asc&page=1 method: GET response: - body: '{"server_private_networks":[], "total_count":0}' + body: '{"gateways":[],"total_count":0}' headers: Content-Length: - - "47" + - "31" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:00 GMT + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1990,31 +1843,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a035e318-7db9-4d2e-aeb6-b7901aac83d9 + - 05801e9d-4b3f-45e0-adaf-e39bd739d706 status: 200 OK code: 200 duration: "" - request: - body: '{"server_private_networks":[], "total_count":0}' + body: '{"server_private_networks":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1/zones/fr-par-2/server-private-networks?order_by=created_at_asc&page=1&private_network_id=d8062887-e437-4815-ae65-3b9ca3154012 + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-3/server-private-networks?order_by=created_at_asc&page=1&private_network_id=3f26c4fe-061a-4b86-8b3b-07ab95c768c9 method: GET response: - body: '{"server_private_networks":[], "total_count":0}' + body: '{"server_private_networks":[],"total_count":0}' headers: Content-Length: - - "47" + - "46" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:00 GMT + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2022,61 +1875,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46ff69b3-d2c0-48fd-9851-932519593051 + - efe0968b-132b-457c-a7cf-dacfc7eb8cf6 status: 200 OK code: 200 duration: "" - request: - body: '{"total_count":1, "clusters":[{"region":"fr-par", "id":"4b349ce8-6f5a-4e88-a73e-fd4acb19f8af", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "created_at":"2025-05-19T15:08:05.087030Z", "updated_at":"2025-05-19T15:28:33.285269Z", - "type":"kapsule", "name":"k8s-par-zen-hawking", "description":"", "status":"ready", - "version":"1.32.3", "cni":"cilium", "tags":[], "cluster_url":"https://4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"fddb969f-ef3c-4924-b9df-b22b00fc4690", - "commitment_ends_at":"2025-05-19T15:08:05.087036Z", "acl_available":true, "iam_nodes_group_id":"82ceaf82-a3ef-47b9-9761-d4b646a1a328", - "new_images_enabled":false}]}' + body: '{"instances":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?order_by=created_at_asc&page=1&status=unknown + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances?order_by=created_at_asc&page=1 method: GET response: - body: '{"total_count":1, "clusters":[{"region":"fr-par", "id":"4b349ce8-6f5a-4e88-a73e-fd4acb19f8af", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "created_at":"2025-05-19T15:08:05.087030Z", "updated_at":"2025-05-19T15:28:33.285269Z", - "type":"kapsule", "name":"k8s-par-zen-hawking", "description":"", "status":"ready", - "version":"1.32.3", "cni":"cilium", "tags":[], "cluster_url":"https://4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.api.k8s.fr-par.scw.cloud:6443", - "dns_wildcard":"*.4b349ce8-6f5a-4e88-a73e-fd4acb19f8af.nodes.k8s.fr-par.scw.cloud", - "autoscaler_config":{"scale_down_disabled":false, "scale_down_delay_after_add":"10m", - "estimator":"binpacking", "expander":"random", "ignore_daemonsets_utilization":false, - "balance_similar_node_groups":false, "expendable_pods_priority_cutoff":-10, - "scale_down_unneeded_time":"10m", "scale_down_utilization_threshold":0.5, "max_graceful_termination_sec":600}, - "auto_upgrade":{"enabled":false, "maintenance_window":{"start_hour":0, "day":"any"}}, - "upgrade_available":false, "feature_gates":[], "admission_plugins":[], "open_id_connect_config":{"issuer_url":"", - "client_id":"", "username_claim":"", "username_prefix":"", "groups_claim":[], - "groups_prefix":"", "required_claim":[]}, "apiserver_cert_sans":[], "private_network_id":"fddb969f-ef3c-4924-b9df-b22b00fc4690", - "commitment_ends_at":"2025-05-19T15:08:05.087036Z", "acl_available":true, "iam_nodes_group_id":"82ceaf82-a3ef-47b9-9761-d4b646a1a328", - "new_images_enabled":false}]}' + body: '{"instances":[],"total_count":0}' headers: Content-Length: - - "1531" + - "32" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:00 GMT + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2084,31 +1907,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61da504a-aaa1-4e1c-b36e-60dfb4b0b0a9 + - 73821d2f-06ed-453f-baf8-1c90cca567ec status: 200 OK code: 200 duration: "" - request: - body: '{"lbs":[], "total_count":0}' + body: '{"total_count":2,"ips":[{"id":"e8eee783-12e1-4753-83b9-a961add1cc33","address":"fd46:78ab:30b8:83ca:5ec9:85b2:db69:4e78/64","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":true,"created_at":"2025-05-22T14:59:48.220017Z","updated_at":"2025-05-22T14:59:48.220017Z","source":{"subnet_id":"5398d0ef-54a7-4037-81e0-a2835618fd37"},"resource":{"type":"instance_private_nic","id":"bee0e62c-32ff-4efb-baec-5aca70dbfdba","mac_address":"02:00:00:11:07:CB","name":"cli-srv-wizardly-sinoussi"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"8347d6f5-f42d-44da-97ad-72f16d466e7e","address":"172.16.52.2/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"created_at":"2025-05-22T14:59:47.824642Z","updated_at":"2025-05-22T14:59:47.824642Z","source":{"subnet_id":"2575fda0-e06c-4149-bcd1-274c76c7dcd8"},"resource":{"type":"instance_private_nic","id":"bee0e62c-32ff-4efb-baec-5aca70dbfdba","mac_address":"02:00:00:11:07:CB","name":"cli-srv-wizardly-sinoussi"},"tags":[],"reverses":[],"region":"fr-par","zone":null}]}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?order_by=created_at_asc + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&private_network_id=3f26c4fe-061a-4b86-8b3b-07ab95c768c9&resource_type=unknown_type method: GET response: - body: '{"lbs":[], "total_count":0}' + body: '{"total_count":2,"ips":[{"id":"e8eee783-12e1-4753-83b9-a961add1cc33","address":"fd46:78ab:30b8:83ca:5ec9:85b2:db69:4e78/64","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":true,"created_at":"2025-05-22T14:59:48.220017Z","updated_at":"2025-05-22T14:59:48.220017Z","source":{"subnet_id":"5398d0ef-54a7-4037-81e0-a2835618fd37"},"resource":{"type":"instance_private_nic","id":"bee0e62c-32ff-4efb-baec-5aca70dbfdba","mac_address":"02:00:00:11:07:CB","name":"cli-srv-wizardly-sinoussi"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"8347d6f5-f42d-44da-97ad-72f16d466e7e","address":"172.16.52.2/22","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"created_at":"2025-05-22T14:59:47.824642Z","updated_at":"2025-05-22T14:59:47.824642Z","source":{"subnet_id":"2575fda0-e06c-4149-bcd1-274c76c7dcd8"},"resource":{"type":"instance_private_nic","id":"bee0e62c-32ff-4efb-baec-5aca70dbfdba","mac_address":"02:00:00:11:07:CB","name":"cli-srv-wizardly-sinoussi"},"tags":[],"reverses":[],"region":"fr-par","zone":null}]}' headers: Content-Length: - - "27" + - "1050" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:00 GMT + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2116,31 +1939,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6bd1acc-a5ca-420e-ab0e-0db39c7d6811 + - 5010d648-8ce1-42bc-b335-a41dacb8cda9 status: 200 OK code: 200 duration: "" - request: - body: '{"lbs":[], "total_count":0}' + body: '{"deployments":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-2/lbs?order_by=created_at_asc + url: https://api.scaleway.com/inference/v1beta1/regions/fr-par/deployments?order_by=created_at_desc&page=1 method: GET response: - body: '{"lbs":[], "total_count":0}' + body: '{"deployments":[],"total_count":0}' headers: Content-Length: - - "27" + - "34" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:00 GMT + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2148,12 +1971,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c869524c-b445-489f-9b37-55e044821c79 + - 5682bd2c-7f55-4b50-8eac-f92455ddd71f status: 200 OK code: 200 duration: "" - request: - body: '{"instances":[], "total_count":0}' + body: '{"instances":[],"total_count":0}' form: {} headers: User-Agent: @@ -2161,18 +1984,18 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances?order_by=created_at_asc&page=1 method: GET response: - body: '{"instances":[], "total_count":0}' + body: '{"instances":[],"total_count":0}' headers: Content-Length: - - "33" + - "32" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:00 GMT + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2180,31 +2003,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e0febd2-3cef-4c1a-be9f-508c0e0fd6b0 + - 9da74da2-9b7a-4267-9012-15067e706efe status: 200 OK code: 200 duration: "" - request: - body: '{"clusters":[], "total_count":0}' + body: '{"gateways":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-2/gateways?order_by=created_at_asc&page=1 method: GET response: - body: '{"clusters":[], "total_count":0}' + body: '{"gateways":[],"total_count":0}' headers: Content-Length: - - "32" + - "31" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:00 GMT + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2212,31 +2035,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9546bf0-9302-41ae-ac2b-6f8658281b10 + - e1f42c08-c174-4a29-8d0d-05d597b083a1 status: 200 OK code: 200 duration: "" - request: - body: '{"clusters":[], "total_count":0}' + body: '{"lbs":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/redis/v1/zones/fr-par-2/clusters?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-2/lbs?order_by=created_at_asc&page=1 method: GET response: - body: '{"clusters":[], "total_count":0}' + body: '{"lbs":[],"total_count":0}' headers: Content-Length: - - "32" + - "26" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:00 GMT + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2244,31 +2067,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4a387ef-cd18-4b0c-bc22-d84760d2f47d + - 6291efe4-0b95-43be-a348-c1dcad92e4b5 status: 200 OK code: 200 duration: "" - request: - body: '{"gateways":[], "total_count":0}' + body: '{"server_private_networks":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/baremetal/v1/zones/fr-par-2/server-private-networks?order_by=created_at_asc&page=1&private_network_id=3f26c4fe-061a-4b86-8b3b-07ab95c768c9 method: GET response: - body: '{"gateways":[], "total_count":0}' + body: '{"server_private_networks":[],"total_count":0}' headers: Content-Length: - - "32" + - "46" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:00 GMT + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2276,31 +2099,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4a3a820-a8f9-4368-9f59-2a4260838646 + - 8044a791-331c-4620-8645-d66bda1595e0 status: 200 OK code: 200 duration: "" - request: - body: '{"gateways":[], "total_count":0}' + body: '{"clusters":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-2/gateways?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters?order_by=created_at_asc&page=1 method: GET response: - body: '{"gateways":[], "total_count":0}' + body: '{"clusters":[],"total_count":0}' headers: Content-Length: - - "32" + - "31" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:00 GMT + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2308,31 +2131,94 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fecfad8-268b-4829-bb13-31acd9990252 + - b4a52407-7571-4a1e-9d4b-7780bb983560 status: 200 OK code: 200 duration: "" - request: - body: '{"server_private_networks":[], "total_count":0}' + body: '{"servers": [{"id": "11d289ea-9848-4c72-b3da-eaba461d1828", "name": "cli-srv-wizardly-sinoussi", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-wizardly-sinoussi", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", + "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "c18e7e7e-94d9-4f9b-95c2-f700cbd2ca9b", "zone": "fr-par-1"}}, "tags": + [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": + {"id": "8465a9bf-2dcd-4d49-aa6b-6f7c1a423a31", "address": "163.172.135.253", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "43faa980-3a19-4a7a-acdb-63d83fee07f2"}, + "public_ips": [{"id": "8465a9bf-2dcd-4d49-aa6b-6f7c1a423a31", "address": "163.172.135.253", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "43faa980-3a19-4a7a-acdb-63d83fee07f2"}], + "mac_address": "de:00:00:b0:1b:0d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-05-22T14:59:46.514313+00:00", "modification_date": + "2025-05-22T14:59:46.514313+00:00", "bootscript": null, "security_group": {"id": + "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": + null, "private_nics": [{"id": "bee0e62c-32ff-4efb-baec-5aca70dbfdba", "private_network_id": + "3f26c4fe-061a-4b86-8b3b-07ab95c768c9", "server_id": "11d289ea-9848-4c72-b3da-eaba461d1828", + "mac_address": "02:00:00:11:07:cb", "state": "available", "creation_date": "2025-05-22T14:59:47.377222+00:00", + "modification_date": "2025-05-22T14:59:47.538701+00:00", "zone": "fr-par-1", + "tags": [], "ipam_ip_ids": ["8347d6f5-f42d-44da-97ad-72f16d466e7e", "e8eee783-12e1-4753-83b9-a961add1cc33"]}], + "zone": "fr-par-1", "filesystems": [], "end_of_service": false}]}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-3/server-private-networks?order_by=created_at_asc&page=1&private_network_id=d8062887-e437-4815-ae65-3b9ca3154012 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&page=1&private_network=3f26c4fe-061a-4b86-8b3b-07ab95c768c9 method: GET response: - body: '{"server_private_networks":[], "total_count":0}' + body: '{"servers": [{"id": "11d289ea-9848-4c72-b3da-eaba461d1828", "name": "cli-srv-wizardly-sinoussi", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-wizardly-sinoussi", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", + "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": + "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": + ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", + "default_bootscript": null, "from_server": "", "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", + "id": "c18e7e7e-94d9-4f9b-95c2-f700cbd2ca9b", "zone": "fr-par-1"}}, "tags": + [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": + {"id": "8465a9bf-2dcd-4d49-aa6b-6f7c1a423a31", "address": "163.172.135.253", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "43faa980-3a19-4a7a-acdb-63d83fee07f2"}, + "public_ips": [{"id": "8465a9bf-2dcd-4d49-aa6b-6f7c1a423a31", "address": "163.172.135.253", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "43faa980-3a19-4a7a-acdb-63d83fee07f2"}], + "mac_address": "de:00:00:b0:1b:0d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2025-05-22T14:59:46.514313+00:00", "modification_date": + "2025-05-22T14:59:46.514313+00:00", "bootscript": null, "security_group": {"id": + "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": + null, "private_nics": [{"id": "bee0e62c-32ff-4efb-baec-5aca70dbfdba", "private_network_id": + "3f26c4fe-061a-4b86-8b3b-07ab95c768c9", "server_id": "11d289ea-9848-4c72-b3da-eaba461d1828", + "mac_address": "02:00:00:11:07:cb", "state": "available", "creation_date": "2025-05-22T14:59:47.377222+00:00", + "modification_date": "2025-05-22T14:59:47.538701+00:00", "zone": "fr-par-1", + "tags": [], "ipam_ip_ids": ["8347d6f5-f42d-44da-97ad-72f16d466e7e", "e8eee783-12e1-4753-83b9-a961add1cc33"]}], + "zone": "fr-par-1", "filesystems": [], "end_of_service": false}]}' headers: Content-Length: - - "47" + - "2714" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:01 GMT + - Thu, 22 May 2025 14:59:48 GMT + Link: + - ; + rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2340,43 +2226,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c5eb3ab-ffeb-47ba-aae6-bed1b531282d + - 6f22353a-554b-42dd-af6d-2639d4faa4f8 + X-Total-Count: + - "1" status: 200 OK code: 200 duration: "" - request: - body: '{"instances":[{"id":"24a19e18-2889-4643-a48e-ee5fb2ca5fce", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"error", "version":"7.0.12", - "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", "volume":{"type":"sbs_5k", - "size":5000000000}, "endpoints":[{"id":"794aed75-b91c-44d7-b98d-5a2d26a22485", - "ips":[], "dns_records":["24a19e18-2889-4643-a48e-ee5fb2ca5fce.3b677b6f-51d3-4b33-80cd-99f37a4b2219.internal"], - "port":27017, "private_network":{"private_network_id":"3b677b6f-51d3-4b33-80cd-99f37a4b2219"}}], - "created_at":"2025-05-19T20:49:42.936488Z", "region":"fr-par"}], "total_count":1}' + body: '{"clusters":[],"total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/redis/v1/zones/fr-par-2/clusters?order_by=created_at_asc&page=1 method: GET response: - body: '{"instances":[{"id":"24a19e18-2889-4643-a48e-ee5fb2ca5fce", "name":"mongo-cli-test", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"error", "version":"7.0.12", - "tags":[], "settings":[], "node_number":1, "node_type":"mgdb-play2-nano", "volume":{"type":"sbs_5k", - "size":5000000000}, "endpoints":[{"id":"794aed75-b91c-44d7-b98d-5a2d26a22485", - "ips":[], "dns_records":["24a19e18-2889-4643-a48e-ee5fb2ca5fce.3b677b6f-51d3-4b33-80cd-99f37a4b2219.internal"], - "port":27017, "private_network":{"private_network_id":"3b677b6f-51d3-4b33-80cd-99f37a4b2219"}}], - "created_at":"2025-05-19T20:49:42.936488Z", "region":"fr-par"}], "total_count":1}' + body: '{"clusters":[],"total_count":0}' headers: Content-Length: - - "646" + - "31" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:01 GMT + - Thu, 22 May 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2384,53 +2260,34 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82a69c12-dc0c-4bd0-8021-ed5510a52e54 + - 8538df81-776f-4e1b-9061-8a76347771d4 status: 200 OK code: 200 duration: "" - request: - body: '{"total_count":2, "ips":[{"id":"77f223e5-24bc-4ccc-9a46-b5e518b45b36", - "address":"fd46:78ab:30b8:1478:8c25:c126:3f8e:2664/64", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "is_ipv6":true, "created_at":"2025-05-20T08:23:59.474957Z", "updated_at":"2025-05-20T08:23:59.474957Z", - "source":{"subnet_id":"c7a195d3-a507-4102-8a79-28295d72b3f0"}, "resource":{"type":"instance_private_nic", - "id":"33a50d04-6f35-4999-94f7-3be3cd021082", "mac_address":"02:00:00:14:CD:45", - "name":"cli-srv-keen-ptolemy"}, "tags":[], "reverses":[], "region":"fr-par", - "zone":null}, {"id":"676ffb07-9ddb-499f-a340-c3ca18e70a98", "address":"172.16.12.2/22", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "is_ipv6":false, "created_at":"2025-05-20T08:23:58.929314Z", - "updated_at":"2025-05-20T08:23:58.929314Z", "source":{"subnet_id":"52befe78-3676-459a-bb8d-d48657a375d9"}, - "resource":{"type":"instance_private_nic", "id":"33a50d04-6f35-4999-94f7-3be3cd021082", - "mac_address":"02:00:00:14:CD:45", "name":"cli-srv-keen-ptolemy"}, "tags":[], - "reverses":[], "region":"fr-par", "zone":null}]}' + body: '{"servers": []}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&private_network_id=d8062887-e437-4815-ae65-3b9ca3154012&resource_type=unknown_type + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?order=creation_date_desc&page=1&private_network=3f26c4fe-061a-4b86-8b3b-07ab95c768c9 method: GET response: - body: '{"total_count":2, "ips":[{"id":"77f223e5-24bc-4ccc-9a46-b5e518b45b36", - "address":"fd46:78ab:30b8:1478:8c25:c126:3f8e:2664/64", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "is_ipv6":true, "created_at":"2025-05-20T08:23:59.474957Z", "updated_at":"2025-05-20T08:23:59.474957Z", - "source":{"subnet_id":"c7a195d3-a507-4102-8a79-28295d72b3f0"}, "resource":{"type":"instance_private_nic", - "id":"33a50d04-6f35-4999-94f7-3be3cd021082", "mac_address":"02:00:00:14:CD:45", - "name":"cli-srv-keen-ptolemy"}, "tags":[], "reverses":[], "region":"fr-par", - "zone":null}, {"id":"676ffb07-9ddb-499f-a340-c3ca18e70a98", "address":"172.16.12.2/22", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "is_ipv6":false, "created_at":"2025-05-20T08:23:58.929314Z", - "updated_at":"2025-05-20T08:23:58.929314Z", "source":{"subnet_id":"52befe78-3676-459a-bb8d-d48657a375d9"}, - "resource":{"type":"instance_private_nic", "id":"33a50d04-6f35-4999-94f7-3be3cd021082", - "mac_address":"02:00:00:14:CD:45", "name":"cli-srv-keen-ptolemy"}, "tags":[], - "reverses":[], "region":"fr-par", "zone":null}]}' + body: '{"servers": []}' headers: Content-Length: - - "1070" + - "15" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:01 GMT + - Thu, 22 May 2025 14:59:48 GMT + Link: + - ; + rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2438,31 +2295,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f84a3f2-de63-4110-a238-9885f291ec78 + - 37f65526-d731-475d-aa77-29ee9c65c778 + X-Total-Count: + - "0" status: 200 OK code: 200 duration: "" - request: - body: '{"deployments":[], "total_count":0}' + body: '{"servers": []}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/inference/v1beta1/regions/fr-par/deployments?order_by=created_at_desc&page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-3/servers?order=creation_date_desc&page=1&private_network=3f26c4fe-061a-4b86-8b3b-07ab95c768c9 method: GET response: - body: '{"deployments":[], "total_count":0}' + body: '{"servers": []}' headers: Content-Length: - - "35" + - "15" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:01 GMT + - Thu, 22 May 2025 14:59:48 GMT + Link: + - ; + rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2470,15 +2332,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 343bdafa-5df7-465e-9e1a-49106a53abff + - 7caf7cf0-4374-4eca-92e5-138b91d03552 + X-Total-Count: + - "0" status: 200 OK code: 200 duration: "" - request: - body: '{"server": {"id": "0cea3627-8042-43c1-b103-591d0b13f09e", "name": "cli-srv-keen-ptolemy", + body: '{"server": {"id": "11d289ea-9848-4c72-b3da-eaba461d1828", "name": "cli-srv-wizardly-sinoussi", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-keen-ptolemy", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", + "hostname": "cli-srv-wizardly-sinoussi", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": @@ -2486,37 +2350,37 @@ interactions: "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "68dd478e-db2a-47f9-95da-4021780dd292", "zone": "fr-par-1"}}, "tags": + "id": "c18e7e7e-94d9-4f9b-95c2-f700cbd2ca9b", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "c8b9a7b6-58fc-494c-84b3-4f56a6ca1fbe", "address": "51.15.229.153", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "18bd684a-4ede-4aa8-af65-b92b91527a16"}, - "public_ips": [{"id": "c8b9a7b6-58fc-494c-84b3-4f56a6ca1fbe", "address": "51.15.229.153", + {"id": "8465a9bf-2dcd-4d49-aa6b-6f7c1a423a31", "address": "163.172.135.253", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "18bd684a-4ede-4aa8-af65-b92b91527a16"}], - "mac_address": "de:00:00:af:7b:83", "routed_ip_enabled": true, "ipv6": null, + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "43faa980-3a19-4a7a-acdb-63d83fee07f2"}, + "public_ips": [{"id": "8465a9bf-2dcd-4d49-aa6b-6f7c1a423a31", "address": "163.172.135.253", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "43faa980-3a19-4a7a-acdb-63d83fee07f2"}], + "mac_address": "de:00:00:b0:1b:0d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-05-20T08:23:57.685004+00:00", "modification_date": - "2025-05-20T08:23:57.685004+00:00", "bootscript": null, "security_group": {"id": + null, "creation_date": "2025-05-22T14:59:46.514313+00:00", "modification_date": + "2025-05-22T14:59:46.514313+00:00", "bootscript": null, "security_group": {"id": "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": - null, "private_nics": [{"id": "33a50d04-6f35-4999-94f7-3be3cd021082", "private_network_id": - "d8062887-e437-4815-ae65-3b9ca3154012", "server_id": "0cea3627-8042-43c1-b103-591d0b13f09e", - "mac_address": "02:00:00:14:cd:45", "state": "available", "creation_date": "2025-05-20T08:23:58.232441+00:00", - "modification_date": "2025-05-20T08:23:58.364734+00:00", "zone": "fr-par-1", - "tags": [], "ipam_ip_ids": ["676ffb07-9ddb-499f-a340-c3ca18e70a98", "77f223e5-24bc-4ccc-9a46-b5e518b45b36"]}], + null, "private_nics": [{"id": "bee0e62c-32ff-4efb-baec-5aca70dbfdba", "private_network_id": + "3f26c4fe-061a-4b86-8b3b-07ab95c768c9", "server_id": "11d289ea-9848-4c72-b3da-eaba461d1828", + "mac_address": "02:00:00:11:07:cb", "state": "available", "creation_date": "2025-05-22T14:59:47.377222+00:00", + "modification_date": "2025-05-22T14:59:47.538701+00:00", "zone": "fr-par-1", + "tags": [], "ipam_ip_ids": ["8347d6f5-f42d-44da-97ad-72f16d466e7e", "e8eee783-12e1-4753-83b9-a961add1cc33"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cea3627-8042-43c1-b103-591d0b13f09e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11d289ea-9848-4c72-b3da-eaba461d1828 method: GET response: - body: '{"server": {"id": "0cea3627-8042-43c1-b103-591d0b13f09e", "name": "cli-srv-keen-ptolemy", + body: '{"server": {"id": "11d289ea-9848-4c72-b3da-eaba461d1828", "name": "cli-srv-wizardly-sinoussi", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-keen-ptolemy", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", + "hostname": "cli-srv-wizardly-sinoussi", "image": {"id": "2dd98c87-6ea2-49d9-8420-feafa534e478", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "b4d54bf7-1656-46c2-84b8-5dd238cfd444", "size": 0, "name": @@ -2524,37 +2388,37 @@ interactions: "2025-02-03T13:36:07.796413+00:00", "modification_date": "2025-02-03T13:36:07.796413+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", - "id": "68dd478e-db2a-47f9-95da-4021780dd292", "zone": "fr-par-1"}}, "tags": + "id": "c18e7e7e-94d9-4f9b-95c2-f700cbd2ca9b", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "c8b9a7b6-58fc-494c-84b3-4f56a6ca1fbe", "address": "51.15.229.153", "dynamic": - false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": - "dhcp", "tags": [], "state": "attached", "ipam_id": "18bd684a-4ede-4aa8-af65-b92b91527a16"}, - "public_ips": [{"id": "c8b9a7b6-58fc-494c-84b3-4f56a6ca1fbe", "address": "51.15.229.153", + {"id": "8465a9bf-2dcd-4d49-aa6b-6f7c1a423a31", "address": "163.172.135.253", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "43faa980-3a19-4a7a-acdb-63d83fee07f2"}, + "public_ips": [{"id": "8465a9bf-2dcd-4d49-aa6b-6f7c1a423a31", "address": "163.172.135.253", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", - "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "18bd684a-4ede-4aa8-af65-b92b91527a16"}], - "mac_address": "de:00:00:af:7b:83", "routed_ip_enabled": true, "ipv6": null, + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "43faa980-3a19-4a7a-acdb-63d83fee07f2"}], + "mac_address": "de:00:00:b0:1b:0d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": - null, "creation_date": "2025-05-20T08:23:57.685004+00:00", "modification_date": - "2025-05-20T08:23:57.685004+00:00", "bootscript": null, "security_group": {"id": + null, "creation_date": "2025-05-22T14:59:46.514313+00:00", "modification_date": + "2025-05-22T14:59:46.514313+00:00", "bootscript": null, "security_group": {"id": "a1d9b162-a45c-4f51-9bf4-c7f654848422", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": - null, "private_nics": [{"id": "33a50d04-6f35-4999-94f7-3be3cd021082", "private_network_id": - "d8062887-e437-4815-ae65-3b9ca3154012", "server_id": "0cea3627-8042-43c1-b103-591d0b13f09e", - "mac_address": "02:00:00:14:cd:45", "state": "available", "creation_date": "2025-05-20T08:23:58.232441+00:00", - "modification_date": "2025-05-20T08:23:58.364734+00:00", "zone": "fr-par-1", - "tags": [], "ipam_ip_ids": ["676ffb07-9ddb-499f-a340-c3ca18e70a98", "77f223e5-24bc-4ccc-9a46-b5e518b45b36"]}], + null, "private_nics": [{"id": "bee0e62c-32ff-4efb-baec-5aca70dbfdba", "private_network_id": + "3f26c4fe-061a-4b86-8b3b-07ab95c768c9", "server_id": "11d289ea-9848-4c72-b3da-eaba461d1828", + "mac_address": "02:00:00:11:07:cb", "state": "available", "creation_date": "2025-05-22T14:59:47.377222+00:00", + "modification_date": "2025-05-22T14:59:47.538701+00:00", "zone": "fr-par-1", + "tags": [], "ipam_ip_ids": ["8347d6f5-f42d-44da-97ad-72f16d466e7e", "e8eee783-12e1-4753-83b9-a961add1cc33"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' headers: Content-Length: - - "2697" + - "2711" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:01 GMT + - Thu, 22 May 2025 14:59:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2562,7 +2426,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7636a1f2-6175-4b23-be8f-8c2202ed2f0d + - 00c19de3-e66e-4853-a1a4-edf763265155 status: 200 OK code: 200 duration: "" @@ -2572,7 +2436,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cea3627-8042-43c1-b103-591d0b13f09e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11d289ea-9848-4c72-b3da-eaba461d1828 method: DELETE response: body: "" @@ -2582,9 +2446,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:01 GMT + - Thu, 22 May 2025 14:59:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2592,87 +2456,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04b25d1f-2a7f-49d3-b243-aa96916d2aaa + - 19c9cca9-ee39-4536-92f8-bcd1d9d97de9 status: 204 No Content code: 204 duration: "" - request: - body: '{"id":"68dd478e-db2a-47f9-95da-4021780dd292", "name":"Ubuntu 20.04 Focal - Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "created_at":"2025-05-20T08:23:57.789709Z", "updated_at":"2025-05-20T08:23:57.789709Z", - "references":[{"id":"7bc400c2-2b46-43ed-97cf-0c33ccb8026d", "product_resource_type":"instance_server", - "product_resource_id":"0cea3627-8042-43c1-b103-591d0b13f09e", "created_at":"2025-05-20T08:23:57.789709Z", - "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444", - "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, - "zone":"fr-par-1"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/68dd478e-db2a-47f9-95da-4021780dd292 - method: GET - response: - body: '{"id":"68dd478e-db2a-47f9-95da-4021780dd292", "name":"Ubuntu 20.04 Focal - Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "created_at":"2025-05-20T08:23:57.789709Z", "updated_at":"2025-05-20T08:23:57.789709Z", - "references":[{"id":"7bc400c2-2b46-43ed-97cf-0c33ccb8026d", "product_resource_type":"instance_server", - "product_resource_id":"0cea3627-8042-43c1-b103-591d0b13f09e", "created_at":"2025-05-20T08:23:57.789709Z", - "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444", - "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, - "zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 20 May 2025 08:24:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c603d790-80d0-452e-ad86-47913223fff6 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"68dd478e-db2a-47f9-95da-4021780dd292", "name":"Ubuntu 20.04 Focal - Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "created_at":"2025-05-20T08:23:57.789709Z", "updated_at":"2025-05-20T08:24:01.814818Z", - "references":[], "parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444", - "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, - "last_detached_at":"2025-05-20T08:24:01.814818Z", "zone":"fr-par-1"}' + body: '{"id":"c18e7e7e-94d9-4f9b-95c2-f700cbd2ca9b","name":"Ubuntu 20.04 Focal + Fossa_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-22T14:59:46.627248Z","updated_at":"2025-05-22T14:59:49.708989Z","references":[],"parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-05-22T14:59:49.708989Z","zone":"fr-par-1"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/68dd478e-db2a-47f9-95da-4021780dd292 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c18e7e7e-94d9-4f9b-95c2-f700cbd2ca9b method: GET response: - body: '{"id":"68dd478e-db2a-47f9-95da-4021780dd292", "name":"Ubuntu 20.04 Focal - Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "created_at":"2025-05-20T08:23:57.789709Z", "updated_at":"2025-05-20T08:24:01.814818Z", - "references":[], "parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444", - "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, - "last_detached_at":"2025-05-20T08:24:01.814818Z", "zone":"fr-par-1"}' + body: '{"id":"c18e7e7e-94d9-4f9b-95c2-f700cbd2ca9b","name":"Ubuntu 20.04 Focal + Fossa_sbs_volume_0","type":"sbs_5k","size":10000000000,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2025-05-22T14:59:46.627248Z","updated_at":"2025-05-22T14:59:49.708989Z","references":[],"parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","status":"available","tags":[],"specs":{"perf_iops":5000,"class":"sbs"},"last_detached_at":"2025-05-22T14:59:49.708989Z","zone":"fr-par-1"}' headers: Content-Length: - - "494" + - "480" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:06 GMT + - Thu, 22 May 2025 14:59:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2680,7 +2490,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a703efa3-b01a-463b-bc2d-b006bfed966b + - c810618b-f6c2-4042-9fa7-29b8b3286637 status: 200 OK code: 200 duration: "" @@ -2690,7 +2500,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/68dd478e-db2a-47f9-95da-4021780dd292 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c18e7e7e-94d9-4f9b-95c2-f700cbd2ca9b method: DELETE response: body: "" @@ -2700,9 +2510,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:06 GMT + - Thu, 22 May 2025 14:59:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2710,22 +2520,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa0840e3-b3a7-4629-a050-aa1318e9fd19 + - 17de1481-b707-45ad-9b40-73f387a1b76e status: 204 No Content code: 204 duration: "" - request: body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_server", - "resource_id": "0cea3627-8042-43c1-b103-591d0b13f09e"}' + "resource_id": "11d289ea-9848-4c72-b3da-eaba461d1828"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0cea3627-8042-43c1-b103-591d0b13f09e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11d289ea-9848-4c72-b3da-eaba461d1828 method: GET response: body: '{"message": "resource is not found", "type": "not_found", "resource": "instance_server", - "resource_id": "0cea3627-8042-43c1-b103-591d0b13f09e"}' + "resource_id": "11d289ea-9848-4c72-b3da-eaba461d1828"}' headers: Content-Length: - "143" @@ -2734,9 +2544,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:06 GMT + - Thu, 22 May 2025 14:59:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2744,7 +2554,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64d5ecf2-3264-4c7e-a148-0927055d560c + - f3884410-723b-4526-93e7-d9f2e510a855 status: 404 Not Found code: 404 duration: "" @@ -2754,7 +2564,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8062887-e437-4815-ae65-3b9ca3154012 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3f26c4fe-061a-4b86-8b3b-07ab95c768c9 method: DELETE response: body: "" @@ -2764,9 +2574,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 20 May 2025 08:24:08 GMT + - Thu, 22 May 2025 14:59:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2774,7 +2584,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9490673-dd66-4a25-af30-f5a7bdf90a09 + - a7be5777-2e67-41e9-81f1-f96bb7ebbc79 status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/vpc/v2/testdata/test-get-private-network-simple.golden b/internal/namespaces/vpc/v2/testdata/test-get-private-network-simple.golden index c4038b0321..cecd14d2bc 100644 --- a/internal/namespaces/vpc/v2/testdata/test-get-private-network-simple.golden +++ b/internal/namespaces/vpc/v2/testdata/test-get-private-network-simple.golden @@ -1,7 +1,7 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID d8062887-e437-4815-ae65-3b9ca3154012 -Name cli-pn-focused-roentgen +ID 3f26c4fe-061a-4b86-8b3b-07ab95c768c9 +Name cli-pn-serene-mendeleev OrganizationID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 ProjectID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 Region fr-par @@ -11,23 +11,23 @@ VpcID 086a5171-f7ab-4667-a231-840a81203f19 DHCPEnabled true DefaultRoutePropagationEnabled false -Instance Servers: -ID NAME STATE NIC ID MAC ADDRESS -0cea3627-8042-43c1-b103-591d0b13f09e cli-srv-keen-ptolemy archived 33a50d04-6f35-4999-94f7-3be3cd021082 02:00:00:14:cd:45 - Subnets: ID CREATED AT UPDATED AT SUBNET PROJECT ID PRIVATE NETWORK ID VPC ID -52befe78-3676-459a-bb8d-d48657a375d9 few seconds ago few seconds ago 172.16.12.0/22 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 d8062887-e437-4815-ae65-3b9ca3154012 086a5171-f7ab-4667-a231-840a81203f19 -c7a195d3-a507-4102-8a79-28295d72b3f0 few seconds ago few seconds ago fd46:78ab:30b8:1478::/64 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 d8062887-e437-4815-ae65-3b9ca3154012 086a5171-f7ab-4667-a231-840a81203f19 +2575fda0-e06c-4149-bcd1-274c76c7dcd8 few seconds ago few seconds ago 172.16.52.0/22 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 3f26c4fe-061a-4b86-8b3b-07ab95c768c9 086a5171-f7ab-4667-a231-840a81203f19 +5398d0ef-54a7-4037-81e0-a2835618fd37 few seconds ago few seconds ago fd46:78ab:30b8:83ca::/64 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 3f26c4fe-061a-4b86-8b3b-07ab95c768c9 086a5171-f7ab-4667-a231-840a81203f19 + +Instance Servers: +ID NAME STATE NIC ID MAC ADDRESS +11d289ea-9848-4c72-b3da-eaba461d1828 cli-srv-wizardly-sinoussi archived bee0e62c-32ff-4efb-baec-5aca70dbfdba 02:00:00:11:07:cb IPAM IPs: ID ADDRESS -77f223e5-24bc-4ccc-9a46-b5e518b45b36 fd46:78ab:30b8:1478:8c25:c126:3f8e:2664/64 -676ffb07-9ddb-499f-a340-c3ca18e70a98 172.16.12.2/22 +e8eee783-12e1-4753-83b9-a961add1cc33 fd46:78ab:30b8:83ca:5ec9:85b2:db69:4e78/64 +8347d6f5-f42d-44da-97ad-72f16d466e7e 172.16.52.2/22 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "id": "d8062887-e437-4815-ae65-3b9ca3154012", - "name": "cli-pn-focused-roentgen", + "id": "3f26c4fe-061a-4b86-8b3b-07ab95c768c9", + "name": "cli-pn-serene-mendeleev", "organization_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "region": "fr-par", @@ -36,21 +36,21 @@ ID ADDRESS "updated_at": "1970-01-01T00:00:00.0Z", "subnets": [ { - "id": "52befe78-3676-459a-bb8d-d48657a375d9", + "id": "2575fda0-e06c-4149-bcd1-274c76c7dcd8", "created_at": "1970-01-01T00:00:00.0Z", "updated_at": "1970-01-01T00:00:00.0Z", - "subnet": "172.16.12.0/22", + "subnet": "172.16.52.0/22", "project_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "private_network_id": "d8062887-e437-4815-ae65-3b9ca3154012", + "private_network_id": "3f26c4fe-061a-4b86-8b3b-07ab95c768c9", "vpc_id": "086a5171-f7ab-4667-a231-840a81203f19" }, { - "id": "c7a195d3-a507-4102-8a79-28295d72b3f0", + "id": "5398d0ef-54a7-4037-81e0-a2835618fd37", "created_at": "1970-01-01T00:00:00.0Z", "updated_at": "1970-01-01T00:00:00.0Z", - "subnet": "fd46:78ab:30b8:1478::/64", + "subnet": "fd46:78ab:30b8:83ca::/64", "project_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "private_network_id": "d8062887-e437-4815-ae65-3b9ca3154012", + "private_network_id": "3f26c4fe-061a-4b86-8b3b-07ab95c768c9", "vpc_id": "086a5171-f7ab-4667-a231-840a81203f19" } ], @@ -59,21 +59,21 @@ ID ADDRESS "default_route_propagation_enabled": false, "instance_servers": [ { - "id": "0cea3627-8042-43c1-b103-591d0b13f09e", - "name": "cli-srv-keen-ptolemy", + "id": "11d289ea-9848-4c72-b3da-eaba461d1828", + "name": "cli-srv-wizardly-sinoussi", "state": "stopped", - "nic_id": "33a50d04-6f35-4999-94f7-3be3cd021082", - "mac": "02:00:00:14:cd:45" + "nic_id": "bee0e62c-32ff-4efb-baec-5aca70dbfdba", + "mac": "02:00:00:11:07:cb" } ], "ipam_ips": [ { - "id": "77f223e5-24bc-4ccc-9a46-b5e518b45b36", - "address": "fd46:78ab:30b8:1478:8c25:c126:3f8e:2664/64" + "id": "e8eee783-12e1-4753-83b9-a961add1cc33", + "address": "fd46:78ab:30b8:83ca:5ec9:85b2:db69:4e78/64" }, { - "id": "676ffb07-9ddb-499f-a340-c3ca18e70a98", - "address": "172.16.12.2/22" + "id": "8347d6f5-f42d-44da-97ad-72f16d466e7e", + "address": "172.16.52.2/22" } ] }