diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-secure-behind-lb-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-secure-behind-lb-usage.golden new file mode 100644 index 0000000000..95d1e9cb8d --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-secure-behind-lb-usage.golden @@ -0,0 +1,21 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ +Secure an instance to only receive traffic from a given LB + +USAGE: + scw instance security-group secure-behind-lb [arg=value ...] + +ARGS: + instance-id ID of the instance server. + lb-id ID of the load balancer you want to import the instance into + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config (fr-par-1 | fr-par-2 | fr-par-3 | nl-ams-1 | nl-ams-2 | pl-waw-1) + [region=fr-par] Region to target. If none is passed will use default region from the config (fr-par | nl-ams | pl-waw) + +FLAGS: + -h, --help help for secure-behind-lb + +GLOBAL FLAGS: + -c, --config string The path to the config file + -D, --debug Enable debug mode + -o, --output string Output format: json or human, see 'scw help output' for more info (default "human") + -p, --profile string The config profile to use diff --git a/cmd/scw/testdata/test-all-usage-instance-security-group-usage.golden b/cmd/scw/testdata/test-all-usage-instance-security-group-usage.golden index b036e3256f..bc3d1d74f1 100644 --- a/cmd/scw/testdata/test-all-usage-instance-security-group-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-security-group-usage.golden @@ -10,12 +10,13 @@ USAGE: scw instance security-group AVAILABLE COMMANDS: - clear Remove all rules of a security group - create Create a security group - delete Delete a security group - get Get a security group - list List security groups - update Update security group + clear Remove all rules of a security group + create Create a security group + delete Delete a security group + get Get a security group + list List security groups + secure-behind-lb Secure an instance to only receive traffic from a given LB + update Update security group FLAGS: -h, --help help for security-group diff --git a/docs/commands/instance.md b/docs/commands/instance.md index ccff10f5cf..ace16407a8 100644 --- a/docs/commands/instance.md +++ b/docs/commands/instance.md @@ -34,6 +34,7 @@ Instance API - [Delete a security group](#delete-a-security-group) - [Get a security group](#get-a-security-group) - [List security groups](#list-security-groups) + - [Secure an instance to only receive traffic from a given LB](#secure-an-instance-to-only-receive-traffic-from-a-given-lb) - [Update security group](#update-security-group) - [Server management commands](#server-management-commands) - [Attach an IP to a server](#attach-an-ip-to-a-server) @@ -1122,6 +1123,28 @@ scw instance security-group list name=foobar +### Secure an instance to only receive traffic from a given LB + + + +**Usage:** + +``` +scw instance security-group secure-behind-lb [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| instance-id | Required | ID of the instance server. | +| lb-id | Required | ID of the load balancer you want to import the instance into | +| zone | Default: `fr-par-1`
One of: `fr-par-1`, `fr-par-2`, `fr-par-3`, `nl-ams-1`, `nl-ams-2`, `pl-waw-1` | Zone to target. If none is passed will use default zone from the config | +| region | Default: `fr-par`
One of: `fr-par`, `nl-ams`, `pl-waw` | Region to target. If none is passed will use default region from the config | + + + ### Update security group Update security group. diff --git a/internal/namespaces/instance/v1/custom.go b/internal/namespaces/instance/v1/custom.go index 3a1020b21c..806d3c6927 100644 --- a/internal/namespaces/instance/v1/custom.go +++ b/internal/namespaces/instance/v1/custom.go @@ -64,6 +64,7 @@ func GetCommands() *core.Commands { serverWaitCommand(), serverAttachIPCommand(), serverDetachIPCommand(), + serverSecureBehindLBSecurityGroupCommand(), )) // diff --git a/internal/namespaces/instance/v1/custom_security_group.go b/internal/namespaces/instance/v1/custom_security_group.go index 958a23a596..fc68e18b44 100644 --- a/internal/namespaces/instance/v1/custom_security_group.go +++ b/internal/namespaces/instance/v1/custom_security_group.go @@ -14,6 +14,7 @@ import ( "github.com/scaleway/scaleway-cli/v2/internal/interactive" "github.com/scaleway/scaleway-cli/v2/internal/terminal" "github.com/scaleway/scaleway-sdk-go/api/instance/v1" + "github.com/scaleway/scaleway-sdk-go/api/lb/v1" "github.com/scaleway/scaleway-sdk-go/logger" "github.com/scaleway/scaleway-sdk-go/scw" ) @@ -497,3 +498,111 @@ func getDefaultProjectSecurityGroup(ctx context.Context, zone scw.Zone) (*instan return nil, fmt.Errorf("%s project does not have a default security group", projectID) } + +func serverSecureBehindLBSecurityGroupCommand() *core.Command { + type secureBehindLBSecurityGroup struct { + InstanceID string + LBID string + Zone scw.Zone + Region scw.Region + } + + return &core.Command{ + Short: `Secure an instance to only receive traffic from a given LB`, + Namespace: "instance", + Resource: "security-group", + Verb: "secure-behind-lb", + ArgsType: reflect.TypeOf(secureBehindLBSecurityGroup{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "instance-id", + Short: "ID of the instance server.", + Required: true, + }, + { + Name: "lb-id", + Short: "ID of the load balancer you want to import the instance into", + Required: true, + }, + core.ZoneArgSpec(scw.ZoneFrPar1, scw.ZoneFrPar2, scw.ZoneFrPar3, scw.ZoneNlAms1, scw.ZoneNlAms2, scw.ZonePlWaw1), + core.RegionArgSpec(scw.RegionFrPar, scw.RegionNlAms, scw.RegionPlWaw), + }, + Run: func(ctx context.Context, argsI interface{}) (i interface{}, err error) { + args := argsI.(*secureBehindLBSecurityGroup) + + LBAPI := lb.NewAPI(core.ExtractClient(ctx)) + loadbalancer, err := LBAPI.GetLB(&lb.GetLBRequest{ + Region: args.Region, + LBID: args.LBID, + }) + if err != nil { + return nil, err + } + + instanceAPI := instance.NewAPI(core.ExtractClient(ctx)) + server, err := instanceAPI.GetServer(&instance.GetServerRequest{ + Zone: args.Zone, + ServerID: args.InstanceID, + }) + if err != nil { + return nil, err + } + + securityGroupRequest := &instance.CreateSecurityGroupRequest{ + Name: server.Server.Name, + Project: &server.Server.Project, + Stateful: false, + InboundDefaultPolicy: "drop", + Zone: args.Zone, + } + + securityGroup, err := instanceAPI.CreateSecurityGroup(securityGroupRequest) + if err != nil { + return nil, err + } + + var ipList []string + for _, ip := range loadbalancer.IP { + ipList = append(ipList, ip.IPAddress) + } + + var ipRange scw.IPNet + err = ipRange.UnmarshalJSON([]byte(`"` + ipList[0] + `"`)) + if err != nil { + return nil, err + } + + ruleRequest := &instance.CreateSecurityGroupRuleRequest{ + SecurityGroupID: securityGroup.SecurityGroup.ID, + Protocol: "ANY", + Direction: "inbound", + Action: "accept", + IPRange: ipRange, + Zone: args.Zone, + } + + rule, err := instanceAPI.CreateSecurityGroupRule(ruleRequest) + if err != nil { + return nil, err + } + + securityGroupTemplate := instance.SecurityGroupTemplate{ + ID: securityGroup.SecurityGroup.ID, + Name: securityGroup.SecurityGroup.Name, + } + + updateServerRequest := &instance.UpdateServerRequest{ + Zone: args.Zone, + ServerID: args.InstanceID, + SecurityGroup: &securityGroupTemplate, + } + + _, err = instanceAPI.UpdateServer(updateServerRequest) + if err != nil { + return nil, err + } + + return rule, nil + }, + } +} diff --git a/internal/namespaces/instance/v1/custom_security_group_test.go b/internal/namespaces/instance/v1/custom_security_group_test.go new file mode 100644 index 0000000000..c95206aab4 --- /dev/null +++ b/internal/namespaces/instance/v1/custom_security_group_test.go @@ -0,0 +1,30 @@ +package instance + +import ( + "testing" + + "github.com/scaleway/scaleway-cli/v2/internal/core" + "github.com/scaleway/scaleway-cli/v2/internal/namespaces/lb/v1" +) + +func Test_SecureBehindLBSecurityGroup(t *testing.T) { + commands := GetCommands() + commands.Merge(lb.GetCommands()) + t.Run("Simple", core.Test(&core.TestConfig{ + Commands: commands, + BeforeFunc: core.BeforeFuncCombine( + core.ExecStoreBeforeCmd("LB", "scw lb lb create name=foobar description=foobar --wait"), + createServer("Server"), + startServer("Server"), + ), + Cmd: "scw instance security-group secure-behind-lb instance-id={{ .Server.ID }} lb-id={{ .LB.ID }}", + Check: core.TestCheckCombine( + core.TestCheckGolden(), + core.TestCheckExitCode(0), + ), + AfterFunc: core.AfterFuncCombine( + deleteServer("Server"), + core.ExecAfterCmd("scw lb lb delete {{ .LB.ID }}"), + ), + })) +} diff --git a/internal/namespaces/instance/v1/testdata/test-secure-behind-lb-security-group-simple.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-secure-behind-lb-security-group-simple.cassette.yaml new file mode 100644 index 0000000000..1b7b5d2145 --- /dev/null +++ b/internal/namespaces/instance/v1/testdata/test-secure-behind-lb-security-group-simple.cassette.yaml @@ -0,0 +1,3477 @@ +--- +version: 1 +interactions: +- request: + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"foobar","description":"foobar","ip_id":null,"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs + method: POST + response: + body: '{"id":"d895db60-adb8-48e9-8375-7a7dc59afc96","name":"foobar","description":"foobar","status":"to_create","instances":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"99ba9d14-143d-470f-b989-d5ce302a958a","ip_address":"51.158.56.141","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"d895db60-adb8-48e9-8375-7a7dc59afc96","reverse":"51-158-56-141.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2022-10-28T14:44:07.191429390Z","updated_at":"2022-10-28T14:44:07.191429390Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "863" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:07 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e6bce44f-fb00-43d8-94e6-477b6c013215 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d895db60-adb8-48e9-8375-7a7dc59afc96 + method: GET + response: + body: '{"id":"d895db60-adb8-48e9-8375-7a7dc59afc96","name":"foobar","description":"foobar","status":"to_create","instances":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"99ba9d14-143d-470f-b989-d5ce302a958a","ip_address":"51.158.56.141","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"d895db60-adb8-48e9-8375-7a7dc59afc96","reverse":"51-158-56-141.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2022-10-28T14:44:07.191429Z","updated_at":"2022-10-28T14:44:07.191429Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "857" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:07 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 02647320-a2bf-4c54-a66e-72bf213ddb6e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d895db60-adb8-48e9-8375-7a7dc59afc96 + method: GET + response: + body: '{"id":"d895db60-adb8-48e9-8375-7a7dc59afc96","name":"foobar","description":"foobar","status":"ready","instances":[{"id":"b914ce06-3b94-4853-b4e1-bfc02bbb3caf","status":"ready","ip_address":"10.70.54.31","created_at":"2022-10-28T14:43:01.576293Z","updated_at":"2022-10-28T14:44:08.110212Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"99ba9d14-143d-470f-b989-d5ce302a958a","ip_address":"51.158.56.141","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"d895db60-adb8-48e9-8375-7a7dc59afc96","reverse":"51-158-56-141.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2022-10-28T14:44:07.191429Z","updated_at":"2022-10-28T14:44:08.693355Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1064" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:09 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5457d52b-f80c-4ee8-a40e-80ba09d751bf + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/marketplace/v1/images?page=1 + method: GET + response: + body: '{"images": [{"id": "0d3a22da-c634-45d6-a7dd-aff402f88b0c", "name": "AlmaLinux + 8", "label": "almalinux_8", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/almalinux.png", + "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux + distribution, governed and driven by the community, focused on long-term stability + and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "e77aa9f0-7faa-4f8b-b16a-de13e3c6cf6d", + "name": "2022-08-31T12:32:15.252524+00:00", "local_images": [{"id": "e03f074c-ac03-4e46-bd38-74cab9a6c6d2", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "b88fe5c2-7501-4d16-bf46-35fccc2592f0", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "415ee02b-90d8-4fe5-a072-33dc7789a7ef", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "fbbd82a3-8b4f-41f3-97ee-8d8ebd1435a1", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "1e542878-7142-4eb7-a416-634c60ce4bac", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "d914d74f-bdd7-4f3d-937d-0e4eba6a4323", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "2a64f814-14b7-46de-a669-03e9892faa72", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-31T12:32:15.314520+00:00", + "modification_date": "2022-08-31T12:32:15.314520+00:00"}], "categories": ["distribution"], + "current_public_version": "e77aa9f0-7faa-4f8b-b16a-de13e3c6cf6d", "creation_date": + "2021-10-05T13:36:52.246490+00:00", "modification_date": "2022-09-08T14:57:35.589884+00:00", + "valid_until": null}, {"id": "486ead23-9656-41d1-aa74-a5a780b2ae1b", "name": + "AlmaLinux 9", "label": "almalinux_9", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/almalinux.png", + "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux + distribution, governed and driven by the community, focused on long-term stability + and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "b43cb96e-f72f-46cf-8e9a-e2afd5fbd377", + "name": "2022-08-31T12:29:38.424013+00:00", "local_images": [{"id": "1bf50c1e-d8ae-4694-ac0f-17c7b0382be7", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "7590dc0d-bf66-4825-b7d7-62222bfb6b8c", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "707f7bb9-1615-4e5b-94ca-7c297184ae52", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "2354e6a3-db71-4dab-90e8-86eda4c280e0", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "93e82fa2-1d53-4c89-b691-b2583e05b188", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "dfcc18aa-2ecf-479f-baf7-4373d2a79387", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "960209c0-a4f1-46dd-8875-1468912c56cd", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-31T12:29:38.495998+00:00", + "modification_date": "2022-08-31T12:29:38.495998+00:00"}], "categories": ["distribution"], + "current_public_version": "b43cb96e-f72f-46cf-8e9a-e2afd5fbd377", "creation_date": + "2022-08-24T09:21:26.315925+00:00", "modification_date": "2022-09-08T14:57:26.063588+00:00", + "valid_until": null}, {"id": "8f60c5dd-e659-48da-97e3-fb7de42195f5", "name": + "Arch Linux", "label": "arch_linux", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/archlinux.png", + "description": "Arch Linux is an independently developed Linux distribution + versatile enough to suit any role.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "fa0ae29c-27d3-4551-bb34-1a659a96d3c2", + "name": "2022-01-24T16:08:58.141740+00:00", "local_images": [{"id": "b57ecf7e-5b57-4ad7-8a57-30584aeb4c26", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "e9543979-6125-473d-9d62-398724da0c7f", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "6849a7e3-65e2-4c53-bfb4-18c157a9cd66", "zone": + "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "6219dbd0-091e-4a64-9891-dfcbb586f6dd", "zone": + "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", "ENT1-L", + "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "a1326795-478b-4ba1-be4b-592ecc100cac", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "77184ad4-f7ba-486c-bdc3-509acae544a8", "zone": + "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS"]}, {"id": "2f64d38e-96d3-47d6-80b3-379893b2803a", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-01-24T16:08:58.198257+00:00", + "modification_date": "2022-01-24T16:08:58.198257+00:00"}], "categories": ["distribution"], + "current_public_version": "fa0ae29c-27d3-4551-bb34-1a659a96d3c2", "creation_date": + "2016-03-07T20:55:32.213089+00:00", "modification_date": "2022-01-26T12:54:47.557608+00:00", + "valid_until": null}, {"id": "dc947de3-ddc7-4056-bc35-d51a316ebbb4", "name": + "CentOS 7.9", "label": "centos_7.9", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", + "description": "The CentOS Project is a community-driven free software effort + focused on delivering a robust open source ecosystem.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "57bc95fc-36a3-4888-9190-3de748f0be05", "name": + "2022-08-02T12:22:33.501120+00:00", "local_images": [{"id": "f0ffdf3d-652b-4807-914c-d924134be96d", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "bf292b1c-ce81-4be9-847d-2818a2308208", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "379fd30b-165e-40a1-831b-708e805c9c3d", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "785cadce-6175-46c5-bf51-f705c04ddd28", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f4b8f6da-5059-453d-9f17-ff912dbeaa58", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "387bf689-4734-4d93-8c73-a9deb28e7b7e", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "12ab2584-34e7-462d-bea6-815382f8ab59", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-02T12:22:33.579561+00:00", + "modification_date": "2022-08-02T12:22:33.579561+00:00"}], "categories": ["distribution"], + "current_public_version": "57bc95fc-36a3-4888-9190-3de748f0be05", "creation_date": + "2019-12-25T00:00:00+00:00", "modification_date": "2022-08-02T13:54:33.608235+00:00", + "valid_until": null}, {"id": "f49dc23e-82d1-48c3-b80e-6c697b1dda92", "name": + "Centos Stream 8", "label": "centos_stream_8", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", + "description": "The CentOS Project is a community-driven free software effort + focused on delivering a robust open source ecosystem.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "6f03b420-70f8-4803-9d47-c85567680163", "name": + "2022-08-31T12:33:51.432075+00:00", "local_images": [{"id": "dc6a9c49-91df-4698-8c92-f13b6f562e55", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "12d71af2-737e-4dbc-8233-1b8d7d2635f5", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "923c9fbc-9962-4caa-814c-f08ec5a1b07d", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "83cf9dba-f892-405a-adf4-4a08dbae390e", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "ac89d789-6c8c-4130-9ea4-bb3ff6a7f7c5", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "519837d0-6607-4cd9-9ac1-ab46d14b4b78", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "aa0e3151-89fb-4093-b591-1ab6d3c47d7c", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-31T12:33:51.492751+00:00", + "modification_date": "2022-08-31T12:33:51.492751+00:00"}], "categories": ["distribution"], + "current_public_version": "6f03b420-70f8-4803-9d47-c85567680163", "creation_date": + "2022-02-03T10:23:22.168515+00:00", "modification_date": "2022-09-08T14:58:09.092228+00:00", + "valid_until": null}, {"id": "cfb3fa01-6406-4be8-9e9d-29daee2582fa", "name": + "Centos Stream 9", "label": "centos_stream_9", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", + "description": "The CentOS Project is a community-driven free software effort + focused on delivering a robust open source ecosystem.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "d0c9bd47-18b6-4f98-90ca-d2278826d3dc", "name": + "2022-08-31T12:35:37.141703+00:00", "local_images": [{"id": "72be36ec-0ffe-4985-8bac-9144c659148a", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "4eacdab0-5b2f-4d9a-b548-7bb2b3297b91", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "47c2fe23-a011-4e9d-abc2-b4e87822da80", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "0c025dbe-0a63-41ed-b074-12ba6df1e81c", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "9279981e-c952-43bf-80fc-c718d8f3de39", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "d8e3b838-e602-4dc1-b89b-cc06de3d3a65", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "dc8fa7cf-6e54-4536-b415-a402834a063c", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-31T12:35:37.204917+00:00", + "modification_date": "2022-08-31T12:35:37.204917+00:00"}], "categories": ["distribution"], + "current_public_version": "d0c9bd47-18b6-4f98-90ca-d2278826d3dc", "creation_date": + "2022-02-03T10:35:17.004309+00:00", "modification_date": "2022-09-08T14:58:18.061292+00:00", + "valid_until": null}, {"id": "213b02cb-3d8d-4967-ba8d-e5767a57574e", "name": + "Debian Bullseye", "label": "debian_bullseye", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", + "description": "Debian is a free operating system, developed by thousands of + volunteers from all over the world who collaborate via the Internet.", "organization": + {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources + Build System"}, "versions": [{"id": "352a2b5a-8c2a-4838-8e9a-c2d68fe592b3", + "name": "2022-08-01T07:58:20.345016+00:00", "local_images": [{"id": "452a24e0-08d2-4765-8dce-5908dc5d42ec", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "c9ad5df7-fd2e-43f5-8798-42013ddea6db", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "5c60aefc-619b-418a-8515-791d0234e9bc", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "2436d2d6-d156-415e-a127-33a18e98bf22", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "0ed661ac-c983-46f2-adfd-366a6f2a4f62", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "3d53bab3-b7f4-4aa7-a5c1-d381d8836bc5", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "934144a6-23c2-4608-ad8f-c85de5d7daac", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-01T07:58:20.412982+00:00", + "modification_date": "2022-08-01T07:58:20.412982+00:00"}], "categories": ["distribution"], + "current_public_version": "352a2b5a-8c2a-4838-8e9a-c2d68fe592b3", "creation_date": + "2021-07-21T09:09:36.581723+00:00", "modification_date": "2022-08-24T09:12:12.838202+00:00", + "valid_until": null}, {"id": "7bdc1afb-231f-486a-9b85-1b0478bc0e4a", "name": + "Debian Buster", "label": "debian_buster", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", + "description": "Debian is a free operating system, developed by thousands of + volunteers from all over the world who collaborate via the Internet.", "organization": + {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources + Build System"}, "versions": [{"id": "d408ce24-729c-43c1-81bd-47cba9e958c2", + "name": "2022-08-01T08:51:13.894592+00:00", "local_images": [{"id": "45c74035-8d0d-42fa-8c92-a7a8ef9389a3", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d1e30dca-af24-4beb-ac5a-aeea7df7bd25", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d5a32923-0ee2-4b58-b7bf-c705d715c77d", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "558cbd57-333e-4d2a-8af8-a10cb8a780a0", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "800a7565-ef02-4b84-89d3-4c35972bd720", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "01cc737c-863b-4855-b584-edacc3dcc9d1", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "430360ce-921d-4a69-aa83-1e472af343dc", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-01T08:51:13.943789+00:00", + "modification_date": "2022-08-01T08:51:13.943789+00:00"}], "categories": ["distribution"], + "current_public_version": "d408ce24-729c-43c1-81bd-47cba9e958c2", "creation_date": + "2019-07-16T13:55:36.377559+00:00", "modification_date": "2022-08-24T09:12:26.573992+00:00", + "valid_until": null}, {"id": "c1b530d8-0ca0-45c4-80db-ba06608287b2", "name": + "Docker", "label": "docker", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/docker.png", + "description": "Docker is an open platform for developers and sysadmins to build, + ship, and run distributed applications.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "ec8864a2-17ef-4e9f-9f1d-d2d07c664540", + "name": "2022-08-02T13:24:22.984334+00:00", "local_images": [{"id": "a7c93067-85bd-4d02-beba-e273ee222a1c", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "394c5ddc-fa73-4f09-9a14-96d8f695a5bf", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "bdb6dea6-f680-4a10-b7de-98c1976d362a", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "c92654ef-c162-48ec-a932-b0a9ff24cffb", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "39b30532-dc6d-4233-ada8-abf7e66f90d2", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "7d285650-aa36-4bf8-851b-fec9fd816475", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "a716c7c5-915c-4147-bff4-c471e80803f0", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-02T13:24:23.050075+00:00", + "modification_date": "2022-08-02T13:24:23.050075+00:00"}], "categories": ["instantapp"], + "current_public_version": "ec8864a2-17ef-4e9f-9f1d-d2d07c664540", "creation_date": + "2016-03-05T15:11:26.847640+00:00", "modification_date": "2022-08-02T14:13:33.687306+00:00", + "valid_until": null}, {"id": "198bbff7-c136-4b9c-9e28-8770df451fc1", "name": + "Fedora 35", "label": "fedora_35", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", + "description": "Fedora is a powerful, flexible operating system that includes + the best and latest datacenter technologies. It puts you in control of all your + infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "f0483d8e-4060-4e17-9196-407b1d4a164d", + "name": "2022-08-31T12:30:22.386891+00:00", "local_images": [{"id": "db8a775a-c3fa-4c33-af70-fb2dfe4641fc", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "69e7a2cf-ab69-46bc-a5b6-c715bb2ee917", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "0f24ed87-bd68-4abb-b976-b01bc0fe0ac6", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "09854681-456e-45c3-8302-94d7823671db", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "903a9a35-a8de-4f65-93d0-b6e3ee82ffc7", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "99ada7d4-f6ee-47f9-8331-729c67139942", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "0c4e6aef-6997-4812-965d-bd395c962d4b", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-31T12:30:22.428984+00:00", + "modification_date": "2022-08-31T12:30:22.428984+00:00"}], "categories": ["distribution"], + "current_public_version": "f0483d8e-4060-4e17-9196-407b1d4a164d", "creation_date": + "2021-11-15T16:12:25.586923+00:00", "modification_date": "2022-09-08T14:57:59.351928+00:00", + "valid_until": null}, {"id": "186859f6-0152-45dd-9eb8-21fc5e8d774e", "name": + "Fedora 36", "label": "fedora_36", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", + "description": "Fedora is a powerful, flexible operating system that includes + the best and latest datacenter technologies. It puts you in control of all your + infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "2f7b4e6b-a1bb-433e-97e7-780d943f6449", + "name": "2022-08-31T12:35:18.118987+00:00", "local_images": [{"id": "6c506772-5960-44be-9c69-e827223b2936", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "c23db5da-c3d5-4c2f-9ffa-c9e329f473b1", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "7e938c82-e085-4db1-b02a-d93ddf5b320b", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "a9d6bf58-0c99-4e6e-a9b3-7c4d100ab871", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "b5ac3d2c-d783-438d-8382-d0709750a280", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "b1cc17e3-189d-4f76-8c25-59f1dcb702d3", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "4ceec4cd-466d-4426-b3fd-a59f7fd7e5b9", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-31T12:35:18.160552+00:00", + "modification_date": "2022-08-31T12:35:18.160552+00:00"}], "categories": ["distribution"], + "current_public_version": "2f7b4e6b-a1bb-433e-97e7-780d943f6449", "creation_date": + "2022-04-14T15:45:29.069701+00:00", "modification_date": "2022-09-08T14:57:45.541788+00:00", + "valid_until": null}, {"id": "233074b9-e2ba-4e78-818e-dd4930ce6bee", "name": + "GitLab", "label": "gitlab", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/gitlab.png", + "description": "GitLab is a web-based Git repository manager with wiki and issue + tracking features.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "4a07b2c4-580d-494a-a4f3-1f4a948899ef", + "name": "2022-04-12T16:03:20.253030+00:00", "local_images": [{"id": "16116d68-f0fb-4212-b607-2378e8bd1868", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "5f065613-1a0e-4437-afd4-907241e89239", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "9d0a7f9a-69e2-4d77-89bc-11b674444285", "zone": + "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", + "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", + "X64-60GB"]}, {"id": "df5eefe6-ed10-4d62-b399-d406dfe5267a", "zone": "fr-par-3", + "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", "ENT1-L", "ENT1-M", + "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "77f44699-ce96-40bc-bd3e-3d0f3bb5012c", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "ac901b21-3413-4629-941d-9ead8b3580f9", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "d0b7a4e4-24d1-48dd-8095-f855f07258c2", "zone": + "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", + "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO"]}], "creation_date": "2022-04-12T16:03:20.334219+00:00", "modification_date": + "2022-04-12T16:03:20.334219+00:00"}], "categories": ["instantapp"], "current_public_version": + "4a07b2c4-580d-494a-a4f3-1f4a948899ef", "creation_date": "2016-03-07T21:06:22.770864+00:00", + "modification_date": "2022-04-14T10:17:31.766785+00:00", "valid_until": null}, + {"id": "7d4a7cb1-1fd5-4a64-920b-c79f47367254", "name": "NextCloud", "label": + "nextcloud", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/nextcloud.png", + "description": "Nextcloud is an open source, self-hosted file share and communication + platform.", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": + "OCS"}, "versions": [{"id": "48f21daa-c029-47e8-a6a0-e741993e05f4", "name": + "2022-08-02T13:44:14.932848+00:00", "local_images": [{"id": "2a6a092a-4ed8-4f9e-85a8-389d7df944c4", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "0d7b84c5-3ca7-4c3a-9d72-e8ce5a4750ec", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "6f8ea99d-190e-4093-888d-750635bd780f", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "191198c7-d050-4413-92c1-4382d5d3ea79", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "95b2934a-d3e5-4237-bb3b-fe402d1d4c12", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "0379ef7e-f4f9-45d9-be58-d795361bf7ec", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "0330d24b-7696-493a-8368-b7847aa3a850", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-02T13:44:15.034566+00:00", + "modification_date": "2022-08-02T13:44:15.034566+00:00"}], "categories": ["instantapp"], + "current_public_version": "48f21daa-c029-47e8-a6a0-e741993e05f4", "creation_date": + "2019-04-16T12:22:56.930842+00:00", "modification_date": "2022-08-02T14:21:40.532179+00:00", + "valid_until": null}, {"id": "b6f4edc8-21e6-4aa2-8f52-1030cf6d4dd8", "name": + "OpenVPN", "label": "openvpn", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/openvpn.png", + "description": "Surf the web in a secure and anonymous way with OpenVPN InstantApp.", + "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "auth-team+ocs-organization@scaleway.com"}, + "versions": [{"id": "d9ae95c0-aed8-4bd1-bf36-03b8fe181312", "name": "2022-08-02T13:39:14.569587+00:00", + "local_images": [{"id": "c6035c71-a888-4a20-a58e-e68efed90195", "zone": "fr-par-3", + "arch": "x86_64", "compatible_commercial_types": ["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-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L"]}, {"id": "bff13efb-f706-416b-8419-ca4a9f191e6e", "zone": "fr-par-2", + "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L"]}, {"id": "72a80e99-65f3-416e-92ab-31b6cef272f9", + "zone": "ams1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S"]}, + {"id": "65e2b80e-7726-4036-8f73-ba9b0d62fc0c", "zone": "pl-waw-1", "arch": "x86_64", + "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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L"]}, {"id": "4548cde2-2820-4dbb-94bd-b3cc7ba6050b", "zone": + "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", + "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L"]}, {"id": "1ef32d62-f749-42eb-93f1-e5e24772636a", + "zone": "par1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S"]}, + {"id": "9eb1f9d3-b29c-46a8-be29-84fa5cdb597c", "zone": "pl-waw-2", "arch": "x86_64", + "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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": + "2022-08-02T13:39:14.635906+00:00", "modification_date": "2022-08-02T13:39:14.635906+00:00"}], + "categories": ["instantapp"], "current_public_version": "d9ae95c0-aed8-4bd1-bf36-03b8fe181312", + "creation_date": "2016-03-07T21:04:57.667667+00:00", "modification_date": "2022-08-02T14:20:01.216697+00:00", + "valid_until": null}, {"id": "1576bf6b-f640-47f2-9117-968419d0546e", "name": + "Rocky Linux 8", "label": "rockylinux_8", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rockylinux.png", + "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, + production-ready Linux.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "0c349ba4-6bd2-4a21-9583-23a6d5a606a1", + "name": "2022-08-31T12:34:20.497794+00:00", "local_images": [{"id": "2fdb1e53-4e14-430e-829d-97e622c61e3b", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "02becb01-5243-458a-b412-b4dd1567f2fe", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "790e8369-0ac0-4de9-9af3-4c9cfd72483e", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "273e72e3-2280-45d3-8a37-abab11b18ba8", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f6cc929d-88e0-4822-b7ff-0075225bc3e5", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "2ae6050c-2bc7-4fff-8465-ef85aa07ad86", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "e2d76d6c-719b-4242-b4cc-2f9e3deb3a8d", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-31T12:34:20.545433+00:00", + "modification_date": "2022-08-31T12:34:20.545433+00:00"}], "categories": ["distribution"], + "current_public_version": "0c349ba4-6bd2-4a21-9583-23a6d5a606a1", "creation_date": + "2021-06-25T10:16:16.254240+00:00", "modification_date": "2022-09-08T14:57:16.190796+00:00", + "valid_until": null}, {"id": "589c35a9-20ce-4ed9-92d7-16dc061be52b", "name": + "Rocky Linux 9", "label": "rockylinux_9", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rockylinux.png", + "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, + production-ready Linux.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "c312f373-968f-4581-bd54-9973f288112f", + "name": "2022-08-31T15:54:54.899956+00:00", "local_images": [{"id": "2e03ce5d-e299-4850-b90a-ae87d8a70fbc", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "1d33159d-e035-4706-b80f-192f56225e63", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d4dde315-b276-4855-be58-929dd3677e1d", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "81ef91df-b246-422f-a4e6-75ce771e0c49", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "e8e8eafc-c436-4370-b49f-88c446bc5d00", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "fda07809-5b62-48cf-b9c8-f5311b381904", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "6cf79197-f700-45e2-8b90-15c748ea1f4e", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-31T15:54:54.952666+00:00", + "modification_date": "2022-08-31T15:54:54.952666+00:00"}], "categories": ["distribution"], + "current_public_version": "c312f373-968f-4581-bd54-9973f288112f", "creation_date": + "2022-08-24T09:26:33.639016+00:00", "modification_date": "2022-09-08T14:57:06.699355+00:00", + "valid_until": null}, {"id": "3f1b9623-71ba-4fe3-b994-27fcdaa850ba", "name": + "Ubuntu 20.04 Focal Fossa", "label": "ubuntu_focal", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", + "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu + Server helps you make the most of your infrastructure.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "1d81e865-956b-45ae-afd0-dd7804e683ec", "name": + "2022-08-02T12:40:12.041628+00:00", "local_images": [{"id": "20134e68-c44e-48e3-b7f0-15bc19af2b54", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d1f46529-6bb0-46b7-8586-91693c5fb7fd", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "fe0dc0a7-ff82-4e2d-b345-72ac2908cfe2", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "44bc838c-c708-49bb-9733-30dc3fd21e0d", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "64dc7755-9499-43af-8b68-b01e10325ee7", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "efef06ff-a323-4d85-9f88-446af084c4cb", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "a55c2862-eb9a-474c-89fe-58cfebb7db78", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-02T12:40:12.135126+00:00", + "modification_date": "2022-08-02T12:40:12.135126+00:00"}], "categories": ["distribution"], + "current_public_version": "1d81e865-956b-45ae-afd0-dd7804e683ec", "creation_date": + "2020-02-17T15:50:48.980694+00:00", "modification_date": "2022-08-02T13:59:55.762819+00:00", + "valid_until": null}, {"id": "1123148c-7660-4cb2-9fd3-7b5b4896f72f", "name": + "Ubuntu 22.04 Jammy Jellyfish", "label": "ubuntu_jammy", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", + "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu + Server helps you make the most of your infrastructure.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "f2a47d71-6500-4179-ae28-2640cf04e72a", "name": + "2022-08-02T12:52:53.540236+00:00", "local_images": [{"id": "bbfc398d-716c-4c92-ba76-89b8ab1e0d5b", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "58d06a87-8fb0-463d-b072-95ca31ef9753", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "b83a8e26-0ed8-48bc-a04b-8da04509a162", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f0cd50be-c174-4231-951d-efaa55f0b014", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "2289fad9-2694-48ab-bb41-f19e4a9a8584", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "6018cdc9-5ca7-4fc4-a900-824937e61730", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "a79f25d0-d607-43ff-9cd4-943121f4d71c", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-02T12:52:53.670767+00:00", + "modification_date": "2022-08-02T12:52:53.670767+00:00"}], "categories": ["distribution"], + "current_public_version": "f2a47d71-6500-4179-ae28-2640cf04e72a", "creation_date": + "2022-04-07T13:35:54.966630+00:00", "modification_date": "2022-08-02T14:06:22.737520+00:00", + "valid_until": null}, {"id": "b381b2bf-804a-4b12-91f6-9f4ff273462f", "name": + "Ubuntu Bionic", "label": "ubuntu_bionic", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", + "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu + Server helps you make the most of your infrastructure.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "94e5ce07-337a-482c-a52a-35d4c507e3a1", "name": + "2022-08-01T08:28:54.290292+00:00", "local_images": [{"id": "1f7c0fcb-49dd-4992-89c0-ffd3b870494a", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "504a1c6f-21cb-4192-bb40-b8a06c6e1f9a", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "9ab13b66-606c-4faa-b216-4c64339a81a6", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "953813ee-516d-4648-b1c3-90f1dfe7fb38", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "66af6663-6620-4d36-9f65-1ebdd9c7a8fd", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "0716d5b3-ef2d-4c2d-a5fb-4b3017974761", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-08-01T08:28:54.340955+00:00", + "modification_date": "2022-08-01T08:28:54.340955+00:00"}], "categories": ["distribution"], + "current_public_version": "94e5ce07-337a-482c-a52a-35d4c507e3a1", "creation_date": + "2018-04-27T14:07:25.221998+00:00", "modification_date": "2022-08-24T09:12:37.849288+00:00", + "valid_until": null}, {"id": "e0808ca5-1e0a-4070-8aff-d2e49e9600c1", "name": + "Ubuntu Bionic ML 10.1", "label": "ubuntu_bionic_ml_10.1", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", + "description": "Ubuntu Bionic for Machine Learning 10.1", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "b8ef9d2a-a561-41e3-866e-d4c460e6ab1a", "name": + "2022-05-11T18:46:33.471537+00:00", "local_images": [{"id": "d1478661-7573-4508-b470-fa936898d45e", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}, + {"id": "9afa1441-9474-4815-8336-ba83a7206a55", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["RENDER-S"]}], "creation_date": "2022-05-11T18:46:33.571454+00:00", + "modification_date": "2022-05-11T18:46:33.571454+00:00"}], "categories": ["Machine + Learning"], "current_public_version": "b8ef9d2a-a561-41e3-866e-d4c460e6ab1a", + "creation_date": "2019-03-06T17:24:56.871317+00:00", "modification_date": "2022-05-11T19:09:37.068277+00:00", + "valid_until": null}, {"id": "7e48e55a-7b46-4e4f-b2d2-6b7316cdca8c", "name": + "Ubuntu Bionic ML 9.2", "label": "ubuntu_bionic_ml_9.2", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", + "description": "Ubuntu Bionic for Machine Learning 9.2", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "a99b7b24-fffe-4865-8cff-3e4f941e9679", "name": + "2022-05-11T18:46:34.452437+00:00", "local_images": [{"id": "207b70f3-7033-45ce-8db8-4724fdeb7fce", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}, + {"id": "9a992904-72bd-46b9-9199-406804321874", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["RENDER-S"]}], "creation_date": "2022-05-11T18:46:34.523551+00:00", + "modification_date": "2022-05-11T18:46:34.523551+00:00"}], "categories": ["Machine + Learning"], "current_public_version": "a99b7b24-fffe-4865-8cff-3e4f941e9679", + "creation_date": "2019-03-06T17:24:29.909001+00:00", "modification_date": "2022-05-11T19:06:22.701292+00:00", + "valid_until": null}, {"id": "4dcc771c-820f-405c-b663-4564bdc2ed56", "name": + "Ubuntu Focal GPU OS 11", "label": "ubuntu_focal_gpu_os_11", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", + "description": "Ubuntu 20.04 Focal Fossa for Nvidia GPU and Machine Learning", + "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances + User Resources Build System"}, "versions": [{"id": "5cff6a19-a5e0-46bb-bcbc-4942c836ca46", + "name": "2022-09-15T19:11:26.000595+00:00", "local_images": [{"id": "d22f119d-400b-4792-9d2c-985be3fe0a2b", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", + "GPU-3070-S"]}, {"id": "04ac2de1-2c99-4cf8-a533-ea92e7809d32", "zone": "fr-par-2", + "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", "GPU-3070-S"]}], + "creation_date": "2022-09-15T19:11:26.061606+00:00", "modification_date": "2022-09-15T19:11:26.061606+00:00"}], + "categories": ["Machine Learning"], "current_public_version": "5cff6a19-a5e0-46bb-bcbc-4942c836ca46", + "creation_date": "2021-11-30T12:37:45.971134+00:00", "modification_date": "2022-09-19T14:10:37.648361+00:00", + "valid_until": null}, {"id": "215a50f9-0ba8-4e9c-a4e7-10caf50e3586", "name": + "WordPress", "label": "wordpress", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/wordpress.png", + "description": "WordPress is the most popular web software you can use to create + a beautiful website or blog.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "6f88f6e8-fc54-4623-b005-174f2017dca7", + "name": "2022-06-28T15:25:04.045693+00:00", "local_images": [{"id": "a03ade29-5fe5-4c49-9c00-384c11d51a1c", + "zone": "par1", "arch": "x86_64", "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-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"]}, {"id": "4b268140-20a9-481e-8f1e-070e8a9ff1ea", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["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-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "a81e5cb5-06ac-4f7d-b211-ccf599d1ab20", + "zone": "nl-ams-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f6930660-64a2-4a14-82c2-c1ce1fc5251a", + "zone": "ams1", "arch": "x86_64", "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-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"]}, {"id": "6bc93205-9ffb-4936-813a-a41e23f8260d", + "zone": "pl-waw-1", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "3a1298f6-2e99-4471-9fcd-eb554a323d32", + "zone": "fr-par-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "e97ff21f-9512-4434-8c90-ae9acf6adbaa", + "zone": "pl-waw-2", "arch": "x86_64", "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-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2022-06-28T15:25:04.081792+00:00", + "modification_date": "2022-06-28T15:25:04.081792+00:00"}], "categories": ["instantapp"], + "current_public_version": "6f88f6e8-fc54-4623-b005-174f2017dca7", "creation_date": + "2016-03-07T21:03:59.783534+00:00", "modification_date": "2022-06-29T13:51:14.993063+00:00", + "valid_until": null}]}' + headers: + Content-Length: + - "87003" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:09 GMT + Link: + - ; rel="last" + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 36aea0d4-7a1d-447a-b010-5cd6adae6a3a + X-Total-Count: + - "23" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c332216b-5ab1-4b4f-97b5-e7499b11b149 + method: GET + response: + body: '{"image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", "name": "Ubuntu + 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "627" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:10 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c070912c-2613-426c-bd4d-c4eb457c2641 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, + "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": + 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "baremetal": false, "monthly_price": 31.39, "hourly_price": + 0.043, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + 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": + 4294967296, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 16.06, "hourly_price": 0.022, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + 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, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 8.03, "hourly_price": 0.011, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + 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": + 12884901888, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 47.45, "hourly_price": 0.065, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + 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, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": + false, "monthly_price": 2452.8, "hourly_price": 3.36, "capabilities": {"boot_types": + ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + false, "placement_groups": true, "block_storage": true, "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, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 817.6, "hourly_price": 1.12, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "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": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 408.8, "hourly_price": 0.56, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "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, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 204.4, "hourly_price": 0.28, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "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, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 1635.2, "hourly_price": 2.24, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "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}]}}, "GP1-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 522.68, "hourly_price": 0.716, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": 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, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 268.64, "hourly_price": 0.368, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": 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, + "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 134.32, "hourly_price": 0.184, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": 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": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 72.0, "hourly_price": 0.1, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": 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, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 1108.14, "hourly_price": 1.518, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": 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, + "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": 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, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": 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}]}}, "PLAY2-NANO": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": 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}]}}, "PLAY2-PICO": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": 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}]}}, "PRO2-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "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, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "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}]}}, "PRO2-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": 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}]}}, "PRO2-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "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, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "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, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 788.4, "hourly_price": 1.08, "capabilities": {"boot_types": + ["local", "rescue"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": 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, + "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 1.8469, "hourly_price": 0.00253, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": 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": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, + "baremetal": false, "monthly_price": 24.674, "hourly_price": 0.0338, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 400000000}]}}, "START1-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": + 12.264, "hourly_price": 0.0168, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 300000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 300000000}]}}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "baremetal": false, "monthly_price": 6.059, "hourly_price": + 0.0083, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": false, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "START1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, + "volumes_constraint": {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": + false, "monthly_price": 2.993, "hourly_price": 0.0041, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 100000000}]}}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": + 6, "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "baremetal": false, "monthly_price": 14.4, "hourly_price": + 0.02, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": false, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "VC1M": {"alt_names": + ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": + false, "monthly_price": 8.64, "hourly_price": 0.012, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": + 2, "ram": 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 50000000000, + "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "baremetal": false, "monthly_price": 4.32, "hourly_price": + 0.006, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": false, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "X64-120GB": + {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": + 0, "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, + "baremetal": false, "monthly_price": 281.342, "hourly_price": 0.3854, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1000000000}]}}, "X64-15GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "volumes_constraint": {"min_size": + 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": + 38.836, "hourly_price": 0.0532, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 250000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 250000000}]}}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 32212254720, "gpu": 0, "volumes_constraint": {"min_size": 300000000000, "max_size": + 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "baremetal": false, "monthly_price": 77.818, "hourly_price": + 0.1066, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": false, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 500000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "X64-60GB": + {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": + 0, "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, + "baremetal": false, "monthly_price": 140.16, "hourly_price": 0.192, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1000000000}]}}}}' + headers: + Content-Length: + - "26559" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:10 GMT + Link: + - ; rel="last" + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a52a4f7-c39c-45af-8bfe-19ef447a8145 + X-Total-Count: + - "36" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + body: '{"ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": "51.15.207.142", + "reverse": null, "server": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", "tags": + []}}' + headers: + Content-Length: + - "254" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:10 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2d7bc003-aa3c-4a47-9694-36a765cc1cdf + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e0787da5-ccfa-4830-9210-6217a9137835 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"name":"cli-srv-elated-ritchie","commercial_type":"DEV1-S","image":"c332216b-5ab1-4b4f-97b5-e7499b11b149","public_ip":"2d7bc003-aa3c-4a47-9694-36a765cc1cdf","boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": "51.15.207.142", + "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "5625a063-ba55-4c40-8339-eb0bd108a7e9", + "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": + ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "2658" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:11 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4fcbb42d-f089-40f6-9396-2ff5be4e926b + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"action":"poweron"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065/action + method: POST + response: + body: '{"task": {"id": "9c2c49c1-41b9-4e4e-b16e-9cddec12ef89", "description": + "server_batch_poweron", "status": "pending", "href_from": "/servers/bdeacbda-75ef-44d8-812b-e88db459e065/action", + "href_result": "/servers/bdeacbda-75ef-44d8-812b-e88db459e065", "started_at": + "2022-10-28T14:44:11.584401+00:00", "terminated_at": null}}' + headers: + Content-Length: + - "322" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:11 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9c2c49c1-41b9-4e4e-b16e-9cddec12ef89 + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bf20b938-7f7e-49ed-a826-ede8622e708a + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "allocating node", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", + "address": "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, + "creation_date": "2022-10-28T14:44:10.731189+00:00", "modification_date": "2022-10-28T14:44:11.132393+00:00", + "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, + "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": + "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", + "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "5625a063-ba55-4c40-8339-eb0bd108a7e9", + "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: + - "2680" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:11 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 34ecd273-26a4-4a3b-99d6-08a90fcfd941 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", + "address": "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": "10.65.54.7", + "creation_date": "2022-10-28T14:44:10.731189+00:00", "modification_date": "2022-10-28T14:44:11.132393+00:00", + "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, + "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": + "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", + "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "5625a063-ba55-4c40-8339-eb0bd108a7e9", + "name": "Default security group"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2787" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bdb4fbd7-c7bd-4d44-a972-3c4b0b5cc78a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", + "address": "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": "10.65.54.7", + "creation_date": "2022-10-28T14:44:10.731189+00:00", "modification_date": "2022-10-28T14:44:11.132393+00:00", + "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, + "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": + "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", + "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "5625a063-ba55-4c40-8339-eb0bd108a7e9", + "name": "Default security group"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2787" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:22 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 97a01a6a-18d0-4591-a953-cc987f5e974c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", + "address": "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": "10.65.54.7", + "creation_date": "2022-10-28T14:44:10.731189+00:00", "modification_date": "2022-10-28T14:44:11.132393+00:00", + "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, + "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": + "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", + "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "5625a063-ba55-4c40-8339-eb0bd108a7e9", + "name": "Default security group"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2787" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:27 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2bf2df40-bc0b-440e-9dab-1002c0b4624d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", + "address": "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": "10.65.54.7", + "creation_date": "2022-10-28T14:44:10.731189+00:00", "modification_date": "2022-10-28T14:44:11.132393+00:00", + "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, + "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": + "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", + "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "5625a063-ba55-4c40-8339-eb0bd108a7e9", + "name": "Default security group"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2787" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2054683a-42b0-44ec-9d10-c9e234b2e20e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", + "address": "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": "10.65.54.7", + "creation_date": "2022-10-28T14:44:10.731189+00:00", "modification_date": "2022-10-28T14:44:35.710763+00:00", + "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, + "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": + "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", + "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "5625a063-ba55-4c40-8339-eb0bd108a7e9", + "name": "Default security group"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2818" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5f055e2a-dab5-495b-bcc6-c2d2d4a56767 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/regions/fr-par/lbs/d895db60-adb8-48e9-8375-7a7dc59afc96 + method: GET + response: + body: '{"id":"d895db60-adb8-48e9-8375-7a7dc59afc96","name":"foobar","description":"foobar","status":"ready","instances":[{"id":"b914ce06-3b94-4853-b4e1-bfc02bbb3caf","status":"ready","ip_address":"10.70.54.31","created_at":"2022-10-28T14:43:01.576293Z","updated_at":"2022-10-28T14:44:08.110212Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"99ba9d14-143d-470f-b989-d5ce302a958a","ip_address":"51.158.56.141","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"d895db60-adb8-48e9-8375-7a7dc59afc96","reverse":"51-158-56-141.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2022-10-28T14:44:07.191429Z","updated_at":"2022-10-28T14:44:08.693355Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + headers: + Content-Length: + - "1064" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8c616623-16a4-4272-b0ab-27e49e0df2b2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", + "address": "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": "10.65.54.7", + "creation_date": "2022-10-28T14:44:10.731189+00:00", "modification_date": "2022-10-28T14:44:35.710763+00:00", + "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, + "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": + "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", + "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "5625a063-ba55-4c40-8339-eb0bd108a7e9", + "name": "Default security group"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2818" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 40a78229-23c5-44ca-8f68-47da6a5bddd5 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"cli-srv-elated-ritchie","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","inbound_default_policy":"drop","outbound_default_policy":"accept"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups + method: POST + response: + body: '{"security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", "creation_date": + "2022-10-28T14:44:38.254075+00:00", "modification_date": "2022-10-28T14:44:38.254075+00:00", + "name": "cli-srv-elated-ritchie", "description": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "servers": [], "stateful": + false, "inbound_default_policy": "drop", "outbound_default_policy": "accept", + "organization_default": false, "project_default": false, "enable_default_security": + true, "state": "syncing", "tags": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "585" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:38 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f431e3dc-46cd-40d5-9a94-9c4fa5e78034 + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4cce7b27-c3b0-4891-9dad-0dd1e3a0e277 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"protocol":"ANY","direction":"inbound","action":"accept","ip_range":"51.158.56.141/32"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f431e3dc-46cd-40d5-9a94-9c4fa5e78034/rules + method: POST + response: + body: '{"rule": {"id": "0057d928-e892-415d-81da-898adfc62287", "protocol": "ANY", + "direction": "inbound", "ip_range": "51.158.56.141", "dest_port_from": null, + "dest_port_to": null, "position": 1, "editable": true, "action": "accept", "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "247" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:38 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f431e3dc-46cd-40d5-9a94-9c4fa5e78034/rules/0057d928-e892-415d-81da-898adfc62287 + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 50210a6f-0aba-4275-a4da-b6151d4c5403 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"security_group":{"id":"f431e3dc-46cd-40d5-9a94-9c4fa5e78034","name":"cli-srv-elated-ritchie"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: PATCH + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", + "address": "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": "10.65.54.7", + "creation_date": "2022-10-28T14:44:10.731189+00:00", "modification_date": "2022-10-28T14:44:38.982005+00:00", + "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, + "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": + "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", + "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2818" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:39 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a1651b41-ef9c-439d-9312-37b83334362d + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"action":"poweroff"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065/action + method: POST + response: + body: '{"task": {"id": "9eba5dc5-9f27-4456-9f4b-1f615352bd19", "description": + "server_poweroff", "status": "pending", "href_from": "/servers/bdeacbda-75ef-44d8-812b-e88db459e065/action", + "href_result": "/servers/bdeacbda-75ef-44d8-812b-e88db459e065", "started_at": + "2022-10-28T14:44:39.977999+00:00", "terminated_at": null}}' + headers: + Content-Length: + - "317" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:40 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9eba5dc5-9f27-4456-9f4b-1f615352bd19 + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 05a606b3-9094-4be7-9a38-4b0fd754a8cb + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": + "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": "10.65.54.7", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:39.636970+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2778" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c57cb3c9-7a89-473e-985e-726ecd563fd8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": + "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": "10.65.54.7", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:39.636970+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2778" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a8bb7907-2c97-4460-8118-a14ea8870262 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": + "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": "10.65.54.7", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:39.636970+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2778" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5ff49e71-cd31-4120-8c1d-345554725066 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": + "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": "10.65.54.7", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:39.636970+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2778" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:44:56 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb43f07f-438c-44b1-a03f-67ab70aa744d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "stopping", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": + "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": "10.65.54.7", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:39.636970+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2778" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:45:01 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eee3b10d-bfc4-4028-a350-ea52eb3ee6fe + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "booted", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": + "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": "10.65.54.7", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:39.636970+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2776" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:45:06 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 20e36f62-ff5d-48a5-9820-6abecae2b582 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "booted", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": + "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": "10.65.54.7", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:39.636970+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2776" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:45:11 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - caf9a3bf-d211-43ca-ba58-13fc177c5601 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "booted", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": + "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": "10.65.54.7", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:39.636970+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2776" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:45:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6f722a81-9413-48d8-a3c6-afcbb415293e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "booted", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": + "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": "10.65.54.7", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:39.636970+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2776" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:45:21 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 62f8493e-31fc-4779-87c0-6e35cba27e91 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "booted", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": + "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": "10.65.54.7", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:39.636970+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2776" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:45:27 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d1c3716-9edc-41a6-b7b3-ee18235e01fc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "booted", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": + "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": "10.65.54.7", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:39.636970+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2776" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:45:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 05762656-17b4-4fe0-b1cf-13e34ed6ee83 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "booted", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": + "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": "10.65.54.7", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:39.636970+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2776" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:45:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 931770a8-57e8-4907-beb1-aebf97fdf991 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "booted", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": + "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": "10.65.54.7", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:39.636970+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2776" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:45:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a219c3b7-3bc8-40be-9e99-6c032b334ef1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "booted", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": + "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": "10.65.54.7", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:39.636970+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": {"zone_id": "par1", "platform_id": + "14", "cluster_id": "18", "hypervisor_id": "1802", "node_id": "4"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2776" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:45:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6721c9d6-3c0e-4a40-a901-c2a4c67ce48e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": "51.15.207.142", + "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:45:50.102901+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": null, "maintenances": [], "allowed_actions": + ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "2658" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:45:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - db44a100-9389-48e4-a2a8-6282e2ed0c94 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: GET + response: + body: '{"server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-elated-ritchie", "image": {"id": "c332216b-5ab1-4b4f-97b5-e7499b11b149", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "ccf1c67a-a7e9-450e-9c14-b48de680ce26", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "unified", "size": + 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": + "2022-08-01T08:26:01.854067+00:00", "modification_date": "2022-08-01T08:26:01.854067+00:00", + "default_bootscript": null, "from_server": null, "state": "available", "tags": + [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8bb926f4-3264-4fba-9fb9-e74d9387a2cc", + "name": "ubuntu_18.04_bionic_beaver:volume-0", "volume_type": "l_ssd", "export_uri": + null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "bdeacbda-75ef-44d8-812b-e88db459e065", "name": "cli-srv-elated-ritchie"}, + "size": 20000000000, "state": "available", "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:44:10.731189+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": "51.15.207.142", + "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + false, "enable_ipv6": false, "private_ip": null, "creation_date": "2022-10-28T14:44:10.731189+00:00", + "modification_date": "2022-10-28T14:45:50.102901+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "f431e3dc-46cd-40d5-9a94-9c4fa5e78034", + "name": "cli-srv-elated-ritchie"}, "location": null, "maintenances": [], "allowed_actions": + ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "2658" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:45:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0c0974d3-086a-4518-a719-89b7a376f12a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdeacbda-75ef-44d8-812b-e88db459e065 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Date: + - Fri, 28 Oct 2022 14:45:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ac96b275-fa92-4b4d-b785-cd20306aefce + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2d7bc003-aa3c-4a47-9694-36a765cc1cdf + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Date: + - Fri, 28 Oct 2022 14:45:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 97e4b5de-ac89-44a8-85f8-e328499cd598 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8bb926f4-3264-4fba-9fb9-e74d9387a2cc + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Date: + - Fri, 28 Oct 2022 14:45:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 82e5bd4e-d07b-4a9d-b560-ea4ec5ecb1c9 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/d895db60-adb8-48e9-8375-7a7dc59afc96?release_ip=false + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 28 Oct 2022 14:45:54 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1520af1c-409b-4dac-819d-141b28e18fa1 + status: 204 No Content + code: 204 + duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-secure-behind-lb-security-group-simple.golden b/internal/namespaces/instance/v1/testdata/test-secure-behind-lb-security-group-simple.golden new file mode 100644 index 0000000000..4f13933052 --- /dev/null +++ b/internal/namespaces/instance/v1/testdata/test-secure-behind-lb-security-group-simple.golden @@ -0,0 +1,25 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟩🟩🟩 STDOUT️ 🟩🟩🟩️ +ID 0057d928-e892-415d-81da-898adfc62287 +Protocol ANY +Direction inbound +Action accept +IPRange 51.158.56.141/32 +Position 1 +Editable true +Zone fr-par-1 +🟩🟩🟩 JSON STDOUT 🟩🟩🟩 +{ + "rule": { + "id": "0057d928-e892-415d-81da-898adfc62287", + "protocol": "ANY", + "direction": "inbound", + "action": "accept", + "ip_range": "51.158.56.141/32", + "dest_port_from": null, + "dest_port_to": null, + "position": 1, + "editable": true, + "zone": "fr-par-1" + } +}