diff --git a/cmd/scw/testdata/test-all-usage-instance-server-create-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-create-usage.golden index a5bc0f2ce6..00c8902620 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-create-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-create-usage.golden @@ -40,7 +40,8 @@ ARGS: [name=] Server name [root-volume] Local root volume of the server [additional-volumes.{index}] Additional local and block volumes attached to your server - [ip=new] Either an IP, an IP ID, 'new' to create a new IP, 'dynamic' to use a dynamic IP or 'none' for no public IP (new | dynamic | none | |
) + [ip=new] Either an IP, an IP ID, ('new', 'ipv4', 'ipv6' or 'both') to create new IPs, 'dynamic' to use a dynamic IP or 'none' for no public IP (new | ipv4 | ipv6 | both | dynamic | none | |
) + [dynamic-ip-required] Define if a dynamic IPv4 is required for the Instance. If server has no IPv4, a dynamic one will be allocated. [tags.{index}] Server tags [ipv6] Enable IPv6, to be used with routed-ip-enabled=false [stopped] Do not start server after its creation diff --git a/docs/commands/instance.md b/docs/commands/instance.md index f4571823ab..3df9fa6071 100644 --- a/docs/commands/instance.md +++ b/docs/commands/instance.md @@ -1713,7 +1713,8 @@ scw instance server create [arg=value ...] | name | Default: `` | Server name | | root-volume | | Local root volume of the server | | additional-volumes.{index} | | Additional local and block volumes attached to your server | -| ip | Default: `new` | Either an IP, an IP ID, 'new' to create a new IP, 'dynamic' to use a dynamic IP or 'none' for no public IP (new | dynamic | none | |
) | +| ip | Default: `new` | Either an IP, an IP ID, ('new', 'ipv4', 'ipv6' or 'both') to create new IPs, 'dynamic' to use a dynamic IP or 'none' for no public IP (new | ipv4 | ipv6 | both | dynamic | none | |
) | +| dynamic-ip-required | | Define if a dynamic IPv4 is required for the Instance. If server has no IPv4, a dynamic one will be allocated. | | tags.{index} | | Server tags | | ipv6 | | Enable IPv6, to be used with routed-ip-enabled=false | | stopped | | Do not start server after its creation | diff --git a/internal/namespaces/instance/v1/custom_ip.go b/internal/namespaces/instance/v1/custom_ip.go index d3c012c396..6ea54a2399 100644 --- a/internal/namespaces/instance/v1/custom_ip.go +++ b/internal/namespaces/instance/v1/custom_ip.go @@ -2,6 +2,7 @@ package instance import ( "context" + "errors" "fmt" "net" "reflect" @@ -190,3 +191,51 @@ func ipDetachCommand() *core.Command { }, } } + +func cleanIPs(api *instance.API, zone scw.Zone, ipIDs []string) []error { + errs := []error(nil) + for _, ipID := range ipIDs { + err := api.DeleteIP(&instance.DeleteIPRequest{ + Zone: zone, + IP: ipID, + }) + if err != nil { + errs = append(errs, err) + } + } + + return errs +} + +func ipIDsFromResponses(resps []*instance.CreateIPResponse) []string { + IDs := make([]string, 0, len(resps)) + for _, resp := range resps { + IDs = append(IDs, resp.IP.ID) + } + + return IDs +} + +// createIPs will create multiple IPs, if one creation fails, all created IPs will be cleaned up. +func createIPs(api *instance.API, reqs []*instance.CreateIPRequest, opts ...scw.RequestOption) ([]string, error) { + resps := make([]*instance.CreateIPResponse, 0, len(reqs)) + for _, req := range reqs { + resp, err := api.CreateIP(req, opts...) + if err != nil { + if len(resps) > 0 { + errs := cleanIPs(api, resps[0].IP.Zone, ipIDsFromResponses(resps)) + if len(errs) > 0 { + cleanErr := errors.Join(errs...) + cleanErr = fmt.Errorf("failed to clean IPs after creation failure: %w", cleanErr) + err = fmt.Errorf("%s: %w", cleanErr, err) + } + } + + return nil, err + } + + resps = append(resps, resp) + } + + return ipIDsFromResponses(resps), nil +} diff --git a/internal/namespaces/instance/v1/custom_server_create.go b/internal/namespaces/instance/v1/custom_server_create.go index eec98d2e35..fbaa677399 100644 --- a/internal/namespaces/instance/v1/custom_server_create.go +++ b/internal/namespaces/instance/v1/custom_server_create.go @@ -26,6 +26,7 @@ type instanceCreateServerRequest struct { RootVolume string AdditionalVolumes []string IP string + DynamicIPRequired *bool Tags []string IPv6 bool Stopped bool @@ -89,9 +90,13 @@ func serverCreateCommand() *core.Command { }, { Name: "ip", - Short: `Either an IP, an IP ID, 'new' to create a new IP, 'dynamic' to use a dynamic IP or 'none' for no public IP (new | dynamic | none | |
)`, + Short: `Either an IP, an IP ID, ('new', 'ipv4', 'ipv6' or 'both') to create new IPs, 'dynamic' to use a dynamic IP or 'none' for no public IP (new | ipv4 | ipv6 | both | dynamic | none | |
)`, Default: core.DefaultValueSetter("new"), }, + { + Name: "dynamic-ip-required", + Short: "Define if a dynamic IPv4 is required for the Instance. If server has no IPv4, a dynamic one will be allocated.", + }, { Name: "tags.{index}", Short: "Server tags", @@ -211,6 +216,7 @@ func instanceServerCreateRun(ctx context.Context, argsI interface{}) (i interfac AddEnableIPv6(scw.BoolPtr(args.IPv6)). AddTags(args.Tags). AddRoutedIPEnabled(args.RoutedIPEnabled). + AddDynamicIPRequired(args.DynamicIPRequired). AddAdminPasswordEncryptionSSHKeyID(args.AdminPasswordEncryptionSSHKeyID). AddBootType(args.BootType). AddSecurityGroup(args.SecurityGroupID). @@ -240,9 +246,9 @@ func instanceServerCreateRun(ctx context.Context, argsI interface{}) (i interfac return nil, err } - createReq, createIPReq := serverBuilder.Build() + createReq, createIPReqs := serverBuilder.Build() postCreationSetup := serverBuilder.BuildPostCreationSetup() - needIPCreation := createIPReq != nil + needIPCreation := len(createIPReqs) > 0 // // IP creation @@ -252,12 +258,13 @@ func instanceServerCreateRun(ctx context.Context, argsI interface{}) (i interfac if needIPCreation { logger.Debugf("creating IP") - ipRes, err := apiInstance.CreateIP(createIPReq) + ipIDs, err := createIPs(apiInstance, createIPReqs) if err != nil { - return nil, fmt.Errorf("error while creating your public IP: %s", err) + return nil, fmt.Errorf("error while creating your public IPs: %s", err) } - createReq.PublicIP = scw.StringPtr(ipRes.IP.ID) - logger.Debugf("IP created: %s", createReq.PublicIP) + + createReq.PublicIPs = scw.StringsPtr(ipIDs) + logger.Debugf("IPs created: %s", strings.Join(ipIDs, ", ")) } // @@ -266,15 +273,13 @@ func instanceServerCreateRun(ctx context.Context, argsI interface{}) (i interfac logger.Debugf("creating server") serverRes, err := apiInstance.CreateServer(createReq) if err != nil { - if needIPCreation && createReq.PublicIP != nil { + if needIPCreation && createReq.PublicIPs != nil { // Delete the created IP - logger.Debugf("deleting created IP: %s", createReq.PublicIP) - err := apiInstance.DeleteIP(&instance.DeleteIPRequest{ - Zone: args.Zone, - IP: *createReq.PublicIP, - }) - if err != nil { - logger.Warningf("cannot delete the create IP %s: %s.", createReq.PublicIP, err) + formattedIPs := strings.Join(*createReq.PublicIPs, ", ") + logger.Debugf("deleting created IPs: %s", formattedIPs) + errs := cleanIPs(apiInstance, createReq.Zone, *createReq.PublicIPs) + if len(errs) > 0 { + logger.Warningf("cannot delete created IPs %s: %s.", formattedIPs, errors.Join(errs...)) } } diff --git a/internal/namespaces/instance/v1/custom_server_create_builder.go b/internal/namespaces/instance/v1/custom_server_create_builder.go index 10c0c5fb55..bf0a29c30b 100644 --- a/internal/namespaces/instance/v1/custom_server_create_builder.go +++ b/internal/namespaces/instance/v1/custom_server_create_builder.go @@ -21,8 +21,8 @@ import ( type ServerBuilder struct { // createdReq is the request being built createReq *instance.CreateServerRequest - // createIPReq is filled with a request if an IP is needed - createIPReq *instance.CreateIPRequest + // createIPReqs is filled with requests if one or more IP are needed + createIPReqs []*instance.CreateIPRequest // volumes is the list of requested volumes volumes []*VolumeBuilder @@ -98,6 +98,14 @@ func (sb *ServerBuilder) AddRoutedIPEnabled(routedIPEnabled *bool) *ServerBuilde return sb } +func (sb *ServerBuilder) AddDynamicIPRequired(dynamicIPRequired *bool) *ServerBuilder { + if dynamicIPRequired != nil { + sb.createReq.DynamicIPRequired = dynamicIPRequired + } + + return sb +} + func (sb *ServerBuilder) AddAdminPasswordEncryptionSSHKeyID(adminPasswordEncryptionSSHKeyID *string) *ServerBuilder { if adminPasswordEncryptionSSHKeyID != nil { sb.createReq.AdminPasswordEncryptionSSHKeyID = adminPasswordEncryptionSSHKeyID @@ -128,18 +136,6 @@ func (sb *ServerBuilder) rootVolumeIsSBS() bool { return rootVolume.VolumeType == instance.VolumeVolumeTypeSbsVolume } -// defaultIPType returns the default IP type when created by the CLI. Used for ServerBuilder.AddIP -func (sb *ServerBuilder) defaultIPType() instance.IPType { - if sb.createReq.RoutedIPEnabled != nil { //nolint: staticcheck // Field is deprecated but still supported - if *sb.createReq.RoutedIPEnabled { //nolint: staticcheck // Field is deprecated but still supported - return instance.IPTypeRoutedIPv4 - } - return instance.IPTypeNat - } - - return "" -} - func (sb *ServerBuilder) marketplaceImageType() marketplace.LocalImageType { if sb.rootVolumeIsSBS() { return marketplace.LocalImageTypeInstanceSbs @@ -195,12 +191,28 @@ func (sb *ServerBuilder) AddImage(image string) (*ServerBuilder, error) { // - "none" func (sb *ServerBuilder) AddIP(ip string) (*ServerBuilder, error) { switch { - case ip == "" || ip == "new": - sb.createIPReq = &instance.CreateIPRequest{ + case ip == "" || ip == "new" || ip == "ipv4": + sb.createIPReqs = []*instance.CreateIPRequest{{ Zone: sb.createReq.Zone, Project: sb.createReq.Project, - Type: sb.defaultIPType(), - } + Type: instance.IPTypeRoutedIPv4, + }} + case ip == "ipv6": + sb.createIPReqs = []*instance.CreateIPRequest{{ + Zone: sb.createReq.Zone, + Project: sb.createReq.Project, + Type: instance.IPTypeRoutedIPv6, + }} + case ip == "both": + sb.createIPReqs = []*instance.CreateIPRequest{{ + Zone: sb.createReq.Zone, + Project: sb.createReq.Project, + Type: instance.IPTypeRoutedIPv4, + }, { + Zone: sb.createReq.Zone, + Project: sb.createReq.Project, + Type: instance.IPTypeRoutedIPv6, + }} case validation.IsUUID(ip): sb.createReq.PublicIP = scw.StringPtr(ip) case net.ParseIP(ip) != nil: @@ -219,7 +231,7 @@ func (sb *ServerBuilder) AddIP(ip string) (*ServerBuilder, error) { case ip == "none": sb.createReq.DynamicIPRequired = scw.BoolPtr(false) default: - return sb, fmt.Errorf(`invalid IP "%s", should be either 'new', 'dynamic', 'none', an IP address ID or a reserved flexible IP address`, ip) + return sb, fmt.Errorf(`invalid IP "%s", should be either 'new', 'ipv4', 'ipv6', 'both', 'dynamic', 'none', an IP address ID or a reserved flexible IP address`, ip) } return sb, nil @@ -351,8 +363,8 @@ func (sb *ServerBuilder) Validate() error { return sb.ValidateVolumes() } -func (sb *ServerBuilder) Build() (*instance.CreateServerRequest, *instance.CreateIPRequest) { - return sb.createReq, sb.createIPReq +func (sb *ServerBuilder) Build() (*instance.CreateServerRequest, []*instance.CreateIPRequest) { + return sb.createReq, sb.createIPReqs } type PostServerCreationSetupFunc func(ctx context.Context, server *instance.Server) error diff --git a/internal/namespaces/instance/v1/custom_server_create_test.go b/internal/namespaces/instance/v1/custom_server_create_test.go index 2f442253ce..fd38689156 100644 --- a/internal/namespaces/instance/v1/custom_server_create_test.go +++ b/internal/namespaces/instance/v1/custom_server_create_test.go @@ -402,6 +402,41 @@ func Test_CreateServer(t *testing.T) { ), AfterFunc: deleteServerAfterFunc(), })) + + t.Run("with ipv6 and dynamic ip", core.Test(&core.TestConfig{ + Commands: instance.GetCommands(), + Cmd: "scw instance server create image=ubuntu_bionic dynamic-ip-required=true ip=ipv6 -w", // IPv6 is created at runtime + Check: core.TestCheckCombine( + core.TestCheckExitCode(0), + func(t *testing.T, ctx *core.CheckFuncCtx) { + t.Helper() + assert.NotNil(t, ctx.Result, "server is nil") + server := ctx.Result.(*instanceSDK.Server) + assert.Len(t, server.PublicIPs, 2) + assert.Equal(t, instanceSDK.ServerIPIPFamilyInet, server.PublicIPs[0].Family) + assert.True(t, server.PublicIPs[0].Dynamic) + assert.Equal(t, instanceSDK.ServerIPIPFamilyInet6, server.PublicIPs[1].Family) + }, + ), + AfterFunc: deleteServerAfterFunc(), + })) + + t.Run("with ipv6 and ipv4", core.Test(&core.TestConfig{ + Commands: instance.GetCommands(), + Cmd: "scw instance server create image=ubuntu_bionic ip=both -w", // IPv6 is created at runtime + Check: core.TestCheckCombine( + core.TestCheckExitCode(0), + func(t *testing.T, ctx *core.CheckFuncCtx) { + t.Helper() + assert.NotNil(t, ctx.Result, "server is nil") + server := ctx.Result.(*instanceSDK.Server) + assert.Len(t, server.PublicIPs, 2) + assert.Equal(t, instanceSDK.ServerIPIPFamilyInet, server.PublicIPs[0].Family) + assert.Equal(t, instanceSDK.ServerIPIPFamilyInet6, server.PublicIPs[1].Family) + }, + ), + AfterFunc: deleteServerAfterFunc(), + })) }) } diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error-invalid-ip.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error-invalid-ip.cassette.yaml index ceefcbd22d..115ab9fb80 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error-invalid-ip.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error-invalid-ip.cassette.yaml @@ -1,82 +1,6 @@ --- version: 1 interactions: -- request: - body: '{"local_images":[{"id":"55202814-315c-499a-a766-689413de411b","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_jammy","type":"instance_local"},{"id":"5cb01f4c-9cd0-4032-8ce6-325c458df811","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"],"label":"ubuntu_jammy","type":"instance_local"}],"total_count":2}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - body: '{"local_images":[{"id":"55202814-315c-499a-a766-689413de411b","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_jammy","type":"instance_local"},{"id":"5cb01f4c-9cd0-4032-8ce6-325c458df811","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"],"label":"ubuntu_jammy","type":"instance_local"}],"total_count":2}' - headers: - Content-Length: - - "1183" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Jul 2024 13:02:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4361197f-b1dd-452a-9d3e-b05327e46652 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"image": {"id": "5cb01f4c-9cd0-4032-8ce6-325c458df811", "name": "Ubuntu - 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "dd8f520a-d981-42e4-b336-92ce51d2320d", - "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "unified", "size": 10000000000}, - "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2024-07-03T16:07:39.104245+00:00", - "modification_date": "2024-07-03T16:07:39.104245+00:00", "default_bootscript": - null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/5cb01f4c-9cd0-4032-8ce6-325c458df811 - method: GET - response: - body: '{"image": {"id": "5cb01f4c-9cd0-4032-8ce6-325c458df811", "name": "Ubuntu - 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "dd8f520a-d981-42e4-b336-92ce51d2320d", - "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "unified", "size": 10000000000}, - "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2024-07-03T16:07:39.104245+00:00", - "modification_date": "2024-07-03T16:07:39.104245+00:00", "default_bootscript": - null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' - headers: - Content-Length: - - "620" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Jul 2024 13:02:42 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a95244a3-5102-4224-ab96-d1591a657748 - status: 200 OK - code: 200 - duration: "" - request: body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": @@ -87,52 +11,55 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": - 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 1600000000}]}, "block_bandwidth": 671088640}, "COPARM1-2C-8G": {"alt_names": + [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 83886080}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, + "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": - 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": - 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": - 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 3200000000}]}, "block_bandwidth": 1342177280}, "COPARM1-4C-16G": {"alt_names": + [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 167772160}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, + "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": - 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": + 800000000}]}, "block_bandwidth": 335544320}, "DEV1-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 36.1496, "hourly_price": 0.04952, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 209715200}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": @@ -141,16 +68,17 @@ interactions: true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 300000000}]}, "block_bandwidth": 157286400}, "DEV1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 9.9864, "hourly_price": 0.01368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 104857600}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": @@ -159,25 +87,26 @@ interactions: true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}}, "ENT1-2XL": {"alt_names": [], "arch": "x86_64", "ncpus": 96, - "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 500000000}]}, "block_bandwidth": 262144000}, "ENT1-2XL": {"alt_names": [], "arch": + "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 20000000000}]}}, "ENT1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, - "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}}, "ENT1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": + 20000000000}]}, "block_bandwidth": 21474836480}, "ENT1-L": {"alt_names": [], + "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": + 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}, "block_bandwidth": + 6710886400}, "ENT1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -186,26 +115,27 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}}, "ENT1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": - 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 3200000000}]}, "block_bandwidth": 3355443200}, "ENT1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}}, "ENT1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 64, - "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}}, "ENT1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, - "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 1600000000}]}, "block_bandwidth": 1677721600}, "ENT1-XL": {"alt_names": [], + "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": + 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}, "block_bandwidth": + 13421772800}, "ENT1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], @@ -213,43 +143,46 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}}, "ENT1-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 800000000}]}, "block_bandwidth": 838860800}, "ENT1-XXS": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": - 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 400000000}]}, "block_bandwidth": 419430400}, "GP1-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 576.262, "hourly_price": 0.7894, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, + "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": - 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": + 5000000000}]}, "block_bandwidth": 1073741824}, "GP1-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 296.672, "hourly_price": 0.4064, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, + "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": - 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}}, "GP1-VIZ": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 1500000000}]}, "block_bandwidth": 838860800}, "GP1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 149.066, "hourly_price": 0.2042, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 524288000}, "GP1-VIZ": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": @@ -258,26 +191,28 @@ interactions: true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": - 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": + 500000000}]}, "block_bandwidth": 314572800}, "GP1-XL": {"alt_names": [], "arch": + "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 1220.122, "hourly_price": 1.6714, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, + "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": - 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, - "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 10000000000}]}, "block_bandwidth": 2147483648}, "GP1-XS": {"alt_names": [], + "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}, "block_bandwidth": + 314572800}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], @@ -285,17 +220,18 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, - "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, - "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 400000000}]}, "block_bandwidth": 167772160}, "PLAY2-NANO": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 83886080}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": + 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], @@ -303,16 +239,17 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": - 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 100000000}]}, "block_bandwidth": 41943040}, "POP2-16C-64G": {"alt_names": [], + "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": + 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 3200000000}]}, "block_bandwidth": + 3355443200}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -321,34 +258,36 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-2C-8G": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": - 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": - 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 400000000}]}, "block_bandwidth": 419430400}, "POP2-32C-128G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": + 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}, "block_bandwidth": + 6710886400}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -357,16 +296,17 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": - 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-4C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -375,34 +315,36 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": - 64, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": - 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 800000000}]}, "block_bandwidth": 838860800}, "POP2-64C-256G": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": + 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}, "block_bandwidth": + 13421772800}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, + "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": - 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": + 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-8C-32G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -411,16 +353,17 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": - 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HC-2C-4G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -429,16 +372,17 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": - 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HC-4C-8G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -447,16 +391,17 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": - 8, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": + 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HC-8C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -465,16 +410,17 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": - 2, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HM-2C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -483,16 +429,17 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": - 4, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HM-4C-32G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -501,38 +448,40 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": - 8, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": - 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": - 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6000000000}]}}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": - 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HM-8C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], + 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}}}}' + 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": + 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10000000000}]}, "block_bandwidth": 838860800}, "POP2-HN-3": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": + 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 3000000000}]}, "block_bandwidth": + 419430400}}}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -545,52 +494,55 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": - 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 1600000000}]}, "block_bandwidth": 671088640}, "COPARM1-2C-8G": {"alt_names": + [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 83886080}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, + "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": - 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": - 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": - 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 3200000000}]}, "block_bandwidth": 1342177280}, "COPARM1-4C-16G": {"alt_names": + [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 167772160}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, + "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": - 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 36.1496, "hourly_price": 0.04952, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": + 800000000}]}, "block_bandwidth": 335544320}, "DEV1-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 36.1496, "hourly_price": 0.04952, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 209715200}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": @@ -599,16 +551,17 @@ interactions: true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 300000000}]}, "block_bandwidth": 157286400}, "DEV1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 9.9864, "hourly_price": 0.01368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 104857600}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": @@ -617,25 +570,26 @@ interactions: true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}}, "ENT1-2XL": {"alt_names": [], "arch": "x86_64", "ncpus": 96, - "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 500000000}]}, "block_bandwidth": 262144000}, "ENT1-2XL": {"alt_names": [], "arch": + "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 20000000000}]}}, "ENT1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, - "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}}, "ENT1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": + 20000000000}]}, "block_bandwidth": 21474836480}, "ENT1-L": {"alt_names": [], + "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": + 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}, "block_bandwidth": + 6710886400}, "ENT1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -644,26 +598,27 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}}, "ENT1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": - 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 3200000000}]}, "block_bandwidth": 3355443200}, "ENT1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}}, "ENT1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 64, - "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}}, "ENT1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, - "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 1600000000}]}, "block_bandwidth": 1677721600}, "ENT1-XL": {"alt_names": [], + "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": + 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}, "block_bandwidth": + 13421772800}, "ENT1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], @@ -671,43 +626,46 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}}, "ENT1-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 800000000}]}, "block_bandwidth": 838860800}, "ENT1-XXS": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": - 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 400000000}]}, "block_bandwidth": 419430400}, "GP1-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 576.262, "hourly_price": 0.7894, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, + "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 5000000000}]}}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": - 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": + 5000000000}]}, "block_bandwidth": 1073741824}, "GP1-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 296.672, "hourly_price": 0.4064, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, + "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": - 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}}, "GP1-VIZ": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 1500000000}]}, "block_bandwidth": 838860800}, "GP1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 149.066, "hourly_price": 0.2042, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 524288000}, "GP1-VIZ": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": @@ -716,26 +674,28 @@ interactions: true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": - 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": + 500000000}]}, "block_bandwidth": 314572800}, "GP1-XL": {"alt_names": [], "arch": + "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 1220.122, "hourly_price": 1.6714, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, + "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10000000000}]}}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": - 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, - "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 10000000000}]}, "block_bandwidth": 2147483648}, "GP1-XS": {"alt_names": [], + "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}, "block_bandwidth": + 314572800}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], @@ -743,17 +703,18 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, - "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, - "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 400000000}]}, "block_bandwidth": 167772160}, "PLAY2-NANO": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 83886080}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": + 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], @@ -761,16 +722,17 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": - 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 100000000}]}, "block_bandwidth": 41943040}, "POP2-16C-64G": {"alt_names": [], + "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": + 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 3200000000}]}, "block_bandwidth": + 3355443200}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -779,34 +741,36 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-2C-8G": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": - 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": - 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": - 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 400000000}]}, "block_bandwidth": 419430400}, "POP2-32C-128G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": + 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}, "block_bandwidth": + 6710886400}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -815,16 +779,17 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": - 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-4C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -833,34 +798,36 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": - 64, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": - 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": - 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 800000000}]}, "block_bandwidth": 838860800}, "POP2-64C-256G": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": + 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}, "block_bandwidth": + 13421772800}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, + "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": - 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": + 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-8C-32G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -869,16 +836,17 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": - 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HC-2C-4G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -887,16 +855,17 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": - 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HC-4C-8G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -905,34 +874,36 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": - 8, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": + 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HC-8C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": - 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3200000000}]}}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": - 2, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HM-2C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -941,16 +912,17 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6400000000}]}}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": - 4, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": - 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 800000000}]}}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HM-4C-32G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": @@ -959,48 +931,50 @@ interactions: false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 12800000000}]}}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": - 8, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": - {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": - 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": - 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1600000000}]}}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": - 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": - 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 6000000000}]}}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": - 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HM-8C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], + 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": - 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 3000000000}]}}}}' + 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": + 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10000000000}]}, "block_bandwidth": 838860800}, "POP2-HN-3": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": + 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 3000000000}]}, "block_bandwidth": + 419430400}}}' headers: Content-Length: - - "38026" + - "39559" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 05 Jul 2024 13:02:42 GMT + - Wed, 23 Oct 2024 11:11:46 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1008,59 +982,88 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45732f32-7dd3-47d2-bf6d-f135d5c237d0 + - 875a6524-27e2-424c-91e7-01baa7771122 X-Total-Count: - - "66" + - "69" status: 200 OK code: 200 duration: "" - request: - body: '{"servers": {"PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, - "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + body: '{"servers": {"POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 5000000000}]}, "block_bandwidth": 838860800}, "PRO2-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": + 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6000000000}]}, "block_bandwidth": 2097152000}, "PRO2-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": + 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3000000000}]}, "block_bandwidth": 1048576000}, "PRO2-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": - 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 1500000000}]}, "block_bandwidth": 524288000}, "PRO2-XS": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 700000000}]}}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 700000000}]}, "block_bandwidth": 262144000}, "PRO2-XXS": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 350000000}]}}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, - "ram": 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 350000000}]}, "block_bandwidth": 131072000}, "RENDER-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 907.098, "hourly_price": 1.2426, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, + "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": - 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 1000000000}]}, "block_bandwidth": 2147483648}, "STARDUST1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 3.3507, "hourly_price": 0.00459, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}, "block_bandwidth": + 52428800}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": @@ -1069,17 +1072,18 @@ interactions: true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "START1-M": - {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, - "mig_profile": null, "volumes_constraint": {"min_size": 100000000000, "max_size": - 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 41943040}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": + 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 300000000}]}, "block_bandwidth": + 41943040}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": @@ -1088,17 +1092,18 @@ interactions: true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, - "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 25000000000, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": - 6, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 200000000}]}, "block_bandwidth": 41943040}, "START1-XS": {"alt_names": [], "arch": + "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}, "block_bandwidth": + 41943040}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, + "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 18.0164, "hourly_price": 0.02468, @@ -1106,18 +1111,19 @@ interactions: "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "VC1M": - {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, - "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 100000000000, - "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, - "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": - 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 41943040}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, + "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 11.3515, "hourly_price": 0.01555, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 41943040}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, + "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": @@ -1125,37 +1131,38 @@ interactions: true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, - "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 500000000000, "max_size": 1000000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + 200000000}]}, "block_bandwidth": 41943040}, "X64-120GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, - "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + 1000000000}]}, "block_bandwidth": 41943040}, "X64-15GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 250000000}]}}, "X64-30GB": - {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, - "mig_profile": null, "volumes_constraint": {"min_size": 300000000000, "max_size": - 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, - "ram": 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + null}, {"internal_bandwidth": null, "internet_bandwidth": 250000000}]}, "block_bandwidth": + 41943040}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 32212254720, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 300000000000, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 86.9138, "hourly_price": 0.11906, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}, "block_bandwidth": + 41943040}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": + 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": @@ -1163,60 +1170,90 @@ interactions: true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 1000000000}]}}}}' + null}, {"internal_bandwidth": null, "internet_bandwidth": 1000000000}]}, "block_bandwidth": + 41943040}}}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.2; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: - body: '{"servers": {"PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, - "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + body: '{"servers": {"POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 5000000000}]}, "block_bandwidth": 838860800}, "PRO2-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": + 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6000000000}]}, "block_bandwidth": 2097152000}, "PRO2-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": + 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3000000000}]}, "block_bandwidth": 1048576000}, "PRO2-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1500000000}]}}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": - 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 1500000000}]}, "block_bandwidth": 524288000}, "PRO2-XS": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 700000000}]}}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": - 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 700000000}]}, "block_bandwidth": 262144000}, "PRO2-XXS": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 350000000}]}}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, - "ram": 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 350000000}]}, "block_bandwidth": 131072000}, "RENDER-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 907.098, "hourly_price": 1.2426, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, + "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": - 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 1000000000}]}, "block_bandwidth": 2147483648}, "STARDUST1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 3.3507, "hourly_price": 0.00459, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}, "block_bandwidth": + 52428800}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": @@ -1225,17 +1262,18 @@ interactions: true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "START1-M": - {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, - "mig_profile": null, "volumes_constraint": {"min_size": 100000000000, "max_size": - 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 41943040}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": + 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 300000000}]}, "block_bandwidth": + 41943040}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": @@ -1244,17 +1282,18 @@ interactions: true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, - "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 25000000000, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": - 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": - false, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": - 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 100000000}]}}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": - 6, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 200000000}]}, "block_bandwidth": 41943040}, "START1-XS": {"alt_names": [], "arch": + "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}, "block_bandwidth": + 41943040}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, + "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 18.0164, "hourly_price": 0.02468, @@ -1262,18 +1301,19 @@ interactions: "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "VC1M": - {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, - "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 100000000000, - "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, - "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": - ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": - 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 41943040}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, + "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 11.3515, "hourly_price": 0.01555, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 41943040}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, + "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": @@ -1281,37 +1321,38 @@ interactions: true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, - "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 500000000000, "max_size": 1000000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + 200000000}]}, "block_bandwidth": 41943040}, "X64-120GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1000000000}]}}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, - "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": - 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + 1000000000}]}, "block_bandwidth": 41943040}, "X64-15GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 250000000}]}}, "X64-30GB": - {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, - "mig_profile": null, "volumes_constraint": {"min_size": 300000000000, "max_size": - 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": - 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], - "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, - "ram": 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + null}, {"internal_bandwidth": null, "internet_bandwidth": 250000000}]}, "block_bandwidth": + 41943040}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 32212254720, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 300000000000, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 86.9138, "hourly_price": 0.11906, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}, "block_bandwidth": + 41943040}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": + 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": @@ -1319,21 +1360,22 @@ interactions: true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 1000000000}]}}}}' + null}, {"internal_bandwidth": null, "internet_bandwidth": 1000000000}]}, "block_bandwidth": + 41943040}}}' headers: Content-Length: - - "12534" + - "15351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 05 Jul 2024 13:02:42 GMT + - Wed, 23 Oct 2024 11:11:47 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1341,9 +1383,115 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7c68a57-e81f-42e5-8816-78cd6d0105c1 + - d7900a03-e7e8-403b-a9a1-d9db0e6c7b2e X-Total-Count: - - "66" + - "69" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"local_images":[{"id":"2982a1c0-be7e-4114-af3d-a8af8aa7aec5", "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_jammy", "type":"instance_local"}, {"id":"bc50e86c-a6c7-401a-8fbb-2ef17ce87aee", + "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"], + "label":"ubuntu_jammy", "type":"instance_local"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + body: '{"local_images":[{"id":"2982a1c0-be7e-4114-af3d-a8af8aa7aec5", "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_jammy", "type":"instance_local"}, {"id":"bc50e86c-a6c7-401a-8fbb-2ef17ce87aee", + "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"], + "label":"ubuntu_jammy", "type":"instance_local"}], "total_count":2}' + headers: + Content-Length: + - "1300" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 11:11:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 045fcec2-15a4-4d5c-ae0d-070bda32beae + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"image": {"id": "bc50e86c-a6c7-401a-8fbb-2ef17ce87aee", "name": "Ubuntu + 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "f1efdd5c-375b-431e-ac06-daaf1518369b", + "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2024-10-07T11:39:08.941837+00:00", + "modification_date": "2024-10-07T11:39:08.941837+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/bc50e86c-a6c7-401a-8fbb-2ef17ce87aee + method: GET + response: + body: '{"image": {"id": "bc50e86c-a6c7-401a-8fbb-2ef17ce87aee", "name": "Ubuntu + 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "f1efdd5c-375b-431e-ac06-daaf1518369b", + "name": "Ubuntu 22.04 Jammy Jellyfish", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2024-10-07T11:39:08.941837+00:00", + "modification_date": "2024-10-07T11:39:08.941837+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "620" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 11:11:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 605a592e-0173-4d54-89d7-9909e9003b4c status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error-invalid-ip.golden b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error-invalid-ip.golden index 2c9f3847f0..c48c8677c2 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error-invalid-ip.golden +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error-invalid-ip.golden @@ -1,7 +1,7 @@ 🎲🎲🎲 EXIT CODE: 1 🎲🎲🎲 🟥🟥🟥 STDERR️️ 🟥🟥🟥️ -Invalid IP "yo", should be either 'new', 'dynamic', 'none', an IP address ID or a reserved flexible IP address +Invalid IP "yo", should be either 'new', 'ipv4', 'ipv6', 'both', 'dynamic', 'none', an IP address ID or a reserved flexible IP address 🟥🟥🟥 JSON STDERR 🟥🟥🟥 { - "error": "invalid IP \"yo\", should be either 'new', 'dynamic', 'none', an IP address ID or a reserved flexible IP address" + "error": "invalid IP \"yo\", should be either 'new', 'ipv4', 'ipv6', 'both', 'dynamic', 'none', an IP address ID or a reserved flexible IP address" } diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-ips-with-ipv6-and-dynamic-ip.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-ips-with-ipv6-and-dynamic-ip.cassette.yaml new file mode 100644 index 0000000000..3cfa2040f8 --- /dev/null +++ b/internal/namespaces/instance/v1/testdata/test-create-server-ips-with-ipv6-and-dynamic-ip.cassette.yaml @@ -0,0 +1,3427 @@ +--- +version: 1 +interactions: +- request: + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": + 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": + 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1600000000}]}, "block_bandwidth": 671088640}, "COPARM1-2C-8G": {"alt_names": + [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 83886080}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, + "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 1342177280}, "COPARM1-4C-16G": {"alt_names": + [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 167772160}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, + "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": + 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 800000000}]}, "block_bandwidth": 335544320}, "DEV1-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 36.1496, "hourly_price": 0.04952, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 209715200}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": + 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": + 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 300000000}]}, "block_bandwidth": 157286400}, "DEV1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 9.9864, "hourly_price": 0.01368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 104857600}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 12884901888, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": + 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 500000000}]}, "block_bandwidth": 262144000}, "ENT1-2XL": {"alt_names": [], "arch": + "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": + 20000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 20000000000}]}, "block_bandwidth": 21474836480}, "ENT1-L": {"alt_names": [], + "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": + 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}, "block_bandwidth": + 6710886400}, "ENT1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": + 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "ENT1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": + 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1600000000}]}, "block_bandwidth": 1677721600}, "ENT1-XL": {"alt_names": [], + "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": + 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}, "block_bandwidth": + 13421772800}, "ENT1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": + 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 800000000}]}, "block_bandwidth": 838860800}, "ENT1-XXS": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}, "block_bandwidth": 419430400}, "GP1-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 576.262, "hourly_price": 0.7894, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, + "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 5000000000}]}, "block_bandwidth": 1073741824}, "GP1-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 296.672, "hourly_price": 0.4064, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, + "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": + 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1500000000}]}, "block_bandwidth": 838860800}, "GP1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 149.066, "hourly_price": 0.2042, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 524288000}, "GP1-VIZ": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 72.0, "hourly_price": 0.1, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": + 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 500000000}]}, "block_bandwidth": 314572800}, "GP1-XL": {"alt_names": [], "arch": + "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 1220.122, "hourly_price": 1.6714, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, + "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": + 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10000000000}]}, "block_bandwidth": 2147483648}, "GP1-XS": {"alt_names": [], + "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}, "block_bandwidth": + 314572800}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}, "block_bandwidth": 167772160}, "PLAY2-NANO": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 83886080}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": + 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": + 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 100000000}]}, "block_bandwidth": 41943040}, "POP2-16C-64G": {"alt_names": [], + "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": + 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 3200000000}]}, "block_bandwidth": + 3355443200}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-2C-8G": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, + "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}, "block_bandwidth": 419430400}, "POP2-32C-128G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": + 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}, "block_bandwidth": + 6710886400}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": + 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-4C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": + 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 800000000}]}, "block_bandwidth": 838860800}, "POP2-64C-256G": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": + 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}, "block_bandwidth": + 13421772800}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, + "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": + 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-8C-32G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HC-2C-4G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": + 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HC-4C-8G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": + 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HC-8C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HM-2C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": + 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HM-4C-32G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 549755813888, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": + 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HM-8C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": + 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10000000000}]}, "block_bandwidth": 838860800}, "POP2-HN-3": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": + 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 3000000000}]}, "block_bandwidth": + 419430400}}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + method: GET + response: + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": + 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": + 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1600000000}]}, "block_bandwidth": 671088640}, "COPARM1-2C-8G": {"alt_names": + [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 83886080}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, + "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 1342177280}, "COPARM1-4C-16G": {"alt_names": + [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 167772160}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, + "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": + 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 800000000}]}, "block_bandwidth": 335544320}, "DEV1-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 36.1496, "hourly_price": 0.04952, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 209715200}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": + 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": + 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 300000000}]}, "block_bandwidth": 157286400}, "DEV1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 9.9864, "hourly_price": 0.01368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 104857600}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 12884901888, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": + 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 500000000}]}, "block_bandwidth": 262144000}, "ENT1-2XL": {"alt_names": [], "arch": + "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": + 20000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 20000000000}]}, "block_bandwidth": 21474836480}, "ENT1-L": {"alt_names": [], + "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": + 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}, "block_bandwidth": + 6710886400}, "ENT1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": + 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "ENT1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": + 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1600000000}]}, "block_bandwidth": 1677721600}, "ENT1-XL": {"alt_names": [], + "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": + 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}, "block_bandwidth": + 13421772800}, "ENT1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": + 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 800000000}]}, "block_bandwidth": 838860800}, "ENT1-XXS": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}, "block_bandwidth": 419430400}, "GP1-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 576.262, "hourly_price": 0.7894, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, + "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 5000000000}]}, "block_bandwidth": 1073741824}, "GP1-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 296.672, "hourly_price": 0.4064, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, + "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": + 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1500000000}]}, "block_bandwidth": 838860800}, "GP1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 149.066, "hourly_price": 0.2042, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 524288000}, "GP1-VIZ": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 72.0, "hourly_price": 0.1, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": + 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 500000000}]}, "block_bandwidth": 314572800}, "GP1-XL": {"alt_names": [], "arch": + "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 1220.122, "hourly_price": 1.6714, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, + "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": + 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10000000000}]}, "block_bandwidth": 2147483648}, "GP1-XS": {"alt_names": [], + "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}, "block_bandwidth": + 314572800}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}, "block_bandwidth": 167772160}, "PLAY2-NANO": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 83886080}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": + 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": + 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 100000000}]}, "block_bandwidth": 41943040}, "POP2-16C-64G": {"alt_names": [], + "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": + 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 3200000000}]}, "block_bandwidth": + 3355443200}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-2C-8G": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, + "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}, "block_bandwidth": 419430400}, "POP2-32C-128G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": + 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}, "block_bandwidth": + 6710886400}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": + 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-4C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": + 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 800000000}]}, "block_bandwidth": 838860800}, "POP2-64C-256G": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": + 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}, "block_bandwidth": + 13421772800}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, + "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": + 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-8C-32G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HC-2C-4G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": + 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HC-4C-8G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": + 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HC-8C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HM-2C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": + 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HM-4C-32G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 549755813888, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": + 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HM-8C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": + 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10000000000}]}, "block_bandwidth": 838860800}, "POP2-HN-3": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": + 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 3000000000}]}, "block_bandwidth": + 419430400}}}' + headers: + Content-Length: + - "39559" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:05 GMT + Link: + - ; rel="next",; + rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e2251a19-45dc-42b6-a878-a961439bc90b + X-Total-Count: + - "69" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"servers": {"POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 5000000000}]}, "block_bandwidth": 838860800}, "PRO2-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": + 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6000000000}]}, "block_bandwidth": 2097152000}, "PRO2-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": + 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3000000000}]}, "block_bandwidth": 1048576000}, "PRO2-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": + 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1500000000}]}, "block_bandwidth": 524288000}, "PRO2-XS": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": + 700000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 700000000}]}, "block_bandwidth": 262144000}, "PRO2-XXS": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": + 350000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 350000000}]}, "block_bandwidth": 131072000}, "RENDER-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 907.098, "hourly_price": 1.2426, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, + "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1000000000}]}, "block_bandwidth": 2147483648}, "STARDUST1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 3.3507, "hourly_price": 0.00459, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}, "block_bandwidth": + 52428800}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 41943040}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": + 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 300000000}]}, "block_bandwidth": + 41943040}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}, "block_bandwidth": 41943040}, "START1-XS": {"alt_names": [], "arch": + "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}, "block_bandwidth": + 41943040}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, + "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 18.0164, "hourly_price": 0.02468, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 41943040}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, + "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 11.3515, "hourly_price": 0.01555, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 41943040}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, + "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}, "block_bandwidth": 41943040}, "X64-120GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 310.7902, "hourly_price": 0.42574, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, + "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1000000000}]}, "block_bandwidth": 41943040}, "X64-15GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 44.0336, "hourly_price": 0.06032, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": + 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 250000000}]}, "block_bandwidth": + 41943040}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 32212254720, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 300000000000, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 86.9138, "hourly_price": 0.11906, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}, "block_bandwidth": + 41943040}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": + 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 400000000000, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": + 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1000000000}]}, "block_bandwidth": + 41943040}}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET + response: + body: '{"servers": {"POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 5000000000}]}, "block_bandwidth": 838860800}, "PRO2-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": + 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6000000000}]}, "block_bandwidth": 2097152000}, "PRO2-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": + 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3000000000}]}, "block_bandwidth": 1048576000}, "PRO2-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": + 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1500000000}]}, "block_bandwidth": 524288000}, "PRO2-XS": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": + 700000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 700000000}]}, "block_bandwidth": 262144000}, "PRO2-XXS": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": + 350000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 350000000}]}, "block_bandwidth": 131072000}, "RENDER-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 907.098, "hourly_price": 1.2426, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, + "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1000000000}]}, "block_bandwidth": 2147483648}, "STARDUST1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 3.3507, "hourly_price": 0.00459, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}, "block_bandwidth": + 52428800}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 41943040}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": + 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 300000000}]}, "block_bandwidth": + 41943040}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}, "block_bandwidth": 41943040}, "START1-XS": {"alt_names": [], "arch": + "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}, "block_bandwidth": + 41943040}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, + "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 18.0164, "hourly_price": 0.02468, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 41943040}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, + "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 11.3515, "hourly_price": 0.01555, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 41943040}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, + "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}, "block_bandwidth": 41943040}, "X64-120GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 310.7902, "hourly_price": 0.42574, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, + "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1000000000}]}, "block_bandwidth": 41943040}, "X64-15GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 44.0336, "hourly_price": 0.06032, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": + 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 250000000}]}, "block_bandwidth": + 41943040}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 32212254720, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 300000000000, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 86.9138, "hourly_price": 0.11906, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}, "block_bandwidth": + 41943040}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": + 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 400000000000, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": + 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1000000000}]}, "block_bandwidth": + 41943040}}}' + headers: + Content-Length: + - "15351" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:04 GMT + Link: + - ; rel="first",; + rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fcbea260-57b2-4ef7-812b-cec5f1f83958 + X-Total-Count: + - "69" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"local_images":[{"id":"655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", "arch":"x86_64", + "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "GPU-3070-S", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "POP2-16C-64G", "POP2-2C-8G", "POP2-32C-128G", "POP2-4C-16G", + "POP2-64C-256G", "POP2-8C-32G", "POP2-HC-16C-32G", "POP2-HC-2C-4G", "POP2-HC-32C-64G", + "POP2-HC-4C-8G", "POP2-HC-64C-128G", "POP2-HC-8C-16G", "POP2-HM-16C-128G", "POP2-HM-2C-16G", + "POP2-HM-32C-256G", "POP2-HM-4C-32G", "POP2-HM-64C-512G", "POP2-HM-8C-64G", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS"], "label":"ubuntu_bionic", "type":"instance_local"}], + "total_count":1}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_bionic&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + body: '{"local_images":[{"id":"655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", "arch":"x86_64", + "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "GPU-3070-S", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "POP2-16C-64G", "POP2-2C-8G", "POP2-32C-128G", "POP2-4C-16G", + "POP2-64C-256G", "POP2-8C-32G", "POP2-HC-16C-32G", "POP2-HC-2C-4G", "POP2-HC-32C-64G", + "POP2-HC-4C-8G", "POP2-HC-64C-128G", "POP2-HC-8C-16G", "POP2-HM-16C-128G", "POP2-HM-2C-16G", + "POP2-HM-32C-256G", "POP2-HM-4C-32G", "POP2-HM-64C-512G", "POP2-HM-8C-64G", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS"], "label":"ubuntu_bionic", "type":"instance_local"}], + "total_count":1}' + headers: + Content-Length: + - "779" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 57af6e38-ef40-4cb3-b979-132031e3c7ed + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", "name": "Ubuntu + 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/655aeea7-8a30-418a-bc2e-3c04e3fdc8aa + method: GET + response: + body: '{"image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", "name": "Ubuntu + 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "616" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e873b18-44ad-4200-9822-e3b0749c83ef + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": null, + "prefix": "2001:bc8:710:4a69::/64", "reverse": null, "server": null, "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "zone": "fr-par-1", "type": "routed_ipv6", "state": "detached", "tags": [], + "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + body: '{"ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": null, + "prefix": "2001:bc8:710:4a69::/64", "reverse": null, "server": null, "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "zone": "fr-par-1", "type": "routed_ipv6", "state": "detached", "tags": [], + "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}}' + headers: + Content-Length: + - "374" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:06 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/3ffa6774-124c-4e64-8afb-148c15304b25 + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 34dba85e-c77a-4153-bc9b-8d3bf3e32e74 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:36:06.630557+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:36:06.630557+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2726" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:07 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ff3b1574-8e55-4bfd-8ce1-4cbd4e9044e8 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"task": {"id": "72109e13-9c2a-45c3-84ad-060b7eaa7db8", "description": + "server_batch_poweron", "status": "pending", "href_from": "/servers/5be3956e-3472-4bd4-94ec-5205690a69fc/action", + "href_result": "/servers/5be3956e-3472-4bd4-94ec-5205690a69fc", "started_at": + "2024-10-23T08:36:07.642301+00:00", "terminated_at": null, "progress": 0, "zone": + "par1"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc/action + method: POST + response: + body: '{"task": {"id": "72109e13-9c2a-45c3-84ad-060b7eaa7db8", "description": + "server_batch_poweron", "status": "pending", "href_from": "/servers/5be3956e-3472-4bd4-94ec-5205690a69fc/action", + "href_result": "/servers/5be3956e-3472-4bd4-94ec-5205690a69fc", "started_at": + "2024-10-23T08:36:07.642301+00:00", "terminated_at": null, "progress": 0, "zone": + "par1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:07 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/72109e13-9c2a-45c3-84ad-060b7eaa7db8 + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9cbf70bb-d512-4672-bef6-9df04c615a51 + status: 202 Accepted + code: 202 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "allocating node", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, + "public_ips": [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:07.469595+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "allocating node", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, + "public_ips": [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:07.469595+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2748" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5f482a72-6a85-4c63-98fa-ff0a677db9cd + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:36:07.469595+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": + "301", "node_id": "14"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:36:07.469595+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": + "301", "node_id": "14"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 890b207d-b482-4980-aa92-e251e2cd9146 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:36:07.469595+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": + "301", "node_id": "14"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:36:07.469595+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": + "301", "node_id": "14"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3b77a1d6-d953-4b4d-83fe-a99cdc0f7241 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:36:21.500828+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": + "301", "node_id": "14"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:36:21.500828+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": + "301", "node_id": "14"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3106" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cfc541a6-6894-4242-9704-77a0b5821e77 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:36:21.500828+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": + "301", "node_id": "14"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:36:21.500828+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": + "301", "node_id": "14"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3106" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6abe055b-15f6-41a3-81bc-a04e7faa6e03 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:36:21.500828+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": + "301", "node_id": "14"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:36:21.500828+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": + "301", "node_id": "14"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3106" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 362f314a-c0aa-4af3-a128-fb6eb313d015 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"task": {"id": "d1c4a65c-af67-47a9-ad6a-c3dcb7cd4a4a", "description": + "server_poweroff", "status": "pending", "href_from": "/servers/5be3956e-3472-4bd4-94ec-5205690a69fc/action", + "href_result": "/servers/5be3956e-3472-4bd4-94ec-5205690a69fc", "started_at": + "2024-10-23T08:36:24.281630+00:00", "terminated_at": null, "progress": 0, "zone": + "par1"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc/action + method: POST + response: + body: '{"task": {"id": "d1c4a65c-af67-47a9-ad6a-c3dcb7cd4a4a", "description": + "server_poweroff", "status": "pending", "href_from": "/servers/5be3956e-3472-4bd4-94ec-5205690a69fc/action", + "href_result": "/servers/5be3956e-3472-4bd4-94ec-5205690a69fc", "started_at": + "2024-10-23T08:36:24.281630+00:00", "terminated_at": null, "progress": 0, "zone": + "par1"}}' + headers: + Content-Length: + - "348" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:23 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d1c4a65c-af67-47a9-ad6a-c3dcb7cd4a4a + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2d468aa0-ed51-4977-941d-e80b43e7040c + status: 202 Accepted + code: 202 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "launching poweroff task", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:36:23.910988+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": + "301", "node_id": "14"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "launching poweroff task", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": true, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "6b855c60-209a-4018-93e1-0a08347bb62a"}, {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:36:23.910988+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": + "301", "node_id": "14"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3081" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6f0177ce-e381-4643-b83e-008f76e45ace + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "2838" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a9fbcb7a-cc38-4c1c-82a3-d817f0b8f3a9 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "2838" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 47c6ee38-71e1-44f3-bcdc-d2b7b669da13 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "2838" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a0e66067-6b08-427b-b9cb-d4522cd4ae71 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "2838" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bfcebf29-3fbf-40af-96d6-663a2485d8ac + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "2838" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a5463d20-bcc1-4b76-88e4-328b08e53a63 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "2838" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:36:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 07eb331f-71fb-4d16-b4a9-b3604bb960cb + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "2838" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:37:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f2a4c885-e258-4d7e-aea0-94fb0906e5bc + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "2838" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:37:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3806fc7d-2cfc-44d1-a4a0-8194c513cd7b + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": + "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", + "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": [], + "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": + [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}], "mac_address": "de:00:00:78:39:73", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:23.910988+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": {"zone_id": "par1", "platform_id": "14", "cluster_id": + "35", "hypervisor_id": "301", "node_id": "14"}, "maintenances": [], "allowed_actions": + ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "2838" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:37:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa7db9a4-ecb3-44f8-9727-3f0d48c520b5 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:37:11.096190+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: GET + response: + body: '{"server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-clever-thompson", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "5be3956e-3472-4bd4-94ec-5205690a69fc", "name": "cli-srv-clever-thompson"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T08:36:06.630557+00:00", + "modification_date": "2024-10-23T08:36:06.630557+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "3ffa6774-124c-4e64-8afb-148c15304b25", "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "d338ba81-7851-435a-97b8-c1e04cd48435"}, "public_ips": [{"id": "3ffa6774-124c-4e64-8afb-148c15304b25", + "address": "2001:bc8:710:4a69:dc00:ff:fe78:3973", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3974", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "d338ba81-7851-435a-97b8-c1e04cd48435"}], + "mac_address": "de:00:00:78:39:73", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T08:36:06.630557+00:00", "modification_date": + "2024-10-23T08:37:11.096190+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2726" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:37:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ea39a5cb-68b9-42df-843b-89ac6fb60ec7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5be3956e-3472-4bd4-94ec-5205690a69fc + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:37:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 568ee46c-4e0b-4901-af2d-4c406e36561f + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e3d829cf-ae4d-4b01-9b83-cf90f4d6f41f + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 08:37:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 24ed8b5b-4887-42f9-9802-102721f3aba5 + status: 204 No Content + code: 204 + duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-ips-with-ipv6-and-ipv4.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-ips-with-ipv6-and-ipv4.cassette.yaml new file mode 100644 index 0000000000..d2b5c6df3b --- /dev/null +++ b/internal/namespaces/instance/v1/testdata/test-create-server-ips-with-ipv6-and-ipv4.cassette.yaml @@ -0,0 +1,3749 @@ +--- +version: 1 +interactions: +- request: + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": + 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": + 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1600000000}]}, "block_bandwidth": 671088640}, "COPARM1-2C-8G": {"alt_names": + [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 83886080}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, + "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 1342177280}, "COPARM1-4C-16G": {"alt_names": + [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 167772160}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, + "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": + 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 800000000}]}, "block_bandwidth": 335544320}, "DEV1-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 36.1496, "hourly_price": 0.04952, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 209715200}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": + 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": + 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 300000000}]}, "block_bandwidth": 157286400}, "DEV1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 9.9864, "hourly_price": 0.01368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 104857600}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 12884901888, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": + 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 500000000}]}, "block_bandwidth": 262144000}, "ENT1-2XL": {"alt_names": [], "arch": + "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": + 20000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 20000000000}]}, "block_bandwidth": 21474836480}, "ENT1-L": {"alt_names": [], + "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": + 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}, "block_bandwidth": + 6710886400}, "ENT1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": + 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "ENT1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": + 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1600000000}]}, "block_bandwidth": 1677721600}, "ENT1-XL": {"alt_names": [], + "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": + 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}, "block_bandwidth": + 13421772800}, "ENT1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": + 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 800000000}]}, "block_bandwidth": 838860800}, "ENT1-XXS": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}, "block_bandwidth": 419430400}, "GP1-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 576.262, "hourly_price": 0.7894, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, + "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 5000000000}]}, "block_bandwidth": 1073741824}, "GP1-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 296.672, "hourly_price": 0.4064, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, + "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": + 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1500000000}]}, "block_bandwidth": 838860800}, "GP1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 149.066, "hourly_price": 0.2042, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 524288000}, "GP1-VIZ": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 72.0, "hourly_price": 0.1, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": + 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 500000000}]}, "block_bandwidth": 314572800}, "GP1-XL": {"alt_names": [], "arch": + "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 1220.122, "hourly_price": 1.6714, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, + "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": + 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10000000000}]}, "block_bandwidth": 2147483648}, "GP1-XS": {"alt_names": [], + "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}, "block_bandwidth": + 314572800}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}, "block_bandwidth": 167772160}, "PLAY2-NANO": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 83886080}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": + 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": + 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 100000000}]}, "block_bandwidth": 41943040}, "POP2-16C-64G": {"alt_names": [], + "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": + 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 3200000000}]}, "block_bandwidth": + 3355443200}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-2C-8G": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, + "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}, "block_bandwidth": 419430400}, "POP2-32C-128G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": + 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}, "block_bandwidth": + 6710886400}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": + 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-4C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": + 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 800000000}]}, "block_bandwidth": 838860800}, "POP2-64C-256G": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": + 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}, "block_bandwidth": + 13421772800}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, + "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": + 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-8C-32G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HC-2C-4G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": + 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HC-4C-8G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": + 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HC-8C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HM-2C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": + 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HM-4C-32G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 549755813888, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": + 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HM-8C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": + 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10000000000}]}, "block_bandwidth": 838860800}, "POP2-HN-3": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": + 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 3000000000}]}, "block_bandwidth": + 419430400}}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + method: GET + response: + body: '{"servers": {"COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": + 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": + 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1600000000}]}, "block_bandwidth": 671088640}, "COPARM1-2C-8G": {"alt_names": + [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 83886080}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, + "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 1342177280}, "COPARM1-4C-16G": {"alt_names": + [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 167772160}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, + "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": + 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 800000000}]}, "block_bandwidth": 335544320}, "DEV1-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 36.1496, "hourly_price": 0.04952, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 209715200}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": + 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": + 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 300000000}]}, "block_bandwidth": 157286400}, "DEV1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 9.9864, "hourly_price": 0.01368, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 104857600}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 12884901888, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": + 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 500000000}]}, "block_bandwidth": 262144000}, "ENT1-2XL": {"alt_names": [], "arch": + "x86_64", "ncpus": 96, "ram": 412316860416, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": + 20000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 20000000000}]}, "block_bandwidth": 21474836480}, "ENT1-L": {"alt_names": [], + "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": + 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}, "block_bandwidth": + 6710886400}, "ENT1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": + 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "ENT1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": + 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1600000000}]}, "block_bandwidth": 1677721600}, "ENT1-XL": {"alt_names": [], + "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": + 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}, "block_bandwidth": + 13421772800}, "ENT1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": + 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 800000000}]}, "block_bandwidth": 838860800}, "ENT1-XXS": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}, "block_bandwidth": 419430400}, "GP1-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 576.262, "hourly_price": 0.7894, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, + "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 5000000000}]}, "block_bandwidth": 1073741824}, "GP1-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 296.672, "hourly_price": 0.4064, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, + "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": + 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1500000000}]}, "block_bandwidth": 838860800}, "GP1-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 149.066, "hourly_price": 0.2042, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 524288000}, "GP1-VIZ": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 72.0, "hourly_price": 0.1, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": + 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 500000000}]}, "block_bandwidth": 314572800}, "GP1-XL": {"alt_names": [], "arch": + "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 1220.122, "hourly_price": 1.6714, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, + "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": + 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10000000000}]}, "block_bandwidth": 2147483648}, "GP1-XS": {"alt_names": [], + "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}, "block_bandwidth": + 314572800}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}, "block_bandwidth": 167772160}, "PLAY2-NANO": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 83886080}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": + 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": + 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 100000000}]}, "block_bandwidth": 41943040}, "POP2-16C-64G": {"alt_names": [], + "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": + 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 3200000000}]}, "block_bandwidth": + 3355443200}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-2C-8G": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, + "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}, "block_bandwidth": 419430400}, "POP2-32C-128G": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": + 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}, "block_bandwidth": + 6710886400}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": + 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-4C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": + 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 800000000}]}, "block_bandwidth": 838860800}, "POP2-64C-256G": {"alt_names": + [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": + 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}, "block_bandwidth": + 13421772800}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, + "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": + 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1600000000}]}, "block_bandwidth": 1677721600}, "POP2-8C-32G-WIN": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HC-2C-4G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": + 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HC-4C-8G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": + 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HC-8C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": + 16, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": + 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3200000000}]}, "block_bandwidth": 3355443200}, "POP2-HM-2C-16G": {"alt_names": + [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 419430400}, "POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": + 32, "ram": 274877906944, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": + 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6400000000}]}, "block_bandwidth": 6710886400}, "POP2-HM-4C-32G": {"alt_names": + [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}, "block_bandwidth": + 838860800}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": + 64, "ram": 549755813888, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": + 12800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 12800000000}]}, "block_bandwidth": 13421772800}, "POP2-HM-8C-64G": {"alt_names": + [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": + 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}, "block_bandwidth": + 1677721600}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": + 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10000000000}]}, "block_bandwidth": 838860800}, "POP2-HN-3": {"alt_names": [], + "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "mig_profile": null, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": null, + "baremetal": false, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": false, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": + 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 3000000000}]}, "block_bandwidth": + 419430400}}}' + headers: + Content-Length: + - "39559" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:01 GMT + Link: + - ; rel="next",; + rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5aff610c-7937-4ea7-a1e1-b56780e1b64d + X-Total-Count: + - "69" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"servers": {"POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 5000000000}]}, "block_bandwidth": 838860800}, "PRO2-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": + 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6000000000}]}, "block_bandwidth": 2097152000}, "PRO2-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": + 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3000000000}]}, "block_bandwidth": 1048576000}, "PRO2-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": + 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1500000000}]}, "block_bandwidth": 524288000}, "PRO2-XS": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": + 700000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 700000000}]}, "block_bandwidth": 262144000}, "PRO2-XXS": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": + 350000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 350000000}]}, "block_bandwidth": 131072000}, "RENDER-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 907.098, "hourly_price": 1.2426, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, + "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1000000000}]}, "block_bandwidth": 2147483648}, "STARDUST1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 3.3507, "hourly_price": 0.00459, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}, "block_bandwidth": + 52428800}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 41943040}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": + 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 300000000}]}, "block_bandwidth": + 41943040}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}, "block_bandwidth": 41943040}, "START1-XS": {"alt_names": [], "arch": + "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}, "block_bandwidth": + 41943040}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, + "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 18.0164, "hourly_price": 0.02468, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 41943040}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, + "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 11.3515, "hourly_price": 0.01555, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 41943040}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, + "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}, "block_bandwidth": 41943040}, "X64-120GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 310.7902, "hourly_price": 0.42574, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, + "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1000000000}]}, "block_bandwidth": 41943040}, "X64-15GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 44.0336, "hourly_price": 0.06032, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": + 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 250000000}]}, "block_bandwidth": + 41943040}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 32212254720, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 300000000000, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 86.9138, "hourly_price": 0.11906, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}, "block_bandwidth": + 41943040}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": + 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 400000000000, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": + 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1000000000}]}, "block_bandwidth": + 41943040}}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET + response: + body: '{"servers": {"POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": + 4, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": + 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": + 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 5000000000}]}, "block_bandwidth": 838860800}, "PRO2-L": {"alt_names": [], "arch": + "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": + 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 6000000000}]}, "block_bandwidth": 2097152000}, "PRO2-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": + 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 3000000000}]}, "block_bandwidth": 1048576000}, "PRO2-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": + 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1500000000}]}, "block_bandwidth": 524288000}, "PRO2-XS": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": + 700000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 700000000}]}, "block_bandwidth": 262144000}, "PRO2-XXS": {"alt_names": [], "arch": + "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": + 0, "max_size": 0}}, "scratch_storage_max_size": null, "baremetal": false, "monthly_price": + 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], + "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + false, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": + 350000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 350000000}]}, "block_bandwidth": 131072000}, "RENDER-S": {"alt_names": [], "arch": + "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "mig_profile": null, "volumes_constraint": + {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 907.098, "hourly_price": 1.2426, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, + "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1000000000}]}, "block_bandwidth": 2147483648}, "STARDUST1-S": {"alt_names": + [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": + null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 3.3507, "hourly_price": 0.00459, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}, "block_bandwidth": + 52428800}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": + 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}, "block_bandwidth": + 41943040}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": + 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 300000000}]}, "block_bandwidth": + 41943040}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}, "block_bandwidth": 41943040}, "START1-XS": {"alt_names": [], "arch": + "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}, "block_bandwidth": + 41943040}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, + "ram": 8589934592, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 18.0164, "hourly_price": 0.02468, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 41943040}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, + "ram": 4294967296, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 11.3515, "hourly_price": 0.01555, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}, "block_bandwidth": + 41943040}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, + "ram": 2147483648, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": + 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": null, "baremetal": + false, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": + ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}, "block_bandwidth": 41943040}, "X64-120GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 310.7902, "hourly_price": 0.42574, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, + "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1000000000}]}, "block_bandwidth": 41943040}, "X64-15GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "mig_profile": null, "volumes_constraint": + {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 44.0336, "hourly_price": 0.06032, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": + 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 250000000}]}, "block_bandwidth": + 41943040}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 32212254720, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 300000000000, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 86.9138, "hourly_price": 0.11906, + "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, + "block_storage": true, "hot_snapshots_local_volume": true, "private_network": + 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}, "block_bandwidth": + 41943040}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": + 64424509440, "gpu": 0, "mig_profile": null, "volumes_constraint": {"min_size": + 400000000000, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "scratch_storage_max_size": + null, "baremetal": false, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": + {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": + true, "hot_snapshots_local_volume": true, "private_network": 8}, "network": + {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": + 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1000000000}]}, "block_bandwidth": + 41943040}}}' + headers: + Content-Length: + - "15351" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:01 GMT + Link: + - ; rel="first",; + rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dbd5d940-3f76-4321-af76-05f26689761f + X-Total-Count: + - "69" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"local_images":[{"id":"655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", "arch":"x86_64", + "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "GPU-3070-S", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "POP2-16C-64G", "POP2-2C-8G", "POP2-32C-128G", "POP2-4C-16G", + "POP2-64C-256G", "POP2-8C-32G", "POP2-HC-16C-32G", "POP2-HC-2C-4G", "POP2-HC-32C-64G", + "POP2-HC-4C-8G", "POP2-HC-64C-128G", "POP2-HC-8C-16G", "POP2-HM-16C-128G", "POP2-HM-2C-16G", + "POP2-HM-32C-256G", "POP2-HM-4C-32G", "POP2-HM-64C-512G", "POP2-HM-8C-64G", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS"], "label":"ubuntu_bionic", "type":"instance_local"}], + "total_count":1}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_bionic&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + body: '{"local_images":[{"id":"655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", "arch":"x86_64", + "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "GPU-3070-S", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "POP2-16C-64G", "POP2-2C-8G", "POP2-32C-128G", "POP2-4C-16G", + "POP2-64C-256G", "POP2-8C-32G", "POP2-HC-16C-32G", "POP2-HC-2C-4G", "POP2-HC-32C-64G", + "POP2-HC-4C-8G", "POP2-HC-64C-128G", "POP2-HC-8C-16G", "POP2-HM-16C-128G", "POP2-HM-2C-16G", + "POP2-HM-32C-256G", "POP2-HM-4C-32G", "POP2-HM-64C-512G", "POP2-HM-8C-64G", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS"], "label":"ubuntu_bionic", "type":"instance_local"}], + "total_count":1}' + headers: + Content-Length: + - "779" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 46d07db6-38b4-44d6-8a54-8095d441a786 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", "name": "Ubuntu + 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/655aeea7-8a30-418a-bc2e-3c04e3fdc8aa + method: GET + response: + body: '{"image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", "name": "Ubuntu + 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "616" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6c98118a-bf53-4826-9cba-5291fcca1617 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": "51.15.241.198", + "prefix": null, "reverse": null, "server": null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "zone": "fr-par-1", "type": + "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + body: '{"ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": "51.15.241.198", + "prefix": null, "reverse": null, "server": null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "zone": "fr-par-1", "type": + "routed_ipv4", "state": "detached", "tags": [], "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}}' + headers: + Content-Length: + - "365" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:02 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8e71dc4-62a5-4efd-a7d0-26c425d8427f + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c83d68cc-0f0f-4d79-94ff-1e60e521db0b + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"ip": {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", "address": null, + "prefix": "2001:bc8:710:5417::/64", "reverse": null, "server": null, "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "zone": "fr-par-1", "type": "routed_ipv6", "state": "detached", "tags": [], + "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + body: '{"ip": {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", "address": null, + "prefix": "2001:bc8:710:5417::/64", "reverse": null, "server": null, "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "zone": "fr-par-1", "type": "routed_ipv6", "state": "detached", "tags": [], + "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}}' + headers: + Content-Length: + - "374" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:03 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/db6fafda-3a12-403d-8c9c-1a1cb1c315ba + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 36305581-1f5f-4824-9052-596259fbfd13 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": "51.15.241.198", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, + "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": "51.15.241.198", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, + {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "bc5ed332-e485-42d9-b78e-231f327b6e16"}], "mac_address": "de:00:00:78:3b:2d", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": "51.15.241.198", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, + "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": "51.15.241.198", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, + {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "bc5ed332-e485-42d9-b78e-231f327b6e16"}], "mac_address": "de:00:00:78:3b:2d", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2950" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:04 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 40e8c2fa-52e5-4bca-8eb6-36fc941ef3f7 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"task": {"id": "69f0980f-3c95-4ca0-a270-578cf9052a2b", "description": + "server_batch_poweron", "status": "pending", "href_from": "/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c/action", + "href_result": "/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c", "started_at": + "2024-10-23T09:02:05.051822+00:00", "terminated_at": null, "progress": 0, "zone": + "par1"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c/action + method: POST + response: + body: '{"task": {"id": "69f0980f-3c95-4ca0-a270-578cf9052a2b", "description": + "server_batch_poweron", "status": "pending", "href_from": "/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c/action", + "href_result": "/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c", "started_at": + "2024-10-23T09:02:05.051822+00:00", "terminated_at": null, "progress": 0, "zone": + "par1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:05 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/69f0980f-3c95-4ca0-a270-578cf9052a2b + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 54697929-bdc4-4f5b-ace9-ff2ac5afb543 + status: 202 Accepted + code: 202 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "allocating node", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:04.886246+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "allocating node", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:04.886246+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": + null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2972" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d45f589-0e47-420c-b78b-51aac8fc0194 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:04.886246+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:04.886246+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3072" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a582e914-348c-4898-b51c-a0aea741040c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:04.886246+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:04.886246+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3072" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ce0e867-09ac-4812-8378-0753e36631e4 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:04.886246+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:04.886246+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3072" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 618316a5-1e36-4714-a6a9-de2b193edbd1 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:24.832457+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:24.832457+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3103" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 455f28bb-d6d7-4c9c-b5d5-0b2b8f5a6111 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:24.832457+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:24.832457+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3103" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 407a3bb3-cfa7-46f1-bc1a-46b4d0c485d7 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:24.832457+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:24.832457+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", + "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3103" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e96f5198-05f8-4a36-b7ac-5440c27af816 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"task": {"id": "b3fa23a6-40ed-461b-8764-b4f90f78f523", "description": + "server_poweroff", "status": "pending", "href_from": "/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c/action", + "href_result": "/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c", "started_at": + "2024-10-23T09:02:26.527925+00:00", "terminated_at": null, "progress": 0, "zone": + "par1"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c/action + method: POST + response: + body: '{"task": {"id": "b3fa23a6-40ed-461b-8764-b4f90f78f523", "description": + "server_poweroff", "status": "pending", "href_from": "/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c/action", + "href_result": "/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c", "started_at": + "2024-10-23T09:02:26.527925+00:00", "terminated_at": null, "progress": 0, "zone": + "par1"}}' + headers: + Content-Length: + - "348" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:26 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b3fa23a6-40ed-461b-8764-b4f90f78f523 + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 58bcf9b5-eda9-43af-8b0e-0f210e895335 + status: 202 Accepted + code: 202 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3063" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 457656fd-2596-4f81-b2d8-b7619975f64e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3063" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f298741e-adeb-40ef-bb67-19b825ddd091 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3063" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 92b384c6-55ce-42c2-aaae-805cb3269756 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3063" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b1bec334-3e87-4bc0-824a-aebf5c0de2a5 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3063" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a18d4465-2f36-43a2-a166-27fcd31634ba + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3063" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9da1cc5f-b7c8-4034-b902-369ab787095e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3063" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:02:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b5759202-6410-46b9-a65d-25375d476e4d + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3063" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:03:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a8a5d0d6-bf85-46fd-b2c0-29cd166c7ad1 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3063" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:03:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1f258b4e-2f37-4945-884a-278ac4b24a67 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3063" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:03:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa2c1c3f-d99f-4419-b0bf-994e7d204448 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": + "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", + "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", + "address": "51.15.241.198", "dynamic": false, "gateway": "62.210.0.1", "netmask": + "32", "family": "inet", "provisioning_mode": "dhcp", "tags": [], "state": "attached", + "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", + "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", "dynamic": false, "gateway": + "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": "inet6", "provisioning_mode": + "slaac", "tags": [], "state": "attached", "ipam_id": "bc5ed332-e485-42d9-b78e-231f327b6e16"}], + "mac_address": "de:00:00:78:3b:2d", "routed_ip_enabled": true, "ipv6": null, + "extra_networks": [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": + null, "creation_date": "2024-10-23T09:02:04.009523+00:00", "modification_date": + "2024-10-23T09:02:26.130288+00:00", "bootscript": null, "security_group": {"id": + "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": + {"zone_id": "par1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": + "1302", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "3063" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:03:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f53e286e-a014-476d-9e1d-b0fdceb362e6 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": "51.15.241.198", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, + "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": "51.15.241.198", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, + {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "bc5ed332-e485-42d9-b78e-231f327b6e16"}], "mac_address": "de:00:00:78:3b:2d", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:03:21.646100+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: GET + response: + body: '{"server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-boring-beaver", "image": {"id": "655aeea7-8a30-418a-bc2e-3c04e3fdc8aa", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "27a6459c-efe6-4327-a062-b21a17f3143d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-08-08T13:36:04.744241+00:00", + "modification_date": "2023-08-08T13:36:04.744241+00:00", "default_bootscript": + null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "614cb59b-04ff-4b13-be3d-46a9374b8876", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "7e8061a8-96dc-4f28-9fe1-38d99747b02c", "name": "cli-srv-boring-beaver"}, + "size": 20000000000, "state": "available", "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:02:04.009523+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": "51.15.241.198", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, + "public_ips": [{"id": "c8e71dc4-62a5-4efd-a7d0-26c425d8427f", "address": "51.15.241.198", + "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", + "provisioning_mode": "dhcp", "tags": [], "state": "attached", "ipam_id": "f909aca4-a0fa-47d4-b000-bb1ec0420bdf"}, + {"id": "db6fafda-3a12-403d-8c9c-1a1cb1c315ba", "address": "2001:bc8:710:5417:dc00:ff:fe78:3b2d", + "dynamic": false, "gateway": "fe80::dc00:ff:fe78:3b2e", "netmask": "64", "family": + "inet6", "provisioning_mode": "slaac", "tags": [], "state": "attached", "ipam_id": + "bc5ed332-e485-42d9-b78e-231f327b6e16"}], "mac_address": "de:00:00:78:3b:2d", + "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2024-10-23T09:02:04.009523+00:00", + "modification_date": "2024-10-23T09:03:21.646100+00:00", "bootscript": null, + "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default + security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2950" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:03:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1fe411a0-e2cc-4694-9dfd-2da8ede5d0f9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7e8061a8-96dc-4f28-9fe1-38d99747b02c + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:03:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3ed130f5-df37-4468-b596-95fe85c4e198 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8e71dc4-62a5-4efd-a7d0-26c425d8427f + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:03:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 019a0bd6-f1c5-4be1-8839-e60cae9fdc9e + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/614cb59b-04ff-4b13-be3d-46a9374b8876 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 23 Oct 2024 09:03:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0850365-2032-45a7-bef4-159f66a1e088 + status: 204 No Content + code: 204 + duration: ""