diff --git a/cmd/scw/testdata/test-all-usage-instance-ip-attach-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ip-attach-usage.golden new file mode 100644 index 0000000000..e75155bfd5 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-instance-ip-attach-usage.golden @@ -0,0 +1,24 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ +Attach an IP to a given server. + +USAGE: + scw instance ip attach [arg=value ...] + +EXAMPLES: + Attach an IP to the given server + scw instance ip attach 1.2.3.4 server-id=11111111-1111-1111-1111-111111111111 + +ARGS: + ip IP or UUID of the IP. + server-id UUID of the server to attach the IP to + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config + +FLAGS: + -h, --help help for attach + +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-ip-detach-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ip-detach-usage.golden new file mode 100644 index 0000000000..4b34769196 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-instance-ip-detach-usage.golden @@ -0,0 +1,26 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ +Detach an ip from its server. + +USAGE: + scw instance ip detach [arg=value ...] + +EXAMPLES: + Detach an IP by using its UUID + scw instance ip detach 11111111-1111-1111-1111-111111111111 + + Detach an IP by using its IP address + scw instance ip detach 1.2.3.4 + +ARGS: + ip IP or UUID of the IP. + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config + +FLAGS: + -h, --help help for detach + +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-ip-usage.golden b/cmd/scw/testdata/test-all-usage-instance-ip-usage.golden index 93e46f992a..863bff63de 100644 --- a/cmd/scw/testdata/test-all-usage-instance-ip-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-ip-usage.golden @@ -9,8 +9,10 @@ USAGE: scw instance ip AVAILABLE COMMANDS: + attach Attach an IP to a given server create Reserve a flexible IP delete Delete a flexible IP + detach Detach an ip from its server get Get a flexible IP list List all flexible IPs update Update a flexible IP diff --git a/cmd/scw/testdata/test-all-usage-instance-server-attach-ip-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-attach-ip-usage.golden new file mode 100644 index 0000000000..d248e5ac63 --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-instance-server-attach-ip-usage.golden @@ -0,0 +1,27 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ +Attach an IP to a server + +USAGE: + scw instance server attach-ip [arg=value ...] + +EXAMPLES: + Attach an IP to a server + scw instance server attach-ip 11111111-1111-1111-1111-111111111111 ip=11111111-1111-1111-1111-111111111111 + + Attach an IP to a server + scw instance server attach-ip 11111111-1111-1111-1111-111111111111 ip=1.2.3.4 + +ARGS: + server-id ID of the server + ip UUID of the IP to attach or its UUID + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config + +FLAGS: + -h, --help help for attach-ip + +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-server-detach-ip-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-detach-ip-usage.golden new file mode 100644 index 0000000000..4d14e4db8d --- /dev/null +++ b/cmd/scw/testdata/test-all-usage-instance-server-detach-ip-usage.golden @@ -0,0 +1,23 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ +Detach an IP from a server + +USAGE: + scw instance server detach-ip [arg=value ...] + +EXAMPLES: + Detach IP from a given server + scw instance server detach-ip 11111111-1111-1111-1111-111111111111 + +ARGS: + server-id UUID of the server. + [zone=fr-par-1] Zone to target. If none is passed will use default zone from the config + +FLAGS: + -h, --help help for detach-ip + +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-server-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-usage.golden index 5e47ff8b99..052ad545e2 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-usage.golden @@ -31,11 +31,13 @@ USAGE: scw instance server AVAILABLE COMMANDS: + attach-ip Attach an IP to a server attach-volume Attach a volume to a server backup Backup server console Connect to the serial console of an instance create Create server delete Delete server + detach-ip Detach an IP from a server detach-volume Detach a volume from its server get Get a server list List all servers diff --git a/docs/commands/instance.md b/docs/commands/instance.md index 2790c7d5ed..fa812fce06 100644 --- a/docs/commands/instance.md +++ b/docs/commands/instance.md @@ -9,8 +9,10 @@ Instance API - [List instance images](#list-instance-images) - [Wait for image to reach a stable state](#wait-for-image-to-reach-a-stable-state) - [IP management commands](#ip-management-commands) + - [Attach an IP to a given server](#attach-an-ip-to-a-given-server) - [Reserve a flexible IP](#reserve-a-flexible-ip) - [Delete a flexible IP](#delete-a-flexible-ip) + - [Detach an ip from its server](#detach-an-ip-from-its-server) - [Get a flexible IP](#get-a-flexible-ip) - [List all flexible IPs](#list-all-flexible-ips) - [Update a flexible IP](#update-a-flexible-ip) @@ -33,11 +35,13 @@ Instance API - [List security groups](#list-security-groups) - [Update security group](#update-security-group) - [Server management commands](#server-management-commands) + - [Attach an IP to a server](#attach-an-ip-to-a-server) - [Attach a volume to a server](#attach-a-volume-to-a-server) - [Backup server](#backup-server) - [Connect to the serial console of an instance](#connect-to-the-serial-console-of-an-instance) - [Create server](#create-server) - [Delete server](#delete-server) + - [Detach an IP from a server](#detach-an-ip-from-a-server) - [Detach a volume from its server](#detach-a-volume-from-its-server) - [Get a server](#get-a-server) - [List all servers](#list-all-servers) @@ -267,6 +271,37 @@ Be aware that attaching a flexible IP address to a server will remove the previo +### Attach an IP to a given server + +Attach an IP to a given server. + +**Usage:** + +``` +scw instance ip attach [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| ip | Required | IP or UUID of the IP. | +| server-id | Required | UUID of the server to attach the IP to | +| zone | Default: `fr-par-1` | Zone to target. If none is passed will use default zone from the config | + + +**Examples:** + + +Attach an IP to the given server +``` +scw instance ip attach 1.2.3.4 server-id=11111111-1111-1111-1111-111111111111 +``` + + + + ### Reserve a flexible IP Reserve a flexible IP. @@ -350,6 +385,41 @@ scw instance ip delete 51.15.253.183 +### Detach an ip from its server + +Detach an ip from its server. + +**Usage:** + +``` +scw instance ip detach [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| ip | Required | IP or UUID of the IP. | +| zone | Default: `fr-par-1` | Zone to target. If none is passed will use default zone from the config | + + +**Examples:** + + +Detach an IP by using its UUID +``` +scw instance ip detach 11111111-1111-1111-1111-111111111111 +``` + +Detach an IP by using its IP address +``` +scw instance ip detach 1.2.3.4 +``` + + + + ### Get a flexible IP Get details of an IP with the given ID or address. @@ -1086,6 +1156,42 @@ For more information, refer to [GPU Instances](https://www.scaleway.com/en/gpu-i +### Attach an IP to a server + + + +**Usage:** + +``` +scw instance server attach-ip [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| server-id | Required | ID of the server | +| ip | Required | UUID of the IP to attach or its UUID | +| zone | Default: `fr-par-1` | Zone to target. If none is passed will use default zone from the config | + + +**Examples:** + + +Attach an IP to a server +``` +scw instance server attach-ip 11111111-1111-1111-1111-111111111111 ip=11111111-1111-1111-1111-111111111111 +``` + +Attach an IP to a server +``` +scw instance server attach-ip 11111111-1111-1111-1111-111111111111 ip=1.2.3.4 +``` + + + + ### Attach a volume to a server @@ -1279,6 +1385,36 @@ scw instance server delete 11111111-1111-1111-1111-111111111111 zone=fr-par-1 +### Detach an IP from a server + + + +**Usage:** + +``` +scw instance server detach-ip [arg=value ...] +``` + + +**Args:** + +| Name | | Description | +|------|---|-------------| +| server-id | Required | UUID of the server. | +| zone | Default: `fr-par-1` | Zone to target. If none is passed will use default zone from the config | + + +**Examples:** + + +Detach IP from a given server +``` +scw instance server detach-ip 11111111-1111-1111-1111-111111111111 +``` + + + + ### Detach a volume from its server diff --git a/internal/namespaces/instance/v1/custom.go b/internal/namespaces/instance/v1/custom.go index e29a34948a..15f775e182 100644 --- a/internal/namespaces/instance/v1/custom.go +++ b/internal/namespaces/instance/v1/custom.go @@ -62,6 +62,8 @@ func GetCommands() *core.Commands { serverStandbyCommand(), serverRebootCommand(), serverWaitCommand(), + serverAttachIPCommand(), + serverDetachIPCommand(), )) // @@ -78,6 +80,10 @@ func GetCommands() *core.Commands { cmds.MustFind("instance", "ip", "create").Override(ipCreateBuilder) cmds.MustFind("instance", "ip", "list").Override(ipListBuilder) + cmds.Merge(core.NewCommands( + ipAttachCommand(), + ipDetachCommand(), + )) // // Image diff --git a/internal/namespaces/instance/v1/custom_ip.go b/internal/namespaces/instance/v1/custom_ip.go index c76375310a..5860a19639 100644 --- a/internal/namespaces/instance/v1/custom_ip.go +++ b/internal/namespaces/instance/v1/custom_ip.go @@ -2,10 +2,15 @@ package instance import ( "context" + "fmt" + "net" "reflect" "github.com/scaleway/scaleway-cli/internal/core" "github.com/scaleway/scaleway-sdk-go/api/instance/v1" + "github.com/scaleway/scaleway-sdk-go/logger" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/scaleway-sdk-go/validation" ) // Builders @@ -64,3 +69,124 @@ func ipListBuilder(c *core.Command) *core.Command { }) return c } + +func ipAttachCommand() *core.Command { + type customIPAttachRequest struct { + OrganizationID *string + ProjectID *string + // Server: UUID of the server you want to attach the IP to + ServerID string `json:"server,omitempty"` + IP string `json:"-"` + Zone scw.Zone `json:"zone"` + } + + return &core.Command{ + Short: `Attach an IP to a given server`, + Long: `Attach an IP to a given server.`, + Namespace: "instance", + Resource: "ip", + Verb: "attach", + ArgsType: reflect.TypeOf(customIPAttachRequest{}), + Run: func(ctx context.Context, argsI interface{}) (i interface{}, err error) { + api := instance.NewAPI(core.ExtractClient(ctx)) + args := argsI.(*customIPAttachRequest) + + return api.UpdateIP(&instance.UpdateIPRequest{ + IP: args.IP, + Server: &instance.NullableStringValue{ + Value: args.ServerID, + }, + Zone: args.Zone, + }) + }, + ArgSpecs: core.ArgSpecs{ + { + Name: "ip", + Short: `IP or UUID of the IP.`, + Required: true, + Positional: true, + }, + { + Name: "server-id", + Short: "UUID of the server to attach the IP to", + Required: true, + }, + core.ZoneArgSpec(), + }, + Examples: []*core.Example{ + { + Short: "Attach an IP to the given server", + ArgsJSON: `{"server_id": "11111111-1111-1111-1111-111111111111", "ip": "1.2.3.4"}`, + }, + }, + } +} + +func ipDetachCommand() *core.Command { + type customIPDetachRequest struct { + OrganizationID *string + ProjectID *string + IP string `json:"-"` + Zone scw.Zone `json:"zone"` + } + + return &core.Command{ + Short: `Detach an ip from its server`, + Long: `Detach an ip from its server.`, + Namespace: "instance", + Resource: "ip", + Verb: "detach", + ArgsType: reflect.TypeOf(customIPDetachRequest{}), + Run: func(ctx context.Context, argsI interface{}) (i interface{}, err error) { + args := argsI.(*customIPDetachRequest) + api := instance.NewAPI(core.ExtractClient(ctx)) + + var ipID string + switch { + case validation.IsUUID(args.IP): + ipID = args.IP + case net.ParseIP(args.IP) != nil: + // Find the corresponding flexible IP UUID. + logger.Debugf("finding public IP UUID from address: %s", args.IP) + res, err := api.GetIP(&instance.GetIPRequest{ + Zone: args.Zone, + IP: args.IP, + }) + if err != nil { // FIXME: isNotFoundError + return nil, fmt.Errorf("%s does not belong to you", args.IP) + } + ipID = res.IP.ID + default: + return nil, fmt.Errorf(`invalid IP "%s", should be either an IP address ID or a reserved flexible IP address`, args.IP) + } + + return api.UpdateIP(&instance.UpdateIPRequest{ + Zone: args.Zone, + // We detach an ip by specifying no server + Server: &instance.NullableStringValue{ + Null: true, + }, + IP: ipID, + }) + }, + ArgSpecs: core.ArgSpecs{ + { + Name: "ip", + Short: `IP or UUID of the IP.`, + Required: true, + Positional: true, + }, + core.ZoneArgSpec(), + }, + Examples: []*core.Example{ + { + Short: "Detach an IP by using its UUID", + ArgsJSON: `{"ip": "11111111-1111-1111-1111-111111111111"}`, + }, + { + Short: "Detach an IP by using its IP address", + ArgsJSON: `{"ip": "1.2.3.4"}`, + }, + }, + } +} diff --git a/internal/namespaces/instance/v1/custom_ip_test.go b/internal/namespaces/instance/v1/custom_ip_test.go new file mode 100644 index 0000000000..7254bf75b4 --- /dev/null +++ b/internal/namespaces/instance/v1/custom_ip_test.go @@ -0,0 +1,83 @@ +package instance + +import ( + "testing" + + "github.com/scaleway/scaleway-cli/internal/core" +) + +func Test_IPAttach(t *testing.T) { + t.Run("With UUID", core.Test(&core.TestConfig{ + Commands: GetCommands(), + BeforeFunc: core.BeforeFuncCombine( + core.ExecStoreBeforeCmd("Server", "scw instance server create stopped=true ip=none"), + createIP("Ip"), + ), + Cmd: "scw instance ip attach {{ .Ip.Address }} server-id={{ .Server.ID }}", + Check: core.TestCheckCombine( + core.TestCheckGolden(), + core.TestCheckExitCode(0), + ), + AfterFunc: core.AfterFuncCombine( + deleteServer("Server"), + ), + DisableParallel: true, + })) + + t.Run("With IP", core.Test(&core.TestConfig{ + Commands: GetCommands(), + BeforeFunc: core.BeforeFuncCombine( + core.ExecStoreBeforeCmd("Server", "scw instance server create stopped=true ip=none"), + createIP("Ip"), + ), + Cmd: "scw instance ip attach {{ .Ip.Address }} server-id={{ .Server.ID }}", + Check: core.TestCheckCombine( + core.TestCheckGolden(), + core.TestCheckExitCode(0), + ), + AfterFunc: core.AfterFuncCombine( + deleteServer("Server"), + ), + DisableParallel: true, + })) +} + +func Test_IPDetach(t *testing.T) { + t.Run("With UUID", core.Test(&core.TestConfig{ + Commands: GetCommands(), + BeforeFunc: core.BeforeFuncCombine( + core.ExecStoreBeforeCmd("Server", "scw instance server create stopped=true ip=none"), + createIP("Ip"), + core.ExecBeforeCmd("scw instance ip attach {{ .Ip.Address }} server-id={{ .Server.ID }}"), + ), + Cmd: "scw instance ip detach {{ .Ip.ID }}", + Check: core.TestCheckCombine( + core.TestCheckGolden(), + core.TestCheckExitCode(0), + ), + AfterFunc: core.AfterFuncCombine( + deleteServer("Server"), + deleteIP("Ip"), + ), + DisableParallel: true, + })) + + t.Run("With IP", core.Test(&core.TestConfig{ + Commands: GetCommands(), + BeforeFunc: core.BeforeFuncCombine( + core.ExecStoreBeforeCmd("Server", "scw instance server create stopped=true ip=none"), + createIP("Ip"), + core.ExecBeforeCmd("scw instance ip attach {{ .Ip.Address }} server-id={{ .Server.ID }}"), + ), + Cmd: "scw instance ip detach {{ .Ip.Address }}", + Check: core.TestCheckCombine( + core.TestCheckGolden(), + core.TestCheckExitCode(0), + ), + AfterFunc: core.AfterFuncCombine( + deleteServer("Server"), + deleteIP("Ip"), + ), + DisableParallel: true, + })) +} diff --git a/internal/namespaces/instance/v1/custom_server.go b/internal/namespaces/instance/v1/custom_server.go index ffc369b820..1b93a6ac06 100644 --- a/internal/namespaces/instance/v1/custom_server.go +++ b/internal/namespaces/instance/v1/custom_server.go @@ -19,6 +19,7 @@ import ( "github.com/scaleway/scaleway-sdk-go/api/vpc/v1" "github.com/scaleway/scaleway-sdk-go/logger" "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/scaleway-sdk-go/validation" ) const ( @@ -479,6 +480,145 @@ func serverDetachVolumeCommand() *core.Command { } } +func serverAttachIPCommand() *core.Command { + type customIPAttachRequest struct { + OrganizationID *string + ProjectID *string + // Server: UUID of the server you want to attach the IP to + ServerID string `json:"server,omitempty"` + IP string `json:"-"` + Zone scw.Zone `json:"zone"` + } + + return &core.Command{ + Short: `Attach an IP to a server`, + Namespace: "instance", + Resource: "server", + Verb: "attach-ip", + ArgsType: reflect.TypeOf(customIPAttachRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "server-id", + Short: `ID of the server`, + Required: true, + Positional: true, + }, + { + Name: "ip", + Short: `UUID of the IP to attach or its UUID`, + Required: true, + }, + core.ZoneArgSpec(), + }, + Run: func(ctx context.Context, argsI interface{}) (i interface{}, err error) { + api := instance.NewAPI(core.ExtractClient(ctx)) + args := argsI.(*customIPAttachRequest) + + var ipID string + switch { + case validation.IsUUID(args.IP): + ipID = args.IP + case net.ParseIP(args.IP) != nil: + // Find the corresponding flexible IP UUID. + logger.Debugf("finding public IP UUID from address: %s", args.IP) + res, err := api.GetIP(&instance.GetIPRequest{ + Zone: args.Zone, + IP: args.IP, + }) + if err != nil { // FIXME: isNotFoundError + return nil, fmt.Errorf("%s does not belong to you", args.IP) + } + ipID = res.IP.ID + default: + return nil, fmt.Errorf(`invalid IP "%s", should be either an IP address ID or a reserved flexible IP address`, args.IP) + } + + _, err = api.UpdateIP(&instance.UpdateIPRequest{ + IP: ipID, + Server: &instance.NullableStringValue{ + Value: args.ServerID, + }, + Zone: args.Zone, + }) + if err != nil { + return nil, err + } + return api.GetServer(&instance.GetServerRequest{ServerID: args.ServerID}) + }, + Examples: []*core.Example{ + { + Short: "Attach an IP to a server", + ArgsJSON: `{"server_id": "11111111-1111-1111-1111-111111111111","ip": "11111111-1111-1111-1111-111111111111"}`, + }, + { + Short: "Attach an IP to a server", + ArgsJSON: `{"server_id": "11111111-1111-1111-1111-111111111111","ip": "1.2.3.4"}`, + }, + }, + } +} + +func serverDetachIPCommand() *core.Command { + type customIPDetachRequest struct { + OrganizationID *string + ProjectID *string + Zone scw.Zone `json:"zone"` + ServerID string + } + + return &core.Command{ + Short: `Detach an IP from a server`, + Namespace: "instance", + Resource: "server", + Verb: "detach-ip", + ArgsType: reflect.TypeOf(customIPDetachRequest{}), + ArgSpecs: core.ArgSpecs{ + { + Name: "server-id", + Short: `UUID of the server.`, + Required: true, + Positional: true, + }, + core.ZoneArgSpec(), + }, + Run: func(ctx context.Context, argsI interface{}) (i interface{}, err error) { + args := argsI.(*customIPDetachRequest) + + client := core.ExtractClient(ctx) + api := instance.NewAPI(client) + serverResponse, err := api.GetServer(&instance.GetServerRequest{ServerID: args.ServerID}) + if err != nil { + return nil, err + } + + if server := serverResponse.Server; server != nil { + if ip := server.PublicIP; ip != nil { + _, err := api.UpdateIP(&instance.UpdateIPRequest{ + Zone: args.Zone, + // We detach an ip by specifying no serverResponse + Server: &instance.NullableStringValue{ + Null: true, + }, + IP: ip.ID, + }) + if err != nil { + return nil, err + } + return api.GetServer(&instance.GetServerRequest{ServerID: args.ServerID}) + } + return nil, fmt.Errorf("no public ip found") + } + return nil, fmt.Errorf("no server found") + }, + Examples: []*core.Example{ + { + Short: "Detach IP from a given server", + ArgsJSON: `{"server_id": "11111111-1111-1111-1111-111111111111"}`, + }, + }, + } +} + type instanceActionRequest struct { Zone scw.Zone ServerID string diff --git a/internal/namespaces/instance/v1/testdata/test-ip-attach-with-ip.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-ip-attach-with-ip.cassette.yaml new file mode 100644 index 0000000000..a34c8a3bf4 --- /dev/null +++ b/internal/namespaces/instance/v1/testdata/test-ip-attach-with-ip.cassette.yaml @@ -0,0 +1,335 @@ +--- +version: 1 +interactions: +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/marketplace/v1/images?page=1 + method: GET + response: + body: '{"images": [{"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": "46b87e8b-e9b5-417f-a185-3d0fac2531bc", "name": "2021-03-30T08:50:27.029754+00:00", "local_images": [{"id": "5e84372e-6abe-4df5-834d-b12af4b24af8", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "a7306ef9-5e1b-464d-a409-a44026d91a9e", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "a5076337-734f-4b99-95ed-9a5bc73b9b09", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "7663c62b-40e3-4e6b-a835-70723ec2050b", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "5dd154af-ddad-496f-b631-388f0a787df1", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "62ad764e-298b-4e46-827d-be196f7f0b6b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "f63fe42a-900f-4a5e-ba99-ab0e59469b7e", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "28c59566-b53c-45dc-844d-43029388152d", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "b4bdbee1-e1f1-4436-8de4-bdb1b6ba4803", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "bbe8ed3d-c693-4437-b2dd-5d5968655f94", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "60eb89c7-1c29-4a94-a954-dddb81fc1a55", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}], "creation_date": "2021-03-30T08:50:27.247448+00:00", "modification_date": "2021-03-30T08:50:27.247448+00:00"}], "categories": ["distribution"], "current_public_version": "46b87e8b-e9b5-417f-a185-3d0fac2531bc", "creation_date": "2018-04-27T14:07:25.221998+00:00", "modification_date": "2021-04-01T07:04:52.514102+00:00", "valid_until": null}, {"id": "acf93867-88d9-40ee-99ea-6b2bb1ee8f0c", "name": "Ubuntu Xenial", "label": "ubuntu_xenial", "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": "f71f0db2-513e-4e32-8b85-85c153b67b39", "name": "2021-03-30T09:22:06.072470+00:00", "local_images": [{"id": "245e5cea-a9b4-4a36-9055-27185afe8690", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "f1b14363-cea2-4b85-84c7-602d24474b99", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "75ace7bb-699b-4cea-813c-633c31de3e9e", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "6c34a3f3-5e8a-455b-9bc2-f07c4c35bf89", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "605ceb9b-0d67-4565-b324-6dfff7c1307e", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "7d04dd2a-6cee-4aec-be9e-f87154009112", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "16ca98f1-89f1-4315-a7fd-a711ac3bcb83", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "3d6804e0-086e-4a06-8124-7240a657668d", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "c40fbabc-efc8-4e04-91ea-5e1e22daece1", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "bd859e89-fb2d-466a-a546-383630a1ead1", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "a5f6bb77-3d64-4f7f-abe0-72492b1bc020", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}], "creation_date": "2021-03-30T09:22:06.123537+00:00", "modification_date": "2021-03-30T09:22:06.123537+00:00"}], "categories": ["distribution"], "current_public_version": "f71f0db2-513e-4e32-8b85-85c153b67b39", "creation_date": "2016-04-22T13:27:33.769932+00:00", "modification_date": "2021-04-01T07:06:41.643152+00:00", "valid_until": null}, {"id": "c94b5df7-e698-4ac9-b273-565d18f5f8d2", "name": "Debian Stretch", "label": "debian_stretch", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", "description": "Debian is a free, powerful and stable operating system.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build System"}, "versions": [{"id": "a1478726-083c-4d31-815d-255e07123155", "name": "2021-03-30T11:48:36.852155+00:00", "local_images": [{"id": "2e7e23ee-db6b-4d86-a779-abd90d500482", "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"]}, {"id": "37938de8-e3be-479a-895d-095158f76212", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "0ac73990-3bd5-424a-8128-0825821c0c4f", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "5f7ab0cd-d10e-49a0-91c8-315ed8a6a1a4", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "X64-15GB", "C2L", "C2M", "X64-30GB", "X64-120GB", "X64-60GB"]}, {"id": "bd6ba96e-d4c4-41f9-88e2-8dad3e6f085b", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "9096ef85-6520-4b8e-9303-77fd51ec3c5a", "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", "STARDUST1-S"]}, {"id": "6c694560-503e-4463-8cc8-4b5ae11b0fca", "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"]}, {"id": "d954dc33-c52e-4960-93e1-b69c85d169be", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "22a1bd8d-4498-4800-a8e5-4bc85001176c", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "X64-15GB", "C2L", "C2M", "X64-30GB", "X64-120GB", "X64-60GB"]}, {"id": "86740237-62fc-4538-9b70-4373942f53d3", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "eb803e1e-36ff-4fec-9a68-20da4cb95c0d", "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", "STARDUST1-S"]}], "creation_date": "2021-03-30T11:48:36.906051+00:00", "modification_date": "2021-03-30T11:48:36.906051+00:00"}], "categories": ["distribution"], "current_public_version": "a1478726-083c-4d31-815d-255e07123155", "creation_date": "2017-06-26T15:37:13.460764+00:00", "modification_date": "2021-04-01T07:10:04.448317+00:00", "valid_until": null}, {"id": "fb619bdf-834e-4c71-b7b8-15b5546d18bd", "name": "Debian Jessie", "label": "debian_jessie", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", "description": "Debian is a free, powerful and stable operating system.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "d3846a7b-8219-4938-ad96-cc2173e22481", "name": "2018-04-10T22:31:04.321157", "local_images": [{"id": "2dfad6d2-e527-4e93-8eb1-8dc57803b310", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "610f68d5-cbad-4923-98ae-782af8f3b527", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "dc22e553-2d2e-4689-94f8-8817db824202", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "2e570f53-199e-47cc-95dd-f7bc392496e3", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "abf9e3a2-7171-4764-91ef-57f30b21193d", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "69cbdd54-88a1-4458-b75e-662a0848a7ce", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "e1dd422e-44eb-451c-b60c-7330ff421bfb", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1aa604d6-2ec2-4774-91a2-56309dacde47", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2018-04-10T22:31:04.322822+00:00", "modification_date": "2018-04-10T22:31:04.322822+00:00"}], "categories": ["distribution"], "current_public_version": "d3846a7b-8219-4938-ad96-cc2173e22481", "creation_date": "2016-03-05T14:52:36.322319+00:00", "modification_date": "2019-03-26T14:00:50.449502+00:00", "valid_until": null}, {"id": "1d47b370-ac63-43b1-9f34-7328675e5e18", "name": "CentOS 7.6", "label": "centos_7.6", "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": "11111111-1111-4111-8111-111111111111", "name": "OCS"}, "versions": [{"id": "53138072-3099-4566-8b18-de7b2739696a", "name": "2019-03-18T09:29:00.168590", "local_images": [{"id": "05794ee5-c6d2-4d69-86dd-f1fc9032921d", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "VC1M", "C2L", "C2M", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "0f44b130-2bc7-4f82-993e-de9d1042c56e", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "10aae8d8-0073-44f9-ac19-a171ac40bc78", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "775a2a9f-551a-4309-838f-64ed7438c263", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2019-03-18T09:29:00.247544+00:00", "modification_date": "2019-03-18T09:29:00.247544+00:00"}], "categories": ["distribution"], "current_public_version": "53138072-3099-4566-8b18-de7b2739696a", "creation_date": "2019-03-06T11:27:48.406290+00:00", "modification_date": "2019-03-26T14:00:50.839069+00:00", "valid_until": null}, {"id": "98fc244a-ed4c-4523-bd17-b9c4070b8e7e", "name": "CentOS 7.4", "label": "centos_7.4", "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": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "31be34e5-074d-4c63-8c77-454459f77c3f", "name": "2018-04-20T13:55:06.817954", "local_images": [{"id": "ec8b431e-ad39-4523-8b94-f3fa7f3cbd06", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "7220ac63-bac8-484b-9d44-93e3bd01f5a6", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "9d3bb257-9bb3-4f7e-ab75-cbdae33d41a4", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a2d1bdb1-a1e1-4e39-9ffa-d0da7de02f38", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2018-04-20T13:55:06.824033+00:00", "modification_date": "2018-04-20T13:55:06.824033+00:00"}], "categories": ["distribution"], "current_public_version": "31be34e5-074d-4c63-8c77-454459f77c3f", "creation_date": "2018-04-19T10:12:28.968536+00:00", "modification_date": "2019-03-26T14:00:53.445597+00:00", "valid_until": null}, {"id": "69adec15-f1a7-469a-9ba5-868577832521", "name": "Fedora 29", "label": "fedora_29", "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": "11111111-1111-4111-8111-111111111111", "name": "OCS"}, "versions": [{"id": "a0f02365-f1af-48cb-b82d-75853a4e05e1", "name": "2019-03-06T09:08:01.016040", "local_images": [{"id": "541f4562-5417-4b59-85d6-caaf64c1f127", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "3c0f706e-0947-47a3-88a3-595c29f7567a", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "1c7efe35-332e-4fde-b8d6-30606b81a8e7", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "90c83cdc-8560-4543-9033-1e63e3474e12", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-06T09:08:01.112958+00:00", "modification_date": "2019-03-06T09:08:01.112958+00:00"}], "categories": ["distribution"], "current_public_version": "a0f02365-f1af-48cb-b82d-75853a4e05e1", "creation_date": "2019-03-06T09:07:51.652433+00:00", "modification_date": "2019-03-26T14:00:51.848785+00:00", "valid_until": null}, {"id": "30d0f04f-6422-4b74-9ce9-1c2267419978", "name": "Fedora 28", "label": "fedora_28", "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": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "49e33199-28cc-44d6-bb2e-a6147944ad5c", "name": "2018-05-03T12:01:10.135200", "local_images": [{"id": "830aad94-24e5-4363-b2c3-e62921bd9294", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "c9cd1782-2159-44b8-83b1-9c48ed6c8a63", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "27c84474-0af7-473f-9295-b5b85be5e429", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "5c7b710b-ff79-4e56-81d3-6bf31a946ad0", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-05-03T12:01:10.147973+00:00", "modification_date": "2018-05-03T12:01:10.147973+00:00"}], "categories": ["distribution"], "current_public_version": "49e33199-28cc-44d6-bb2e-a6147944ad5c", "creation_date": "2018-05-03T09:51:57.274011+00:00", "modification_date": "2019-03-26T14:00:50.156015+00:00", "valid_until": null}, {"id": "4bff4f37-3ef9-457e-9e8d-4a786cb2a5f2", "name": "Fedora 27", "label": "fedora_27", "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": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "45b5823f-8ddf-4ea8-b106-33d2df127cdf", "name": "2018-09-06T10:51:13.011044", "local_images": [{"id": "097a100e-fd2f-4918-8a5b-d86de5a489be", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "73f0bcd8-a152-4665-ac09-1b105905a475", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "9bef3647-8ccb-43aa-b753-d289851e85bf", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "801b5f02-eb8c-4d77-bce6-5cea21bf9260", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-09-06T10:51:13.009967+00:00", "modification_date": "2018-09-06T10:51:13.009967+00:00"}], "categories": ["distribution"], "current_public_version": "45b5823f-8ddf-4ea8-b106-33d2df127cdf", "creation_date": "2018-04-19T10:14:08.648100+00:00", "modification_date": "2019-03-26T14:00:53.140907+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": "mtouron@ocs.online.net"}, "versions": [{"id": "f7696517-bc49-448b-9869-f2c84e7c2a96", "name": "2018-04-20T15:59:04.593811", "local_images": [{"id": "f21defd0-9fd9-4fb2-a29a-22844a6be3cd", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "3c904f73-080e-4c6f-8b28-8426cfdcb3c7", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "1e23c590-a371-403b-a8db-cfd9a2f74c03", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "6a347714-49ab-44a6-92fb-1f0ba6aa96e9", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2018-04-20T15:59:04.594929+00:00", "modification_date": "2018-04-20T15:59:04.594929+00:00"}], "categories": ["distribution"], "current_public_version": "f7696517-bc49-448b-9869-f2c84e7c2a96", "creation_date": "2016-03-07T20:55:32.213089+00:00", "modification_date": "2019-03-26T14:00:49.327070+00:00", "valid_until": null}, {"id": "c0649a2a-e6bf-4712-9303-8d967153209c", "name": "Alpine Linux", "label": "alpine_linux", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/alpinelinux.png", "description": "Alpine Linux is security-oriented, lightweight Linux distribution based on musl libc and busybox.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "be2293b6-9eba-4497-9659-2cfb927483b5", "name": "2018-04-26T10:18:10.196011", "local_images": [{"id": "24141068-1043-4885-bf2b-8290f617e273", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "241b0bb3-9eed-4a7b-b0fd-71c45452ac95", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "GP1-XS", "DEV1-M", "DEV1-L", "DEV1-S", "GP1-XL", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S"]}, {"id": "7ba96c78-de91-4116-a075-54284ac58632", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "e9607990-506c-478b-b134-649a3777472b", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-26T10:18:10.201002+00:00", "modification_date": "2018-04-26T10:18:10.201002+00:00"}], "categories": ["distribution"], "current_public_version": "be2293b6-9eba-4497-9659-2cfb927483b5", "creation_date": "2016-03-05T14:49:50.255568+00:00", "modification_date": "2019-03-26T14:00:54.425917+00:00", "valid_until": null}, {"id": "293a2ddf-6e33-4e63-81f0-fbdd90641480", "name": "CentOS 8", "label": "centos_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": "ddda3abc-59c1-4385-b551-65e63f7f759e", "name": "2021-03-31T11:10:17.416332+00:00", "local_images": [{"id": "4d93a3c2-771d-446d-a904-c2ac938eace2", "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", "STARDUST1-S"]}, {"id": "f07fc6dd-1219-424b-bd5f-eabc145c1b61", "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"]}, {"id": "a79c7b52-a9e0-4474-b6fd-b436c4ad8d0b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "b23e727e-1e01-49e9-ae1d-a29180228ae5", "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"]}, {"id": "0caa749a-160f-4361-8007-0d1b5ea265c9", "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", "STARDUST1-S"]}], "creation_date": "2021-03-31T11:10:17.605755+00:00", "modification_date": "2021-03-31T11:10:17.605755+00:00"}], "categories": ["distribution"], "current_public_version": "ddda3abc-59c1-4385-b551-65e63f7f759e", "creation_date": "2020-04-29T11:48:57.810456+00:00", "modification_date": "2021-04-01T07:12:10.660353+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": "70a28442-1712-4a06-a77c-2f4b712bcc3d", "name": "2021-03-30T11:22:41.282946+00:00", "local_images": [{"id": "ba956003-4988-4c30-91ba-5320ae5d8bac", "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"]}, {"id": "61ae99dc-aaef-4a32-b2f4-07f1a534aaa4", "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", "STARDUST1-S"]}, {"id": "61010e34-7f1e-402b-a253-028a714a6678", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "4720c10f-59e3-4e20-915b-dcee1fc34c11", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "cc9188b3-3938-47d7-b091-c9ecad1fe507", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "d178f0f3-da78-4691-8368-2ac175f9940b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "9d6e8a2c-31a9-439c-a4c5-9fba1c5b96ed", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "f3a69d77-3faf-4a0d-97c1-1994d96cffa5", "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"]}, {"id": "d9c10ab7-1496-4be8-a4d9-9dec4571f61f", "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", "STARDUST1-S"]}], "creation_date": "2021-03-30T11:22:41.337836+00:00", "modification_date": "2021-03-30T11:22:41.337836+00:00"}], "categories": ["distribution"], "current_public_version": "70a28442-1712-4a06-a77c-2f4b712bcc3d", "creation_date": "2019-07-16T13:55:36.377559+00:00", "modification_date": "2021-04-01T07:08:18.822693+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": "mtouron@ocs.online.net"}, "versions": [{"id": "bf30c937-6e89-4019-ad2a-92156a62cf3e", "name": "2019-03-07T17:07:39.004809", "local_images": [{"id": "89c80d27-ddf4-4ffa-8215-b335cce3fd05", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "99e2a9c6-f0b9-42b6-8823-8b0d86ffe9bf", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "45a7e942-1fb0-48c0-bbf6-0acb9af24604", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "c669011a-ee16-42b6-b0c3-ecd19e419539", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "dcf35840-c007-4c8b-a48b-227cfd8a347b", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "df7298ce-ab95-4384-90d1-76b8fff31f06", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "929c50f5-721c-4672-817c-8704eb4bc1d1", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-07T17:07:39.090644+00:00", "modification_date": "2019-03-07T17:07:39.090644+00:00"}], "categories": ["instantapp"], "current_public_version": "bf30c937-6e89-4019-ad2a-92156a62cf3e", "creation_date": "2016-03-05T15:11:26.847640+00:00", "modification_date": "2019-03-26T14:00:49.524465+00:00", "valid_until": null}, {"id": "e549e5b4-33eb-4c97-950a-8baf107f895f", "name": "Fedora 32", "label": "fedora_32", "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": "75ba84da-ee4f-44ca-9fac-49ac43e8a0d2", "name": "2021-03-31T14:22:08.724842+00:00", "local_images": [{"id": "19717715-2e56-41d4-9795-bf3d0d509d5a", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "5a987969-ab7b-4e03-909f-3aed546cee06", "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"]}, {"id": "616bcd6c-b87e-4eb7-824c-ade385459a5a", "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", "STARDUST1-S"]}, {"id": "ffd5ed07-3ed8-46cb-9b78-b267b7848cbf", "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"]}, {"id": "dd8bf78f-59c8-452a-b41e-0f43d25d6220", "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", "STARDUST1-S"]}], "creation_date": "2021-03-31T14:22:08.799093+00:00", "modification_date": "2021-03-31T14:22:08.799093+00:00"}], "categories": ["distribution"], "current_public_version": "75ba84da-ee4f-44ca-9fac-49ac43e8a0d2", "creation_date": "2020-05-19T08:21:31.875735+00:00", "modification_date": "2021-04-01T07:14:57.371602+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": "mtouron@ocs.online.net"}, "versions": [{"id": "a389c94b-8b19-4528-a4f6-0b7cac3425e9", "name": "2019-04-09T13:31:03.352588", "local_images": [{"id": "06a2a6e9-922d-4353-9472-bbb1f79fda63", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "3e71b78e-dd20-48ae-8d6e-f594cb255af5", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "4527e41c-0e90-43a8-857e-d9584bf8467f", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1cd308b9-5988-4b04-80a1-389f5f63738b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-04-09T13:31:03.648676+00:00", "modification_date": "2019-04-09T13:31:03.648676+00:00"}], "categories": ["instantapp"], "current_public_version": "a389c94b-8b19-4528-a4f6-0b7cac3425e9", "creation_date": "2016-03-07T21:06:22.770864+00:00", "modification_date": "2019-04-09T13:31:04.022755+00:00", "valid_until": null}, {"id": "90d512b8-e4b7-4821-98e9-78241d73a7e6", "name": "Gogs", "label": "gogs", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/gogs.png", "description": "A painless self-hosted Git service.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "1b9e22e3-6a29-4f42-acfd-281ad086ee1d", "name": "2018-05-16T15:11:25.303762", "local_images": [{"id": "776705c4-be8e-4a27-b740-2e8bbba518c5", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a513a250-e6e9-4687-892e-9d10b29e3972", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "d1341ece-ffda-4386-ad3a-27d60b650401", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "69b8bc0e-7771-42af-a4ad-ca756c31a18a", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}], "creation_date": "2018-05-16T15:11:25.881343+00:00", "modification_date": "2018-05-16T15:11:25.881343+00:00"}], "categories": ["instantapp"], "current_public_version": "1b9e22e3-6a29-4f42-acfd-281ad086ee1d", "creation_date": "2016-03-07T21:00:44.946716+00:00", "modification_date": "2019-03-26T14:00:54.513196+00:00", "valid_until": null}, {"id": "6c8d25c0-cb6f-4220-98aa-830b7e479ba5", "name": "Golang", "label": "golang", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/golang.png", "description": "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.A dynamic, open source programming language with a focus on simplicity and productivity.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "880194c8-53ce-4b6b-a274-4f79307e2f8e", "name": "2018-04-18T08:00:48.129246", "local_images": [{"id": "43213956-c7a3-44b8-9d96-d51fa7457969", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5ffb52aa-ea55-4596-9d0f-e403701b6624", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "bef7a6af-1bab-490a-a6cb-6a07c1b9ac7b", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "f0b7d9b8-aa31-45b4-9f7e-a68aa164ce6f", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "76ca1eb7-f68f-4770-a7a1-ab7665ae3297", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "0d954c34-341c-483a-be1c-71cf197343ed", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}], "creation_date": "2018-04-18T08:00:48.175340+00:00", "modification_date": "2018-04-18T08:00:48.175340+00:00"}], "categories": ["instantapp"], "current_public_version": "880194c8-53ce-4b6b-a274-4f79307e2f8e", "creation_date": "2016-03-08T07:01:11.482482+00:00", "modification_date": "2019-03-26T14:00:52.861225+00:00", "valid_until": null}, {"id": "d72d1b73-7460-446b-91fb-b451d079aa4d", "name": "Java", "label": "java", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/java.png", "description": "Java is a computer programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "f3f69cca-aadb-4e5e-94b0-254ce05a6639", "name": "2018-04-18T10:11:18.477156", "local_images": [{"id": "c50cb4b2-bf7b-47e2-ab5f-3a9d3d4c1aef", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "98c93894-26a8-463b-a72b-c9d2b531b95d", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "43c43b5e-1e4f-4905-baef-71df3c565b4d", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "0c3f9f03-f490-444b-a05e-f342e917fed0", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5e07622b-ad8b-4f65-b55f-cca18c3c0bbf", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "c0330755-e5d0-4c2c-ad0e-70687e1dccbb", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}], "creation_date": "2018-04-18T10:11:18.535736+00:00", "modification_date": "2018-04-18T10:11:18.535736+00:00"}], "categories": ["instantapp"], "current_public_version": "f3f69cca-aadb-4e5e-94b0-254ce05a6639", "creation_date": "2016-03-07T21:07:46.908969+00:00", "modification_date": "2019-03-26T14:00:49.430836+00:00", "valid_until": null}, {"id": "986ba672-b489-4f66-9e3b-90194ac336d4", "name": "LEMP stack", "label": "lemp_stack", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/lemp.png", "description": "LEMP stack is a version where Apache has been replaced with the more lightweight web server Nginx.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "a2e5ed1a-6f01-4f20-aabd-4115c67df590", "name": "2019-04-09T13:31:10.613803", "local_images": [{"id": "32332006-1420-4260-97c7-c1da586f68cd", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "d16622f6-32c1-4d16-a3ca-38b23d3a25fb", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "1bd37d60-4494-485f-9a82-0a211005489c", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "415d3727-0013-419a-abc6-1a688b096730", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "26c3727a-5b77-4b26-89c9-445ea2006f07", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "155ab61a-e069-4acb-bae3-e8217c5c0376", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}], "creation_date": "2019-04-09T13:31:11.315416+00:00", "modification_date": "2019-04-09T13:31:11.315416+00:00"}], "categories": ["instantapp"], "current_public_version": "a2e5ed1a-6f01-4f20-aabd-4115c67df590", "creation_date": "2016-03-07T21:06:53.552980+00:00", "modification_date": "2019-04-09T13:31:12.129567+00:00", "valid_until": null}, {"id": "98ad7ccb-cc7f-4828-9da3-113e9c1bd2db", "name": "Mattermost", "label": "mattermost", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/mattermost.png", "description": "self-hosted Slack-alternative", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "42371bf7-c1ca-4889-a6d4-43febda865ca", "name": "2018-05-03T10:27:55.021511", "local_images": [{"id": "486e128c-fde7-42d7-9200-5d91b8dc2761", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "eb2ed407-177c-4195-a4ca-f3baa85e62ed", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}], "creation_date": "2018-05-03T10:27:55.610920+00:00", "modification_date": "2018-05-03T10:27:55.610920+00:00"}], "categories": ["instantapp"], "current_public_version": "42371bf7-c1ca-4889-a6d4-43febda865ca", "creation_date": "2016-07-11T14:52:57.803007+00:00", "modification_date": "2019-03-26T14:00:51.938920+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": "2fe66cc6-8985-4b5f-8325-83acc0589436", "name": "2019-04-16T12:25:37.374676", "local_images": [{"id": "e9af0a24-4312-4305-9386-b3a79e02f92d", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "c38073cf-ee40-4dc2-8059-ec2845f38f46", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "b9e319f5-ac4c-400d-8ff6-a6a769755190", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "0390c3e0-186d-4b24-8d0d-0e08b74fb59a", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "900971a4-3a3e-4ef9-b92f-b33c366c9f5c", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "7b7d4dde-6fe1-4586-a5a5-ae1af2ca2605", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-04-16T12:25:38.052537+00:00", "modification_date": "2019-04-16T12:25:38.052537+00:00"}], "categories": ["instantapp"], "current_public_version": "2fe66cc6-8985-4b5f-8325-83acc0589436", "creation_date": "2019-04-16T12:22:56.930842+00:00", "modification_date": "2019-04-16T12:25:38.758921+00:00", "valid_until": null}, {"id": "d11d7cc2-6ec8-4f95-a286-24fb5bac9e39", "name": "Node.js", "label": "node.js", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/nodejs.png", "description": "Node.js is an open source, cross-platform runtime environment for server-side and networking applications.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "af308511-bcb3-4583-b0e0-79dbb1eea63e", "name": "2018-04-18T10:07:15.691016", "local_images": [{"id": "a8020f20-8a66-43f3-8253-35941db3d237", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "3cc79cc6-4649-46d9-a2b6-698f1236e1d0", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "c9fb2bed-a9b8-4e1a-bf15-db8e763fe7a7", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "f01db1d0-092a-47de-a32e-09bd6bda7715", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "6f2e99e8-da99-4990-b689-7294e8a604fa", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "03980aee-14cd-44f1-be3c-508c8b8a19e6", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}], "creation_date": "2018-04-18T10:07:15.744660+00:00", "modification_date": "2018-04-18T10:07:15.744660+00:00"}], "categories": ["instantapp"], "current_public_version": "af308511-bcb3-4583-b0e0-79dbb1eea63e", "creation_date": "2016-03-07T21:06:07.014951+00:00", "modification_date": "2019-03-26T14:00:51.148549+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": "mtouron@ocs.online.net"}, "versions": [{"id": "d812e374-1169-4c91-aa90-c72acceeecb2", "name": "2019-03-25T13:06:01.961936", "local_images": [{"id": "b15ddb1a-0611-412e-881a-3aed1b36392b", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "02906ae8-bf44-4dd0-bd05-6312dd9fa234", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "3aa3622c-45d4-4388-9618-cce6974c71a0", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "cb4f1087-8edc-4a03-a718-e646cc21a14f", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a5430536-2a51-425d-8613-ef84dae91e27", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "51573d2d-301f-4d24-b0d6-f151728c82f5", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "DEV1-S"]}, {"id": "cac79531-98d5-48fa-aba1-8250214b88a3", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "4f15411a-ced3-456b-858c-a9fbfd22d37b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-25T13:06:02.622633+00:00", "modification_date": "2019-03-25T13:06:02.622633+00:00"}], "categories": ["instantapp"], "current_public_version": "d812e374-1169-4c91-aa90-c72acceeecb2", "creation_date": "2016-03-07T21:04:57.667667+00:00", "modification_date": "2019-03-26T14:00:52.955853+00:00", "valid_until": null}, {"id": "e22a5d54-ecb5-4fdd-a130-a473737ff7ab", "name": "ownCloud", "label": "owncloud", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/owncloud.png", "description": "ownCloud lets you sync & share your files, calendar, contacts and more. Access your data from all your devices, on an open platform you can extend and modify.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "c9c02a9c-e072-48af-aefd-bf6be9028022", "name": "2018-04-18T10:09:38.952503", "local_images": [{"id": "a5fb716a-1c60-4740-a179-98ce315ca3d7", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "2fdbbbb4-3b63-403b-9604-27713971efd6", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "4208a611-a789-40ea-ac0e-fb3001ee39a9", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "93de8eae-535f-47bd-88fa-84af7b5eaf76", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "7ad0b56b-1128-418d-9a5c-c006375e63ff", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1dc04f4a-6d85-4f21-b6e8-0de9ea3efabf", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-18T10:09:39.010195+00:00", "modification_date": "2018-04-18T10:09:39.010195+00:00"}], "categories": ["instantapp"], "current_public_version": "c9c02a9c-e072-48af-aefd-bf6be9028022", "creation_date": "2016-03-07T21:05:14.365925+00:00", "modification_date": "2019-03-26T14:00:52.457272+00:00", "valid_until": null}, {"id": "58a551e0-1b8b-4c83-82e7-1b4602ad43d1", "name": "PrestaShop", "label": "prestashop", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/prestashop.png", "description": "PrestaShop is a free, open source e-commerce solution.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "6c459ab1-4f1a-4f87-b92e-c00849c93fde", "name": "2018-05-16T14:57:15.505378", "local_images": [{"id": "4d07fcfa-ccda-4945-81aa-8de2206b39c0", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "73db574d-d5a0-49d5-b6ca-dd662895fac3", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "c97dc20f-8066-4d56-aabf-2b75162c0f9f", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "c78c3206-eb2b-4217-ad7c-0aca98dec145", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "7f91941c-f06a-4103-91a4-793f03b11fda", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "271a9c1f-73ef-4943-bac7-799130228040", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}], "creation_date": "2018-05-16T14:57:16.059809+00:00", "modification_date": "2018-05-16T14:57:16.059809+00:00"}], "categories": ["instantapp"], "current_public_version": "6c459ab1-4f1a-4f87-b92e-c00849c93fde", "creation_date": "2016-03-07T21:01:47.997930+00:00", "modification_date": "2019-03-26T14:00:50.067950+00:00", "valid_until": null}, {"id": "5c0f7971-c308-442e-82ab-2eb147439bd7", "name": "Python", "label": "python", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/python.png", "description": "The intended audience of this InstantApp is Python developers who want to bootstrap or test a Python application easily, in seconds.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "2642a982-e61d-4a58-8105-8838a69a85e3", "name": "2018-04-17T16:43:36.031203", "local_images": [{"id": "70b9c9cf-c2d9-4a80-b450-a7aef8226d96", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5218fa4e-8239-4831-ac2a-c96e23f387a2", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "f205e2a6-621a-4534-a5d1-36f6cf1f8376", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "613a5226-3d97-4f0e-abe2-99385a050784", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "d8416c83-8713-4622-b5aa-87388d6060c7", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1fc8dc9e-56ef-4e1f-a7b3-3daaef994b9c", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-17T16:43:36.089412+00:00", "modification_date": "2018-04-17T16:43:36.089412+00:00"}], "categories": ["instantapp"], "current_public_version": "2642a982-e61d-4a58-8105-8838a69a85e3", "creation_date": "2016-03-07T21:05:46.642023+00:00", "modification_date": "2019-03-26T14:00:49.970905+00:00", "valid_until": null}, {"id": "42866fbe-9168-4f77-8271-09beb6049a07", "name": "Ruby", "label": "ruby", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ruby.png", "description": "A dynamic, open source programming language with a focus on simplicity and productivity.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "5b8c935b-5047-43fd-a423-045dae3e0d78", "name": "2018-04-18T10:21:49.057120", "local_images": [{"id": "09c71ada-00c6-43de-ad44-c77c5b857a05", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "24f2e8ee-80f1-4a8d-83c4-74ed8cd80ed0", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "e2479a13-414b-4a0c-ba50-d01e67ee8600", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "f83a03fa-58eb-4b35-bda9-1a42b6d6d90d", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "8e3f0420-850e-4711-95df-3c1c11ee6854", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a6ed60a0-c967-4ef5-9432-5173f8c075a6", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-18T10:21:49.119857+00:00", "modification_date": "2018-04-18T10:21:49.119857+00:00"}], "categories": ["instantapp"], "current_public_version": "5b8c935b-5047-43fd-a423-045dae3e0d78", "creation_date": "2016-03-07T22:15:25.347873+00:00", "modification_date": "2019-03-26T14:00:54.119256+00:00", "valid_until": null}, {"id": "4e18f1fc-0b66-4692-a38d-bfa4c94f29de", "name": "Torrents", "label": "torrents", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/seedbox.png", "description": "The torrents InstantApp spawns a private server to upload and download your digital files.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "53d2e4fb-20df-4ba9-8d65-29256f2be480", "name": "2019-03-25T13:04:01.408435", "local_images": [{"id": "41d0db97-4822-4642-96ec-6f3fbcfc167c", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "3fbe5f72-81da-4a0a-91ef-36ab68fc801e", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "1aed7396-79dc-431d-af03-d3dde35d195f", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "DEV1-S"]}, {"id": "398875b6-de43-4946-976f-ba5189954912", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "a3160162-3d72-4632-8e42-4849a1280743", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "f5d116e3-2b58-44cf-a83a-cd0682135473", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-25T13:04:02.099902+00:00", "modification_date": "2019-03-25T13:04:02.099902+00:00"}], "categories": ["instantapp"], "current_public_version": "53d2e4fb-20df-4ba9-8d65-29256f2be480", "creation_date": "2016-03-07T21:08:02.980958+00:00", "modification_date": "2019-03-26T14:00:51.427329+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": "449bdf2d-9c08-4db6-9c17-156d6cb083bc", "name": "2021-03-25T11:49:34.134953+00:00", "local_images": [{"id": "58ee4636-3043-4ca3-82c4-5976a071453d", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "9ca69019-edd2-4adf-bc0a-bd259ff8dc55", "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"]}, {"id": "7af873db-4999-4147-a176-59f6f22833fd", "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"]}, {"id": "a3ea99d3-c2fe-4189-acd3-219d9057eadd", "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", "STARDUST1-S"]}, {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "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", "STARDUST1-S"]}], "creation_date": "2021-03-25T11:49:34.183695+00:00", "modification_date": "2021-03-25T11:49:34.183695+00:00"}], "categories": ["distribution"], "current_public_version": "449bdf2d-9c08-4db6-9c17-156d6cb083bc", "creation_date": "2020-02-17T15:50:48.980694+00:00", "modification_date": "2021-03-25T12:12:21.986402+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": "38be59ec-1291-4696-83a9-f46a2eb2ce70", "name": "2021-01-27T16:04:54.780008", "local_images": [{"id": "cefd1206-67ce-4321-ad7e-090272fbf4e6", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}, {"id": "329dfbda-aa29-438f-bba0-2a1eff865d65", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}], "creation_date": "2021-01-27T16:04:55.121317+00:00", "modification_date": "2021-01-27T16:04:55.121317+00:00"}], "categories": ["Machine Learning"], "current_public_version": "38be59ec-1291-4696-83a9-f46a2eb2ce70", "creation_date": "2019-03-06T17:24:56.871317+00:00", "modification_date": "2021-01-27T16:07:53.196132+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": "5e867d97-93eb-4420-80ee-14e8348d5ad6", "name": "2021-01-27T15:43:05.903480", "local_images": [{"id": "eea5b9d6-0b1f-4411-b369-75a5d4372ca7", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}, {"id": "04495e24-7295-4533-b817-344c36553305", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}], "creation_date": "2021-01-27T15:43:06.292055+00:00", "modification_date": "2021-01-27T15:43:06.292055+00:00"}], "categories": ["Machine Learning"], "current_public_version": "5e867d97-93eb-4420-80ee-14e8348d5ad6", "creation_date": "2019-03-06T17:24:29.909001+00:00", "modification_date": "2021-01-27T15:52:02.617863+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": "mtouron@ocs.online.net"}, "versions": [{"id": "3fb22e1f-de7f-4787-9bf8-32770151a45e", "name": "2019-03-08T08:58:28.893091", "local_images": [{"id": "8523fb41-500a-4f21-998b-890908da6119", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5645133b-67a3-4644-9941-16f7e2b428ea", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "757fac76-5265-46f8-8a1f-00c0fb270010", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "0bfbc358-88f6-45b8-ba9d-d47c96a18fa7", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "7a892c1a-bbdc-491f-9974-4008e3708664", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "GP1-XS", "DEV1-M", "DEV1-L", "DEV1-S", "GP1-XL", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S"]}, {"id": "726334eb-0733-4b6a-becd-769ff9bfe16d", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "ad1f7900-e843-4745-846f-9b1ec1230557", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-08T08:58:28.971149+00:00", "modification_date": "2019-03-08T08:58:28.971149+00:00"}], "categories": ["instantapp"], "current_public_version": "3fb22e1f-de7f-4787-9bf8-32770151a45e", "creation_date": "2016-03-07T21:03:59.783534+00:00", "modification_date": "2019-03-26T14:00:50.250657+00:00", "valid_until": null}]}' + headers: + Content-Length: + - "75478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:12 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: + - 0c3bd80c-f209-4ec4-84f3-837811c9a196 + X-Total-Count: + - "33" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/16152446-99ed-4795-9d3f-87ec2f5b891d + method: GET + response: + body: '{"image": {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "210db8e4-9645-4369-aa7e-9caa57ba79dd", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2021-03-25T11:32:29.589126+00:00", "modification_date": "2021-03-25T11:32:29.589126+00:00", "default_bootscript": null, "from_server": null, "state": "available", "zone": "fr-par-1"}}' + headers: + Content-Length: + - "609" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:12 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bab5daa2-d47b-4421-be49-940b058c42ab + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"C1": {"alt_names": [], "arch": "arm", "ncpus": 4, "ram": 2147483648, "gpu": null, "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": true, "monthly_price": 4.32, "hourly_price": 0.006, "capabilities": {"boot_types": ["bootscript", "rescue"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": false, "private_network": 0}, "network": {"ipv6_support": false, "sum_internal_bandwidth": 1073741824, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}]}}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": null, "volumes_constraint": {"min_size": 80000000000, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 28.8, "hourly_price": 0.04, "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": 419430400, "sum_internet_bandwidth": 419430400, "interfaces": [{"internal_bandwidth": 419430400, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}]}}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": null, "volumes_constraint": {"min_size": 40000000000, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 14.4, "hourly_price": 0.02, "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": 314572800, "sum_internet_bandwidth": 314572800, "interfaces": [{"internal_bandwidth": 314572800, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}]}}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": null, "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 7.2, "hourly_price": 0.01, "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": 209715200, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": 209715200, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": null, "volumes_constraint": {"min_size": 120000000000, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 43.2, "hourly_price": 0.06, "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": 524288000, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": 524288000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": null, "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 475.2, "hourly_price": 0.66, "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": 5368709120, "sum_internet_bandwidth": 5368709120, "interfaces": [{"internal_bandwidth": 5368709120, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}]}}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": null, "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 244.8, "hourly_price": 0.34, "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": 1610612736, "sum_internet_bandwidth": 1610612736, "interfaces": [{"internal_bandwidth": 1610612736, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 1610612736}]}}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": null, "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 122.4, "hourly_price": 0.17, "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": 838860800, "sum_internet_bandwidth": 838860800, "interfaces": [{"internal_bandwidth": 838860800, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}]}}, "GP1-VIZ": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": null, "volumes_constraint": {"min_size": 300000000000, "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": 524288000, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": 524288000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": null, "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 1008.0, "hourly_price": 1.4, "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": 10737418240, "sum_internet_bandwidth": 10737418240, "interfaces": [{"internal_bandwidth": 10737418240, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 10737418240}]}}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": null, "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 60.48, "hourly_price": 0.084, "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": 524288000, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": 524288000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 48318382080, "gpu": 1, "volumes_constraint": {"min_size": 400000000000, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 720.0, "hourly_price": 1.0, "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": 1073741824, "sum_internet_bandwidth": 1073741824, "interfaces": [{"internal_bandwidth": 1073741824, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 1073741824}]}}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": null, "volumes_constraint": {"min_size": 10000000000, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 1.8, "hourly_price": 0.0025, "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": 104857600, "sum_internet_bandwidth": 104857600, "interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 104857600}]}}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": null, "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 23.04, "hourly_price": 0.032, "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": null, "sum_internet_bandwidth": 419430400, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 419430400}]}}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": null, "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 11.52, "hourly_price": 0.016, "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": null, "sum_internet_bandwidth": 314572800, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 314572800}]}}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": null, "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 5.76, "hourly_price": 0.008, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": null, "volumes_constraint": {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 2.88, "hourly_price": 0.004, "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": null, "sum_internet_bandwidth": 104857600, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 104857600}]}}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": null, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": null, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": null, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": null, "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 259.2, "hourly_price": 0.36, "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": null, "sum_internet_bandwidth": 1073741824, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}]}}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": null, "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 36.0, "hourly_price": 0.05, "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": null, "sum_internet_bandwidth": 262144000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 262144000}]}}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": null, "volumes_constraint": {"min_size": 300000000000, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 72.0, "hourly_price": 0.1, "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": null, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": null, "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 129.6, "hourly_price": 0.18, "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": null, "sum_internet_bandwidth": 1073741824, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}]}}}}' + headers: + Content-Length: + - "17942" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:12 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: + - f44c389c-bd81-4c17-b5aa-594c69fa7fef + X-Total-Count: + - "24" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"cli-srv-hopeful-ramanujan","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"16152446-99ed-4795-9d3f-87ec2f5b891d","boot_type":"local","project":"951df375-e094-4d26-97c1-ba548eeb9c42"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + body: '{"server": {"id": "f8719720-3296-4553-be7b-948fcf0e7396", "name": "cli-srv-hopeful-ramanujan", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-hopeful-ramanujan", "image": {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "210db8e4-9645-4369-aa7e-9caa57ba79dd", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2021-03-25T11:32:29.589126+00:00", "modification_date": "2021-03-25T11:32:29.589126+00:00", "default_bootscript": null, "from_server": null, "state": "available", "zone": "fr-par-1"}, "volumes": {"0": {"id": "e1492f7d-880b-4768-a0f5-8e4a7255b2d2", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "f8719720-3296-4553-be7b-948fcf0e7396", "name": "cli-srv-hopeful-ramanujan"}, "size": 20000000000, "state": "available", "creation_date": "2021-05-18T12:49:13.343463+00:00", "modification_date": "2021-05-18T12:49:13.343463+00:00", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2021-05-18T12:49:13.343463+00:00", "modification_date": "2021-05-18T12:49:13.343463+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": "54e2d5f6-d79c-44cc-b19f-613699b9cc7e", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2532" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:13 GMT + Location: + - https://par1-cmp-prd-api02.internal.scaleway.com/servers/f8719720-3296-4553-be7b-948fcf0e7396 + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 174e2113-eaa0-4f9a-83f8-36ac38f13bd2 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"project":"951df375-e094-4d26-97c1-ba548eeb9c42"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + body: '{"ip": {"id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", "address": "51.15.129.58", "reverse": null, "server": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "zone": "fr-par-1", "tags": []}}' + headers: + Content-Length: + - "253" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:13 GMT + Location: + - https://par1-cmp-prd-api02.internal.scaleway.com/ips/edb87e2b-3637-4cb3-bca6-afaab47f6a30 + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ab9dff2-63a3-4115-b712-be2142ae8d77 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"server":"f8719720-3296-4553-be7b-948fcf0e7396"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.129.58 + method: PATCH + response: + body: '{"ip": {"id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", "address": "51.15.129.58", "reverse": null, "server": {"id": "f8719720-3296-4553-be7b-948fcf0e7396", "name": "cli-srv-hopeful-ramanujan"}, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "zone": "fr-par-1", "tags": []}}' + headers: + Content-Length: + - "332" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 91fbbf9e-ee16-4c66-a9f5-3a3bc5059cc5 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f8719720-3296-4553-be7b-948fcf0e7396 + method: GET + response: + body: '{"server": {"id": "f8719720-3296-4553-be7b-948fcf0e7396", "name": "cli-srv-hopeful-ramanujan", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-hopeful-ramanujan", "image": {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "210db8e4-9645-4369-aa7e-9caa57ba79dd", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2021-03-25T11:32:29.589126+00:00", "modification_date": "2021-03-25T11:32:29.589126+00:00", "default_bootscript": null, "from_server": null, "state": "available", "zone": "fr-par-1"}, "volumes": {"0": {"id": "e1492f7d-880b-4768-a0f5-8e4a7255b2d2", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "f8719720-3296-4553-be7b-948fcf0e7396", "name": "cli-srv-hopeful-ramanujan"}, "size": 20000000000, "state": "available", "creation_date": "2021-05-18T12:49:13.343463+00:00", "modification_date": "2021-05-18T12:49:13.343463+00:00", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", "address": "51.15.129.58", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2021-05-18T12:49:13.343463+00:00", "modification_date": "2021-05-18T12:49:13.343463+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": "54e2d5f6-d79c-44cc-b19f-613699b9cc7e", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2619" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 75693e96-8ba2-4beb-8680-31f42c99f5be + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f8719720-3296-4553-be7b-948fcf0e7396 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0300385c-f0f0-4b45-a2fe-24fbb6f62cc6 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/edb87e2b-3637-4cb3-bca6-afaab47f6a30 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:13 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7e691231-1305-4d20-b187-4bc32dbba01f + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e1492f7d-880b-4768-a0f5-8e4a7255b2d2 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:14 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 166933f5-452b-461d-96b1-bd013448d372 + status: 204 No Content + code: 204 + duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-ip-attach-with-ip.golden b/internal/namespaces/instance/v1/testdata/test-ip-attach-with-ip.golden new file mode 100644 index 0000000000..2377a2f5f5 --- /dev/null +++ b/internal/namespaces/instance/v1/testdata/test-ip-attach-with-ip.golden @@ -0,0 +1,25 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟩🟩🟩 STDOUT️ 🟩🟩🟩️ +IP.ID edb87e2b-3637-4cb3-bca6-afaab47f6a30 +IP.Address 51.15.129.58 +IP.Server.ID f8719720-3296-4553-be7b-948fcf0e7396 +IP.Server.Name cli-srv-hopeful-ramanujan +IP.Organization 951df375-e094-4d26-97c1-ba548eeb9c42 +IP.Project 951df375-e094-4d26-97c1-ba548eeb9c42 +IP.Zone fr-par-1 +🟩🟩🟩 JSON STDOUT 🟩🟩🟩 +{ + "ip": { + "id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", + "address": "51.15.129.58", + "reverse": null, + "server": { + "id": "f8719720-3296-4553-be7b-948fcf0e7396", + "name": "cli-srv-hopeful-ramanujan" + }, + "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", + "tags": [], + "project": "951df375-e094-4d26-97c1-ba548eeb9c42", + "zone": "fr-par-1" + } +} diff --git a/internal/namespaces/instance/v1/testdata/test-ip-attach-with-uuid.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-ip-attach-with-uuid.cassette.yaml new file mode 100644 index 0000000000..d85757323e --- /dev/null +++ b/internal/namespaces/instance/v1/testdata/test-ip-attach-with-uuid.cassette.yaml @@ -0,0 +1,335 @@ +--- +version: 1 +interactions: +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/marketplace/v1/images?page=1 + method: GET + response: + body: '{"images": [{"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": "46b87e8b-e9b5-417f-a185-3d0fac2531bc", "name": "2021-03-30T08:50:27.029754+00:00", "local_images": [{"id": "5e84372e-6abe-4df5-834d-b12af4b24af8", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "a7306ef9-5e1b-464d-a409-a44026d91a9e", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "a5076337-734f-4b99-95ed-9a5bc73b9b09", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "7663c62b-40e3-4e6b-a835-70723ec2050b", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "5dd154af-ddad-496f-b631-388f0a787df1", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "62ad764e-298b-4e46-827d-be196f7f0b6b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "f63fe42a-900f-4a5e-ba99-ab0e59469b7e", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "28c59566-b53c-45dc-844d-43029388152d", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "b4bdbee1-e1f1-4436-8de4-bdb1b6ba4803", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "bbe8ed3d-c693-4437-b2dd-5d5968655f94", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "60eb89c7-1c29-4a94-a954-dddb81fc1a55", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}], "creation_date": "2021-03-30T08:50:27.247448+00:00", "modification_date": "2021-03-30T08:50:27.247448+00:00"}], "categories": ["distribution"], "current_public_version": "46b87e8b-e9b5-417f-a185-3d0fac2531bc", "creation_date": "2018-04-27T14:07:25.221998+00:00", "modification_date": "2021-04-01T07:04:52.514102+00:00", "valid_until": null}, {"id": "acf93867-88d9-40ee-99ea-6b2bb1ee8f0c", "name": "Ubuntu Xenial", "label": "ubuntu_xenial", "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": "f71f0db2-513e-4e32-8b85-85c153b67b39", "name": "2021-03-30T09:22:06.072470+00:00", "local_images": [{"id": "245e5cea-a9b4-4a36-9055-27185afe8690", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "f1b14363-cea2-4b85-84c7-602d24474b99", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "75ace7bb-699b-4cea-813c-633c31de3e9e", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "6c34a3f3-5e8a-455b-9bc2-f07c4c35bf89", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "605ceb9b-0d67-4565-b324-6dfff7c1307e", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "7d04dd2a-6cee-4aec-be9e-f87154009112", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "16ca98f1-89f1-4315-a7fd-a711ac3bcb83", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "3d6804e0-086e-4a06-8124-7240a657668d", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "c40fbabc-efc8-4e04-91ea-5e1e22daece1", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "bd859e89-fb2d-466a-a546-383630a1ead1", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "a5f6bb77-3d64-4f7f-abe0-72492b1bc020", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}], "creation_date": "2021-03-30T09:22:06.123537+00:00", "modification_date": "2021-03-30T09:22:06.123537+00:00"}], "categories": ["distribution"], "current_public_version": "f71f0db2-513e-4e32-8b85-85c153b67b39", "creation_date": "2016-04-22T13:27:33.769932+00:00", "modification_date": "2021-04-01T07:06:41.643152+00:00", "valid_until": null}, {"id": "c94b5df7-e698-4ac9-b273-565d18f5f8d2", "name": "Debian Stretch", "label": "debian_stretch", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", "description": "Debian is a free, powerful and stable operating system.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build System"}, "versions": [{"id": "a1478726-083c-4d31-815d-255e07123155", "name": "2021-03-30T11:48:36.852155+00:00", "local_images": [{"id": "2e7e23ee-db6b-4d86-a779-abd90d500482", "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"]}, {"id": "37938de8-e3be-479a-895d-095158f76212", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "0ac73990-3bd5-424a-8128-0825821c0c4f", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "5f7ab0cd-d10e-49a0-91c8-315ed8a6a1a4", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "X64-15GB", "C2L", "C2M", "X64-30GB", "X64-120GB", "X64-60GB"]}, {"id": "bd6ba96e-d4c4-41f9-88e2-8dad3e6f085b", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "9096ef85-6520-4b8e-9303-77fd51ec3c5a", "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", "STARDUST1-S"]}, {"id": "6c694560-503e-4463-8cc8-4b5ae11b0fca", "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"]}, {"id": "d954dc33-c52e-4960-93e1-b69c85d169be", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "22a1bd8d-4498-4800-a8e5-4bc85001176c", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "X64-15GB", "C2L", "C2M", "X64-30GB", "X64-120GB", "X64-60GB"]}, {"id": "86740237-62fc-4538-9b70-4373942f53d3", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "eb803e1e-36ff-4fec-9a68-20da4cb95c0d", "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", "STARDUST1-S"]}], "creation_date": "2021-03-30T11:48:36.906051+00:00", "modification_date": "2021-03-30T11:48:36.906051+00:00"}], "categories": ["distribution"], "current_public_version": "a1478726-083c-4d31-815d-255e07123155", "creation_date": "2017-06-26T15:37:13.460764+00:00", "modification_date": "2021-04-01T07:10:04.448317+00:00", "valid_until": null}, {"id": "fb619bdf-834e-4c71-b7b8-15b5546d18bd", "name": "Debian Jessie", "label": "debian_jessie", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", "description": "Debian is a free, powerful and stable operating system.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "d3846a7b-8219-4938-ad96-cc2173e22481", "name": "2018-04-10T22:31:04.321157", "local_images": [{"id": "2dfad6d2-e527-4e93-8eb1-8dc57803b310", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "610f68d5-cbad-4923-98ae-782af8f3b527", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "dc22e553-2d2e-4689-94f8-8817db824202", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "2e570f53-199e-47cc-95dd-f7bc392496e3", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "abf9e3a2-7171-4764-91ef-57f30b21193d", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "69cbdd54-88a1-4458-b75e-662a0848a7ce", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "e1dd422e-44eb-451c-b60c-7330ff421bfb", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1aa604d6-2ec2-4774-91a2-56309dacde47", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2018-04-10T22:31:04.322822+00:00", "modification_date": "2018-04-10T22:31:04.322822+00:00"}], "categories": ["distribution"], "current_public_version": "d3846a7b-8219-4938-ad96-cc2173e22481", "creation_date": "2016-03-05T14:52:36.322319+00:00", "modification_date": "2019-03-26T14:00:50.449502+00:00", "valid_until": null}, {"id": "1d47b370-ac63-43b1-9f34-7328675e5e18", "name": "CentOS 7.6", "label": "centos_7.6", "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": "11111111-1111-4111-8111-111111111111", "name": "OCS"}, "versions": [{"id": "53138072-3099-4566-8b18-de7b2739696a", "name": "2019-03-18T09:29:00.168590", "local_images": [{"id": "05794ee5-c6d2-4d69-86dd-f1fc9032921d", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "VC1M", "C2L", "C2M", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "0f44b130-2bc7-4f82-993e-de9d1042c56e", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "10aae8d8-0073-44f9-ac19-a171ac40bc78", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "775a2a9f-551a-4309-838f-64ed7438c263", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2019-03-18T09:29:00.247544+00:00", "modification_date": "2019-03-18T09:29:00.247544+00:00"}], "categories": ["distribution"], "current_public_version": "53138072-3099-4566-8b18-de7b2739696a", "creation_date": "2019-03-06T11:27:48.406290+00:00", "modification_date": "2019-03-26T14:00:50.839069+00:00", "valid_until": null}, {"id": "98fc244a-ed4c-4523-bd17-b9c4070b8e7e", "name": "CentOS 7.4", "label": "centos_7.4", "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": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "31be34e5-074d-4c63-8c77-454459f77c3f", "name": "2018-04-20T13:55:06.817954", "local_images": [{"id": "ec8b431e-ad39-4523-8b94-f3fa7f3cbd06", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "7220ac63-bac8-484b-9d44-93e3bd01f5a6", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "9d3bb257-9bb3-4f7e-ab75-cbdae33d41a4", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a2d1bdb1-a1e1-4e39-9ffa-d0da7de02f38", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2018-04-20T13:55:06.824033+00:00", "modification_date": "2018-04-20T13:55:06.824033+00:00"}], "categories": ["distribution"], "current_public_version": "31be34e5-074d-4c63-8c77-454459f77c3f", "creation_date": "2018-04-19T10:12:28.968536+00:00", "modification_date": "2019-03-26T14:00:53.445597+00:00", "valid_until": null}, {"id": "69adec15-f1a7-469a-9ba5-868577832521", "name": "Fedora 29", "label": "fedora_29", "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": "11111111-1111-4111-8111-111111111111", "name": "OCS"}, "versions": [{"id": "a0f02365-f1af-48cb-b82d-75853a4e05e1", "name": "2019-03-06T09:08:01.016040", "local_images": [{"id": "541f4562-5417-4b59-85d6-caaf64c1f127", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "3c0f706e-0947-47a3-88a3-595c29f7567a", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "1c7efe35-332e-4fde-b8d6-30606b81a8e7", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "90c83cdc-8560-4543-9033-1e63e3474e12", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-06T09:08:01.112958+00:00", "modification_date": "2019-03-06T09:08:01.112958+00:00"}], "categories": ["distribution"], "current_public_version": "a0f02365-f1af-48cb-b82d-75853a4e05e1", "creation_date": "2019-03-06T09:07:51.652433+00:00", "modification_date": "2019-03-26T14:00:51.848785+00:00", "valid_until": null}, {"id": "30d0f04f-6422-4b74-9ce9-1c2267419978", "name": "Fedora 28", "label": "fedora_28", "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": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "49e33199-28cc-44d6-bb2e-a6147944ad5c", "name": "2018-05-03T12:01:10.135200", "local_images": [{"id": "830aad94-24e5-4363-b2c3-e62921bd9294", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "c9cd1782-2159-44b8-83b1-9c48ed6c8a63", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "27c84474-0af7-473f-9295-b5b85be5e429", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "5c7b710b-ff79-4e56-81d3-6bf31a946ad0", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-05-03T12:01:10.147973+00:00", "modification_date": "2018-05-03T12:01:10.147973+00:00"}], "categories": ["distribution"], "current_public_version": "49e33199-28cc-44d6-bb2e-a6147944ad5c", "creation_date": "2018-05-03T09:51:57.274011+00:00", "modification_date": "2019-03-26T14:00:50.156015+00:00", "valid_until": null}, {"id": "4bff4f37-3ef9-457e-9e8d-4a786cb2a5f2", "name": "Fedora 27", "label": "fedora_27", "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": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "45b5823f-8ddf-4ea8-b106-33d2df127cdf", "name": "2018-09-06T10:51:13.011044", "local_images": [{"id": "097a100e-fd2f-4918-8a5b-d86de5a489be", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "73f0bcd8-a152-4665-ac09-1b105905a475", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "9bef3647-8ccb-43aa-b753-d289851e85bf", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "801b5f02-eb8c-4d77-bce6-5cea21bf9260", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-09-06T10:51:13.009967+00:00", "modification_date": "2018-09-06T10:51:13.009967+00:00"}], "categories": ["distribution"], "current_public_version": "45b5823f-8ddf-4ea8-b106-33d2df127cdf", "creation_date": "2018-04-19T10:14:08.648100+00:00", "modification_date": "2019-03-26T14:00:53.140907+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": "mtouron@ocs.online.net"}, "versions": [{"id": "f7696517-bc49-448b-9869-f2c84e7c2a96", "name": "2018-04-20T15:59:04.593811", "local_images": [{"id": "f21defd0-9fd9-4fb2-a29a-22844a6be3cd", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "3c904f73-080e-4c6f-8b28-8426cfdcb3c7", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "1e23c590-a371-403b-a8db-cfd9a2f74c03", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "6a347714-49ab-44a6-92fb-1f0ba6aa96e9", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2018-04-20T15:59:04.594929+00:00", "modification_date": "2018-04-20T15:59:04.594929+00:00"}], "categories": ["distribution"], "current_public_version": "f7696517-bc49-448b-9869-f2c84e7c2a96", "creation_date": "2016-03-07T20:55:32.213089+00:00", "modification_date": "2019-03-26T14:00:49.327070+00:00", "valid_until": null}, {"id": "c0649a2a-e6bf-4712-9303-8d967153209c", "name": "Alpine Linux", "label": "alpine_linux", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/alpinelinux.png", "description": "Alpine Linux is security-oriented, lightweight Linux distribution based on musl libc and busybox.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "be2293b6-9eba-4497-9659-2cfb927483b5", "name": "2018-04-26T10:18:10.196011", "local_images": [{"id": "24141068-1043-4885-bf2b-8290f617e273", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "241b0bb3-9eed-4a7b-b0fd-71c45452ac95", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "GP1-XS", "DEV1-M", "DEV1-L", "DEV1-S", "GP1-XL", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S"]}, {"id": "7ba96c78-de91-4116-a075-54284ac58632", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "e9607990-506c-478b-b134-649a3777472b", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-26T10:18:10.201002+00:00", "modification_date": "2018-04-26T10:18:10.201002+00:00"}], "categories": ["distribution"], "current_public_version": "be2293b6-9eba-4497-9659-2cfb927483b5", "creation_date": "2016-03-05T14:49:50.255568+00:00", "modification_date": "2019-03-26T14:00:54.425917+00:00", "valid_until": null}, {"id": "293a2ddf-6e33-4e63-81f0-fbdd90641480", "name": "CentOS 8", "label": "centos_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": "ddda3abc-59c1-4385-b551-65e63f7f759e", "name": "2021-03-31T11:10:17.416332+00:00", "local_images": [{"id": "4d93a3c2-771d-446d-a904-c2ac938eace2", "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", "STARDUST1-S"]}, {"id": "f07fc6dd-1219-424b-bd5f-eabc145c1b61", "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"]}, {"id": "a79c7b52-a9e0-4474-b6fd-b436c4ad8d0b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "b23e727e-1e01-49e9-ae1d-a29180228ae5", "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"]}, {"id": "0caa749a-160f-4361-8007-0d1b5ea265c9", "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", "STARDUST1-S"]}], "creation_date": "2021-03-31T11:10:17.605755+00:00", "modification_date": "2021-03-31T11:10:17.605755+00:00"}], "categories": ["distribution"], "current_public_version": "ddda3abc-59c1-4385-b551-65e63f7f759e", "creation_date": "2020-04-29T11:48:57.810456+00:00", "modification_date": "2021-04-01T07:12:10.660353+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": "70a28442-1712-4a06-a77c-2f4b712bcc3d", "name": "2021-03-30T11:22:41.282946+00:00", "local_images": [{"id": "ba956003-4988-4c30-91ba-5320ae5d8bac", "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"]}, {"id": "61ae99dc-aaef-4a32-b2f4-07f1a534aaa4", "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", "STARDUST1-S"]}, {"id": "61010e34-7f1e-402b-a253-028a714a6678", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "4720c10f-59e3-4e20-915b-dcee1fc34c11", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "cc9188b3-3938-47d7-b091-c9ecad1fe507", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "d178f0f3-da78-4691-8368-2ac175f9940b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "9d6e8a2c-31a9-439c-a4c5-9fba1c5b96ed", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "f3a69d77-3faf-4a0d-97c1-1994d96cffa5", "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"]}, {"id": "d9c10ab7-1496-4be8-a4d9-9dec4571f61f", "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", "STARDUST1-S"]}], "creation_date": "2021-03-30T11:22:41.337836+00:00", "modification_date": "2021-03-30T11:22:41.337836+00:00"}], "categories": ["distribution"], "current_public_version": "70a28442-1712-4a06-a77c-2f4b712bcc3d", "creation_date": "2019-07-16T13:55:36.377559+00:00", "modification_date": "2021-04-01T07:08:18.822693+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": "mtouron@ocs.online.net"}, "versions": [{"id": "bf30c937-6e89-4019-ad2a-92156a62cf3e", "name": "2019-03-07T17:07:39.004809", "local_images": [{"id": "89c80d27-ddf4-4ffa-8215-b335cce3fd05", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "99e2a9c6-f0b9-42b6-8823-8b0d86ffe9bf", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "45a7e942-1fb0-48c0-bbf6-0acb9af24604", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "c669011a-ee16-42b6-b0c3-ecd19e419539", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "dcf35840-c007-4c8b-a48b-227cfd8a347b", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "df7298ce-ab95-4384-90d1-76b8fff31f06", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "929c50f5-721c-4672-817c-8704eb4bc1d1", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-07T17:07:39.090644+00:00", "modification_date": "2019-03-07T17:07:39.090644+00:00"}], "categories": ["instantapp"], "current_public_version": "bf30c937-6e89-4019-ad2a-92156a62cf3e", "creation_date": "2016-03-05T15:11:26.847640+00:00", "modification_date": "2019-03-26T14:00:49.524465+00:00", "valid_until": null}, {"id": "e549e5b4-33eb-4c97-950a-8baf107f895f", "name": "Fedora 32", "label": "fedora_32", "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": "75ba84da-ee4f-44ca-9fac-49ac43e8a0d2", "name": "2021-03-31T14:22:08.724842+00:00", "local_images": [{"id": "19717715-2e56-41d4-9795-bf3d0d509d5a", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "5a987969-ab7b-4e03-909f-3aed546cee06", "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"]}, {"id": "616bcd6c-b87e-4eb7-824c-ade385459a5a", "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", "STARDUST1-S"]}, {"id": "ffd5ed07-3ed8-46cb-9b78-b267b7848cbf", "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"]}, {"id": "dd8bf78f-59c8-452a-b41e-0f43d25d6220", "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", "STARDUST1-S"]}], "creation_date": "2021-03-31T14:22:08.799093+00:00", "modification_date": "2021-03-31T14:22:08.799093+00:00"}], "categories": ["distribution"], "current_public_version": "75ba84da-ee4f-44ca-9fac-49ac43e8a0d2", "creation_date": "2020-05-19T08:21:31.875735+00:00", "modification_date": "2021-04-01T07:14:57.371602+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": "mtouron@ocs.online.net"}, "versions": [{"id": "a389c94b-8b19-4528-a4f6-0b7cac3425e9", "name": "2019-04-09T13:31:03.352588", "local_images": [{"id": "06a2a6e9-922d-4353-9472-bbb1f79fda63", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "3e71b78e-dd20-48ae-8d6e-f594cb255af5", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "4527e41c-0e90-43a8-857e-d9584bf8467f", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1cd308b9-5988-4b04-80a1-389f5f63738b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-04-09T13:31:03.648676+00:00", "modification_date": "2019-04-09T13:31:03.648676+00:00"}], "categories": ["instantapp"], "current_public_version": "a389c94b-8b19-4528-a4f6-0b7cac3425e9", "creation_date": "2016-03-07T21:06:22.770864+00:00", "modification_date": "2019-04-09T13:31:04.022755+00:00", "valid_until": null}, {"id": "90d512b8-e4b7-4821-98e9-78241d73a7e6", "name": "Gogs", "label": "gogs", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/gogs.png", "description": "A painless self-hosted Git service.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "1b9e22e3-6a29-4f42-acfd-281ad086ee1d", "name": "2018-05-16T15:11:25.303762", "local_images": [{"id": "776705c4-be8e-4a27-b740-2e8bbba518c5", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a513a250-e6e9-4687-892e-9d10b29e3972", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "d1341ece-ffda-4386-ad3a-27d60b650401", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "69b8bc0e-7771-42af-a4ad-ca756c31a18a", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}], "creation_date": "2018-05-16T15:11:25.881343+00:00", "modification_date": "2018-05-16T15:11:25.881343+00:00"}], "categories": ["instantapp"], "current_public_version": "1b9e22e3-6a29-4f42-acfd-281ad086ee1d", "creation_date": "2016-03-07T21:00:44.946716+00:00", "modification_date": "2019-03-26T14:00:54.513196+00:00", "valid_until": null}, {"id": "6c8d25c0-cb6f-4220-98aa-830b7e479ba5", "name": "Golang", "label": "golang", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/golang.png", "description": "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.A dynamic, open source programming language with a focus on simplicity and productivity.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "880194c8-53ce-4b6b-a274-4f79307e2f8e", "name": "2018-04-18T08:00:48.129246", "local_images": [{"id": "43213956-c7a3-44b8-9d96-d51fa7457969", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5ffb52aa-ea55-4596-9d0f-e403701b6624", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "bef7a6af-1bab-490a-a6cb-6a07c1b9ac7b", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "f0b7d9b8-aa31-45b4-9f7e-a68aa164ce6f", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "76ca1eb7-f68f-4770-a7a1-ab7665ae3297", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "0d954c34-341c-483a-be1c-71cf197343ed", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}], "creation_date": "2018-04-18T08:00:48.175340+00:00", "modification_date": "2018-04-18T08:00:48.175340+00:00"}], "categories": ["instantapp"], "current_public_version": "880194c8-53ce-4b6b-a274-4f79307e2f8e", "creation_date": "2016-03-08T07:01:11.482482+00:00", "modification_date": "2019-03-26T14:00:52.861225+00:00", "valid_until": null}, {"id": "d72d1b73-7460-446b-91fb-b451d079aa4d", "name": "Java", "label": "java", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/java.png", "description": "Java is a computer programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "f3f69cca-aadb-4e5e-94b0-254ce05a6639", "name": "2018-04-18T10:11:18.477156", "local_images": [{"id": "c50cb4b2-bf7b-47e2-ab5f-3a9d3d4c1aef", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "98c93894-26a8-463b-a72b-c9d2b531b95d", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "43c43b5e-1e4f-4905-baef-71df3c565b4d", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "0c3f9f03-f490-444b-a05e-f342e917fed0", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5e07622b-ad8b-4f65-b55f-cca18c3c0bbf", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "c0330755-e5d0-4c2c-ad0e-70687e1dccbb", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}], "creation_date": "2018-04-18T10:11:18.535736+00:00", "modification_date": "2018-04-18T10:11:18.535736+00:00"}], "categories": ["instantapp"], "current_public_version": "f3f69cca-aadb-4e5e-94b0-254ce05a6639", "creation_date": "2016-03-07T21:07:46.908969+00:00", "modification_date": "2019-03-26T14:00:49.430836+00:00", "valid_until": null}, {"id": "986ba672-b489-4f66-9e3b-90194ac336d4", "name": "LEMP stack", "label": "lemp_stack", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/lemp.png", "description": "LEMP stack is a version where Apache has been replaced with the more lightweight web server Nginx.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "a2e5ed1a-6f01-4f20-aabd-4115c67df590", "name": "2019-04-09T13:31:10.613803", "local_images": [{"id": "32332006-1420-4260-97c7-c1da586f68cd", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "d16622f6-32c1-4d16-a3ca-38b23d3a25fb", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "1bd37d60-4494-485f-9a82-0a211005489c", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "415d3727-0013-419a-abc6-1a688b096730", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "26c3727a-5b77-4b26-89c9-445ea2006f07", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "155ab61a-e069-4acb-bae3-e8217c5c0376", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}], "creation_date": "2019-04-09T13:31:11.315416+00:00", "modification_date": "2019-04-09T13:31:11.315416+00:00"}], "categories": ["instantapp"], "current_public_version": "a2e5ed1a-6f01-4f20-aabd-4115c67df590", "creation_date": "2016-03-07T21:06:53.552980+00:00", "modification_date": "2019-04-09T13:31:12.129567+00:00", "valid_until": null}, {"id": "98ad7ccb-cc7f-4828-9da3-113e9c1bd2db", "name": "Mattermost", "label": "mattermost", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/mattermost.png", "description": "self-hosted Slack-alternative", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "42371bf7-c1ca-4889-a6d4-43febda865ca", "name": "2018-05-03T10:27:55.021511", "local_images": [{"id": "486e128c-fde7-42d7-9200-5d91b8dc2761", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "eb2ed407-177c-4195-a4ca-f3baa85e62ed", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}], "creation_date": "2018-05-03T10:27:55.610920+00:00", "modification_date": "2018-05-03T10:27:55.610920+00:00"}], "categories": ["instantapp"], "current_public_version": "42371bf7-c1ca-4889-a6d4-43febda865ca", "creation_date": "2016-07-11T14:52:57.803007+00:00", "modification_date": "2019-03-26T14:00:51.938920+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": "2fe66cc6-8985-4b5f-8325-83acc0589436", "name": "2019-04-16T12:25:37.374676", "local_images": [{"id": "e9af0a24-4312-4305-9386-b3a79e02f92d", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "c38073cf-ee40-4dc2-8059-ec2845f38f46", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "b9e319f5-ac4c-400d-8ff6-a6a769755190", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "0390c3e0-186d-4b24-8d0d-0e08b74fb59a", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "900971a4-3a3e-4ef9-b92f-b33c366c9f5c", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "7b7d4dde-6fe1-4586-a5a5-ae1af2ca2605", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-04-16T12:25:38.052537+00:00", "modification_date": "2019-04-16T12:25:38.052537+00:00"}], "categories": ["instantapp"], "current_public_version": "2fe66cc6-8985-4b5f-8325-83acc0589436", "creation_date": "2019-04-16T12:22:56.930842+00:00", "modification_date": "2019-04-16T12:25:38.758921+00:00", "valid_until": null}, {"id": "d11d7cc2-6ec8-4f95-a286-24fb5bac9e39", "name": "Node.js", "label": "node.js", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/nodejs.png", "description": "Node.js is an open source, cross-platform runtime environment for server-side and networking applications.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "af308511-bcb3-4583-b0e0-79dbb1eea63e", "name": "2018-04-18T10:07:15.691016", "local_images": [{"id": "a8020f20-8a66-43f3-8253-35941db3d237", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "3cc79cc6-4649-46d9-a2b6-698f1236e1d0", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "c9fb2bed-a9b8-4e1a-bf15-db8e763fe7a7", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "f01db1d0-092a-47de-a32e-09bd6bda7715", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "6f2e99e8-da99-4990-b689-7294e8a604fa", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "03980aee-14cd-44f1-be3c-508c8b8a19e6", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}], "creation_date": "2018-04-18T10:07:15.744660+00:00", "modification_date": "2018-04-18T10:07:15.744660+00:00"}], "categories": ["instantapp"], "current_public_version": "af308511-bcb3-4583-b0e0-79dbb1eea63e", "creation_date": "2016-03-07T21:06:07.014951+00:00", "modification_date": "2019-03-26T14:00:51.148549+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": "mtouron@ocs.online.net"}, "versions": [{"id": "d812e374-1169-4c91-aa90-c72acceeecb2", "name": "2019-03-25T13:06:01.961936", "local_images": [{"id": "b15ddb1a-0611-412e-881a-3aed1b36392b", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "02906ae8-bf44-4dd0-bd05-6312dd9fa234", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "3aa3622c-45d4-4388-9618-cce6974c71a0", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "cb4f1087-8edc-4a03-a718-e646cc21a14f", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a5430536-2a51-425d-8613-ef84dae91e27", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "51573d2d-301f-4d24-b0d6-f151728c82f5", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "DEV1-S"]}, {"id": "cac79531-98d5-48fa-aba1-8250214b88a3", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "4f15411a-ced3-456b-858c-a9fbfd22d37b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-25T13:06:02.622633+00:00", "modification_date": "2019-03-25T13:06:02.622633+00:00"}], "categories": ["instantapp"], "current_public_version": "d812e374-1169-4c91-aa90-c72acceeecb2", "creation_date": "2016-03-07T21:04:57.667667+00:00", "modification_date": "2019-03-26T14:00:52.955853+00:00", "valid_until": null}, {"id": "e22a5d54-ecb5-4fdd-a130-a473737ff7ab", "name": "ownCloud", "label": "owncloud", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/owncloud.png", "description": "ownCloud lets you sync & share your files, calendar, contacts and more. Access your data from all your devices, on an open platform you can extend and modify.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "c9c02a9c-e072-48af-aefd-bf6be9028022", "name": "2018-04-18T10:09:38.952503", "local_images": [{"id": "a5fb716a-1c60-4740-a179-98ce315ca3d7", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "2fdbbbb4-3b63-403b-9604-27713971efd6", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "4208a611-a789-40ea-ac0e-fb3001ee39a9", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "93de8eae-535f-47bd-88fa-84af7b5eaf76", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "7ad0b56b-1128-418d-9a5c-c006375e63ff", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1dc04f4a-6d85-4f21-b6e8-0de9ea3efabf", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-18T10:09:39.010195+00:00", "modification_date": "2018-04-18T10:09:39.010195+00:00"}], "categories": ["instantapp"], "current_public_version": "c9c02a9c-e072-48af-aefd-bf6be9028022", "creation_date": "2016-03-07T21:05:14.365925+00:00", "modification_date": "2019-03-26T14:00:52.457272+00:00", "valid_until": null}, {"id": "58a551e0-1b8b-4c83-82e7-1b4602ad43d1", "name": "PrestaShop", "label": "prestashop", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/prestashop.png", "description": "PrestaShop is a free, open source e-commerce solution.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "6c459ab1-4f1a-4f87-b92e-c00849c93fde", "name": "2018-05-16T14:57:15.505378", "local_images": [{"id": "4d07fcfa-ccda-4945-81aa-8de2206b39c0", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "73db574d-d5a0-49d5-b6ca-dd662895fac3", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "c97dc20f-8066-4d56-aabf-2b75162c0f9f", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "c78c3206-eb2b-4217-ad7c-0aca98dec145", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "7f91941c-f06a-4103-91a4-793f03b11fda", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "271a9c1f-73ef-4943-bac7-799130228040", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}], "creation_date": "2018-05-16T14:57:16.059809+00:00", "modification_date": "2018-05-16T14:57:16.059809+00:00"}], "categories": ["instantapp"], "current_public_version": "6c459ab1-4f1a-4f87-b92e-c00849c93fde", "creation_date": "2016-03-07T21:01:47.997930+00:00", "modification_date": "2019-03-26T14:00:50.067950+00:00", "valid_until": null}, {"id": "5c0f7971-c308-442e-82ab-2eb147439bd7", "name": "Python", "label": "python", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/python.png", "description": "The intended audience of this InstantApp is Python developers who want to bootstrap or test a Python application easily, in seconds.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "2642a982-e61d-4a58-8105-8838a69a85e3", "name": "2018-04-17T16:43:36.031203", "local_images": [{"id": "70b9c9cf-c2d9-4a80-b450-a7aef8226d96", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5218fa4e-8239-4831-ac2a-c96e23f387a2", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "f205e2a6-621a-4534-a5d1-36f6cf1f8376", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "613a5226-3d97-4f0e-abe2-99385a050784", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "d8416c83-8713-4622-b5aa-87388d6060c7", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1fc8dc9e-56ef-4e1f-a7b3-3daaef994b9c", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-17T16:43:36.089412+00:00", "modification_date": "2018-04-17T16:43:36.089412+00:00"}], "categories": ["instantapp"], "current_public_version": "2642a982-e61d-4a58-8105-8838a69a85e3", "creation_date": "2016-03-07T21:05:46.642023+00:00", "modification_date": "2019-03-26T14:00:49.970905+00:00", "valid_until": null}, {"id": "42866fbe-9168-4f77-8271-09beb6049a07", "name": "Ruby", "label": "ruby", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ruby.png", "description": "A dynamic, open source programming language with a focus on simplicity and productivity.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "5b8c935b-5047-43fd-a423-045dae3e0d78", "name": "2018-04-18T10:21:49.057120", "local_images": [{"id": "09c71ada-00c6-43de-ad44-c77c5b857a05", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "24f2e8ee-80f1-4a8d-83c4-74ed8cd80ed0", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "e2479a13-414b-4a0c-ba50-d01e67ee8600", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "f83a03fa-58eb-4b35-bda9-1a42b6d6d90d", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "8e3f0420-850e-4711-95df-3c1c11ee6854", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a6ed60a0-c967-4ef5-9432-5173f8c075a6", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-18T10:21:49.119857+00:00", "modification_date": "2018-04-18T10:21:49.119857+00:00"}], "categories": ["instantapp"], "current_public_version": "5b8c935b-5047-43fd-a423-045dae3e0d78", "creation_date": "2016-03-07T22:15:25.347873+00:00", "modification_date": "2019-03-26T14:00:54.119256+00:00", "valid_until": null}, {"id": "4e18f1fc-0b66-4692-a38d-bfa4c94f29de", "name": "Torrents", "label": "torrents", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/seedbox.png", "description": "The torrents InstantApp spawns a private server to upload and download your digital files.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "53d2e4fb-20df-4ba9-8d65-29256f2be480", "name": "2019-03-25T13:04:01.408435", "local_images": [{"id": "41d0db97-4822-4642-96ec-6f3fbcfc167c", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "3fbe5f72-81da-4a0a-91ef-36ab68fc801e", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "1aed7396-79dc-431d-af03-d3dde35d195f", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "DEV1-S"]}, {"id": "398875b6-de43-4946-976f-ba5189954912", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "a3160162-3d72-4632-8e42-4849a1280743", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "f5d116e3-2b58-44cf-a83a-cd0682135473", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-25T13:04:02.099902+00:00", "modification_date": "2019-03-25T13:04:02.099902+00:00"}], "categories": ["instantapp"], "current_public_version": "53d2e4fb-20df-4ba9-8d65-29256f2be480", "creation_date": "2016-03-07T21:08:02.980958+00:00", "modification_date": "2019-03-26T14:00:51.427329+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": "449bdf2d-9c08-4db6-9c17-156d6cb083bc", "name": "2021-03-25T11:49:34.134953+00:00", "local_images": [{"id": "58ee4636-3043-4ca3-82c4-5976a071453d", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "9ca69019-edd2-4adf-bc0a-bd259ff8dc55", "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"]}, {"id": "7af873db-4999-4147-a176-59f6f22833fd", "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"]}, {"id": "a3ea99d3-c2fe-4189-acd3-219d9057eadd", "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", "STARDUST1-S"]}, {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "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", "STARDUST1-S"]}], "creation_date": "2021-03-25T11:49:34.183695+00:00", "modification_date": "2021-03-25T11:49:34.183695+00:00"}], "categories": ["distribution"], "current_public_version": "449bdf2d-9c08-4db6-9c17-156d6cb083bc", "creation_date": "2020-02-17T15:50:48.980694+00:00", "modification_date": "2021-03-25T12:12:21.986402+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": "38be59ec-1291-4696-83a9-f46a2eb2ce70", "name": "2021-01-27T16:04:54.780008", "local_images": [{"id": "cefd1206-67ce-4321-ad7e-090272fbf4e6", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}, {"id": "329dfbda-aa29-438f-bba0-2a1eff865d65", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}], "creation_date": "2021-01-27T16:04:55.121317+00:00", "modification_date": "2021-01-27T16:04:55.121317+00:00"}], "categories": ["Machine Learning"], "current_public_version": "38be59ec-1291-4696-83a9-f46a2eb2ce70", "creation_date": "2019-03-06T17:24:56.871317+00:00", "modification_date": "2021-01-27T16:07:53.196132+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": "5e867d97-93eb-4420-80ee-14e8348d5ad6", "name": "2021-01-27T15:43:05.903480", "local_images": [{"id": "eea5b9d6-0b1f-4411-b369-75a5d4372ca7", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}, {"id": "04495e24-7295-4533-b817-344c36553305", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}], "creation_date": "2021-01-27T15:43:06.292055+00:00", "modification_date": "2021-01-27T15:43:06.292055+00:00"}], "categories": ["Machine Learning"], "current_public_version": "5e867d97-93eb-4420-80ee-14e8348d5ad6", "creation_date": "2019-03-06T17:24:29.909001+00:00", "modification_date": "2021-01-27T15:52:02.617863+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": "mtouron@ocs.online.net"}, "versions": [{"id": "3fb22e1f-de7f-4787-9bf8-32770151a45e", "name": "2019-03-08T08:58:28.893091", "local_images": [{"id": "8523fb41-500a-4f21-998b-890908da6119", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5645133b-67a3-4644-9941-16f7e2b428ea", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "757fac76-5265-46f8-8a1f-00c0fb270010", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "0bfbc358-88f6-45b8-ba9d-d47c96a18fa7", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "7a892c1a-bbdc-491f-9974-4008e3708664", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "GP1-XS", "DEV1-M", "DEV1-L", "DEV1-S", "GP1-XL", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S"]}, {"id": "726334eb-0733-4b6a-becd-769ff9bfe16d", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "ad1f7900-e843-4745-846f-9b1ec1230557", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-08T08:58:28.971149+00:00", "modification_date": "2019-03-08T08:58:28.971149+00:00"}], "categories": ["instantapp"], "current_public_version": "3fb22e1f-de7f-4787-9bf8-32770151a45e", "creation_date": "2016-03-07T21:03:59.783534+00:00", "modification_date": "2019-03-26T14:00:50.250657+00:00", "valid_until": null}]}' + headers: + Content-Length: + - "75478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49: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: + - 69e2cabb-074a-4402-b53f-0927b3740045 + X-Total-Count: + - "33" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/16152446-99ed-4795-9d3f-87ec2f5b891d + method: GET + response: + body: '{"image": {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "210db8e4-9645-4369-aa7e-9caa57ba79dd", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2021-03-25T11:32:29.589126+00:00", "modification_date": "2021-03-25T11:32:29.589126+00:00", "default_bootscript": null, "from_server": null, "state": "available", "zone": "fr-par-1"}}' + headers: + Content-Length: + - "609" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:10 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4da51e26-e2b4-46ea-a1a2-98b4ddcfc531 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"C1": {"alt_names": [], "arch": "arm", "ncpus": 4, "ram": 2147483648, "gpu": null, "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": true, "monthly_price": 4.32, "hourly_price": 0.006, "capabilities": {"boot_types": ["bootscript", "rescue"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": false, "private_network": 0}, "network": {"ipv6_support": false, "sum_internal_bandwidth": 1073741824, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}]}}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": null, "volumes_constraint": {"min_size": 80000000000, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 28.8, "hourly_price": 0.04, "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": 419430400, "sum_internet_bandwidth": 419430400, "interfaces": [{"internal_bandwidth": 419430400, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}]}}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": null, "volumes_constraint": {"min_size": 40000000000, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 14.4, "hourly_price": 0.02, "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": 314572800, "sum_internet_bandwidth": 314572800, "interfaces": [{"internal_bandwidth": 314572800, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}]}}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": null, "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 7.2, "hourly_price": 0.01, "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": 209715200, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": 209715200, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": null, "volumes_constraint": {"min_size": 120000000000, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 43.2, "hourly_price": 0.06, "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": 524288000, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": 524288000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": null, "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 475.2, "hourly_price": 0.66, "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": 5368709120, "sum_internet_bandwidth": 5368709120, "interfaces": [{"internal_bandwidth": 5368709120, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}]}}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": null, "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 244.8, "hourly_price": 0.34, "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": 1610612736, "sum_internet_bandwidth": 1610612736, "interfaces": [{"internal_bandwidth": 1610612736, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 1610612736}]}}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": null, "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 122.4, "hourly_price": 0.17, "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": 838860800, "sum_internet_bandwidth": 838860800, "interfaces": [{"internal_bandwidth": 838860800, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}]}}, "GP1-VIZ": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": null, "volumes_constraint": {"min_size": 300000000000, "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": 524288000, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": 524288000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": null, "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 1008.0, "hourly_price": 1.4, "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": 10737418240, "sum_internet_bandwidth": 10737418240, "interfaces": [{"internal_bandwidth": 10737418240, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 10737418240}]}}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": null, "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 60.48, "hourly_price": 0.084, "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": 524288000, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": 524288000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 48318382080, "gpu": 1, "volumes_constraint": {"min_size": 400000000000, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 720.0, "hourly_price": 1.0, "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": 1073741824, "sum_internet_bandwidth": 1073741824, "interfaces": [{"internal_bandwidth": 1073741824, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 1073741824}]}}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": null, "volumes_constraint": {"min_size": 10000000000, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 1.8, "hourly_price": 0.0025, "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": 104857600, "sum_internet_bandwidth": 104857600, "interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 104857600}]}}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": null, "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 23.04, "hourly_price": 0.032, "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": null, "sum_internet_bandwidth": 419430400, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 419430400}]}}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": null, "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 11.52, "hourly_price": 0.016, "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": null, "sum_internet_bandwidth": 314572800, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 314572800}]}}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": null, "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 5.76, "hourly_price": 0.008, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": null, "volumes_constraint": {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 2.88, "hourly_price": 0.004, "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": null, "sum_internet_bandwidth": 104857600, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 104857600}]}}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": null, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": null, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": null, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": null, "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 259.2, "hourly_price": 0.36, "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": null, "sum_internet_bandwidth": 1073741824, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}]}}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": null, "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 36.0, "hourly_price": 0.05, "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": null, "sum_internet_bandwidth": 262144000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 262144000}]}}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": null, "volumes_constraint": {"min_size": 300000000000, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 72.0, "hourly_price": 0.1, "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": null, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": null, "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 129.6, "hourly_price": 0.18, "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": null, "sum_internet_bandwidth": 1073741824, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}]}}}}' + headers: + Content-Length: + - "17942" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49: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: + - 2435961a-1f56-45b7-97fb-e21abe812de5 + X-Total-Count: + - "24" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"cli-srv-intelligent-banach","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"16152446-99ed-4795-9d3f-87ec2f5b891d","boot_type":"local","project":"951df375-e094-4d26-97c1-ba548eeb9c42"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + body: '{"server": {"id": "0c6bf495-cec4-4d75-902c-b1468dfb2af8", "name": "cli-srv-intelligent-banach", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-intelligent-banach", "image": {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "210db8e4-9645-4369-aa7e-9caa57ba79dd", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2021-03-25T11:32:29.589126+00:00", "modification_date": "2021-03-25T11:32:29.589126+00:00", "default_bootscript": null, "from_server": null, "state": "available", "zone": "fr-par-1"}, "volumes": {"0": {"id": "0fa2540f-d047-47e2-89a8-57c7579520fa", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0c6bf495-cec4-4d75-902c-b1468dfb2af8", "name": "cli-srv-intelligent-banach"}, "size": 20000000000, "state": "available", "creation_date": "2021-05-18T12:49:11.391734+00:00", "modification_date": "2021-05-18T12:49:11.391734+00:00", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2021-05-18T12:49:11.391734+00:00", "modification_date": "2021-05-18T12:49:11.391734+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": "54e2d5f6-d79c-44cc-b19f-613699b9cc7e", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:11 GMT + Location: + - https://par1-cmp-prd-api02.internal.scaleway.com/servers/0c6bf495-cec4-4d75-902c-b1468dfb2af8 + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d1e30387-fce2-42c8-9e94-7dfa3c1f9aa6 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"project":"951df375-e094-4d26-97c1-ba548eeb9c42"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + body: '{"ip": {"id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", "address": "51.15.129.58", "reverse": null, "server": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "zone": "fr-par-1", "tags": []}}' + headers: + Content-Length: + - "253" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:11 GMT + Location: + - https://par1-cmp-prd-api01.internal.scaleway.com/ips/edb87e2b-3637-4cb3-bca6-afaab47f6a30 + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fcf622a6-2f9e-4122-9b58-222d2a93d0f0 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"server":"0c6bf495-cec4-4d75-902c-b1468dfb2af8"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.129.58 + method: PATCH + response: + body: '{"ip": {"id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", "address": "51.15.129.58", "reverse": null, "server": {"id": "0c6bf495-cec4-4d75-902c-b1468dfb2af8", "name": "cli-srv-intelligent-banach"}, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "zone": "fr-par-1", "tags": []}}' + headers: + Content-Length: + - "333" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:11 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 291d8397-7145-4866-ab1e-2d1e70df1c40 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0c6bf495-cec4-4d75-902c-b1468dfb2af8 + method: GET + response: + body: '{"server": {"id": "0c6bf495-cec4-4d75-902c-b1468dfb2af8", "name": "cli-srv-intelligent-banach", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-intelligent-banach", "image": {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "210db8e4-9645-4369-aa7e-9caa57ba79dd", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2021-03-25T11:32:29.589126+00:00", "modification_date": "2021-03-25T11:32:29.589126+00:00", "default_bootscript": null, "from_server": null, "state": "available", "zone": "fr-par-1"}, "volumes": {"0": {"id": "0fa2540f-d047-47e2-89a8-57c7579520fa", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "0c6bf495-cec4-4d75-902c-b1468dfb2af8", "name": "cli-srv-intelligent-banach"}, "size": 20000000000, "state": "available", "creation_date": "2021-05-18T12:49:11.391734+00:00", "modification_date": "2021-05-18T12:49:11.391734+00:00", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": {"id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", "address": "51.15.129.58", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2021-05-18T12:49:11.391734+00:00", "modification_date": "2021-05-18T12:49:11.391734+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": "54e2d5f6-d79c-44cc-b19f-613699b9cc7e", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2622" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:12 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0a548d9d-b109-423a-96df-f334f9c6d9ff + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0c6bf495-cec4-4d75-902c-b1468dfb2af8 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:12 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 25af1940-75fd-40bd-9ac3-6d0df3e9804f + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/edb87e2b-3637-4cb3-bca6-afaab47f6a30 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:12 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e373212e-a5ae-4ef4-bba7-a7ca3c7a835f + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0fa2540f-d047-47e2-89a8-57c7579520fa + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:49:12 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e43ff135-44e3-4082-9208-a94b7603d9de + status: 204 No Content + code: 204 + duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-ip-attach-with-uuid.golden b/internal/namespaces/instance/v1/testdata/test-ip-attach-with-uuid.golden new file mode 100644 index 0000000000..f9a34f4263 --- /dev/null +++ b/internal/namespaces/instance/v1/testdata/test-ip-attach-with-uuid.golden @@ -0,0 +1,25 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟩🟩🟩 STDOUT️ 🟩🟩🟩️ +IP.ID edb87e2b-3637-4cb3-bca6-afaab47f6a30 +IP.Address 51.15.129.58 +IP.Server.ID 0c6bf495-cec4-4d75-902c-b1468dfb2af8 +IP.Server.Name cli-srv-intelligent-banach +IP.Organization 951df375-e094-4d26-97c1-ba548eeb9c42 +IP.Project 951df375-e094-4d26-97c1-ba548eeb9c42 +IP.Zone fr-par-1 +🟩🟩🟩 JSON STDOUT 🟩🟩🟩 +{ + "ip": { + "id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", + "address": "51.15.129.58", + "reverse": null, + "server": { + "id": "0c6bf495-cec4-4d75-902c-b1468dfb2af8", + "name": "cli-srv-intelligent-banach" + }, + "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", + "tags": [], + "project": "951df375-e094-4d26-97c1-ba548eeb9c42", + "zone": "fr-par-1" + } +} diff --git a/internal/namespaces/instance/v1/testdata/test-ip-detach-with-ip.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-ip-detach-with-ip.cassette.yaml new file mode 100644 index 0000000000..0ef82b391d --- /dev/null +++ b/internal/namespaces/instance/v1/testdata/test-ip-detach-with-ip.cassette.yaml @@ -0,0 +1,401 @@ +--- +version: 1 +interactions: +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/marketplace/v1/images?page=1 + method: GET + response: + body: '{"images": [{"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": "46b87e8b-e9b5-417f-a185-3d0fac2531bc", "name": "2021-03-30T08:50:27.029754+00:00", "local_images": [{"id": "5e84372e-6abe-4df5-834d-b12af4b24af8", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "a7306ef9-5e1b-464d-a409-a44026d91a9e", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "a5076337-734f-4b99-95ed-9a5bc73b9b09", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "7663c62b-40e3-4e6b-a835-70723ec2050b", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "5dd154af-ddad-496f-b631-388f0a787df1", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "62ad764e-298b-4e46-827d-be196f7f0b6b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "f63fe42a-900f-4a5e-ba99-ab0e59469b7e", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "28c59566-b53c-45dc-844d-43029388152d", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "b4bdbee1-e1f1-4436-8de4-bdb1b6ba4803", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "bbe8ed3d-c693-4437-b2dd-5d5968655f94", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "60eb89c7-1c29-4a94-a954-dddb81fc1a55", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}], "creation_date": "2021-03-30T08:50:27.247448+00:00", "modification_date": "2021-03-30T08:50:27.247448+00:00"}], "categories": ["distribution"], "current_public_version": "46b87e8b-e9b5-417f-a185-3d0fac2531bc", "creation_date": "2018-04-27T14:07:25.221998+00:00", "modification_date": "2021-04-01T07:04:52.514102+00:00", "valid_until": null}, {"id": "acf93867-88d9-40ee-99ea-6b2bb1ee8f0c", "name": "Ubuntu Xenial", "label": "ubuntu_xenial", "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": "f71f0db2-513e-4e32-8b85-85c153b67b39", "name": "2021-03-30T09:22:06.072470+00:00", "local_images": [{"id": "245e5cea-a9b4-4a36-9055-27185afe8690", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "f1b14363-cea2-4b85-84c7-602d24474b99", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "75ace7bb-699b-4cea-813c-633c31de3e9e", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "6c34a3f3-5e8a-455b-9bc2-f07c4c35bf89", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "605ceb9b-0d67-4565-b324-6dfff7c1307e", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "7d04dd2a-6cee-4aec-be9e-f87154009112", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "16ca98f1-89f1-4315-a7fd-a711ac3bcb83", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "3d6804e0-086e-4a06-8124-7240a657668d", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "c40fbabc-efc8-4e04-91ea-5e1e22daece1", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "bd859e89-fb2d-466a-a546-383630a1ead1", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "a5f6bb77-3d64-4f7f-abe0-72492b1bc020", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}], "creation_date": "2021-03-30T09:22:06.123537+00:00", "modification_date": "2021-03-30T09:22:06.123537+00:00"}], "categories": ["distribution"], "current_public_version": "f71f0db2-513e-4e32-8b85-85c153b67b39", "creation_date": "2016-04-22T13:27:33.769932+00:00", "modification_date": "2021-04-01T07:06:41.643152+00:00", "valid_until": null}, {"id": "c94b5df7-e698-4ac9-b273-565d18f5f8d2", "name": "Debian Stretch", "label": "debian_stretch", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", "description": "Debian is a free, powerful and stable operating system.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build System"}, "versions": [{"id": "a1478726-083c-4d31-815d-255e07123155", "name": "2021-03-30T11:48:36.852155+00:00", "local_images": [{"id": "2e7e23ee-db6b-4d86-a779-abd90d500482", "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"]}, {"id": "37938de8-e3be-479a-895d-095158f76212", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "0ac73990-3bd5-424a-8128-0825821c0c4f", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "5f7ab0cd-d10e-49a0-91c8-315ed8a6a1a4", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "X64-15GB", "C2L", "C2M", "X64-30GB", "X64-120GB", "X64-60GB"]}, {"id": "bd6ba96e-d4c4-41f9-88e2-8dad3e6f085b", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "9096ef85-6520-4b8e-9303-77fd51ec3c5a", "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", "STARDUST1-S"]}, {"id": "6c694560-503e-4463-8cc8-4b5ae11b0fca", "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"]}, {"id": "d954dc33-c52e-4960-93e1-b69c85d169be", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "22a1bd8d-4498-4800-a8e5-4bc85001176c", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "X64-15GB", "C2L", "C2M", "X64-30GB", "X64-120GB", "X64-60GB"]}, {"id": "86740237-62fc-4538-9b70-4373942f53d3", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "eb803e1e-36ff-4fec-9a68-20da4cb95c0d", "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", "STARDUST1-S"]}], "creation_date": "2021-03-30T11:48:36.906051+00:00", "modification_date": "2021-03-30T11:48:36.906051+00:00"}], "categories": ["distribution"], "current_public_version": "a1478726-083c-4d31-815d-255e07123155", "creation_date": "2017-06-26T15:37:13.460764+00:00", "modification_date": "2021-04-01T07:10:04.448317+00:00", "valid_until": null}, {"id": "fb619bdf-834e-4c71-b7b8-15b5546d18bd", "name": "Debian Jessie", "label": "debian_jessie", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", "description": "Debian is a free, powerful and stable operating system.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "d3846a7b-8219-4938-ad96-cc2173e22481", "name": "2018-04-10T22:31:04.321157", "local_images": [{"id": "2dfad6d2-e527-4e93-8eb1-8dc57803b310", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "610f68d5-cbad-4923-98ae-782af8f3b527", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "dc22e553-2d2e-4689-94f8-8817db824202", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "2e570f53-199e-47cc-95dd-f7bc392496e3", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "abf9e3a2-7171-4764-91ef-57f30b21193d", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "69cbdd54-88a1-4458-b75e-662a0848a7ce", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "e1dd422e-44eb-451c-b60c-7330ff421bfb", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1aa604d6-2ec2-4774-91a2-56309dacde47", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2018-04-10T22:31:04.322822+00:00", "modification_date": "2018-04-10T22:31:04.322822+00:00"}], "categories": ["distribution"], "current_public_version": "d3846a7b-8219-4938-ad96-cc2173e22481", "creation_date": "2016-03-05T14:52:36.322319+00:00", "modification_date": "2019-03-26T14:00:50.449502+00:00", "valid_until": null}, {"id": "1d47b370-ac63-43b1-9f34-7328675e5e18", "name": "CentOS 7.6", "label": "centos_7.6", "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": "11111111-1111-4111-8111-111111111111", "name": "OCS"}, "versions": [{"id": "53138072-3099-4566-8b18-de7b2739696a", "name": "2019-03-18T09:29:00.168590", "local_images": [{"id": "05794ee5-c6d2-4d69-86dd-f1fc9032921d", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "VC1M", "C2L", "C2M", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "0f44b130-2bc7-4f82-993e-de9d1042c56e", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "10aae8d8-0073-44f9-ac19-a171ac40bc78", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "775a2a9f-551a-4309-838f-64ed7438c263", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2019-03-18T09:29:00.247544+00:00", "modification_date": "2019-03-18T09:29:00.247544+00:00"}], "categories": ["distribution"], "current_public_version": "53138072-3099-4566-8b18-de7b2739696a", "creation_date": "2019-03-06T11:27:48.406290+00:00", "modification_date": "2019-03-26T14:00:50.839069+00:00", "valid_until": null}, {"id": "98fc244a-ed4c-4523-bd17-b9c4070b8e7e", "name": "CentOS 7.4", "label": "centos_7.4", "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": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "31be34e5-074d-4c63-8c77-454459f77c3f", "name": "2018-04-20T13:55:06.817954", "local_images": [{"id": "ec8b431e-ad39-4523-8b94-f3fa7f3cbd06", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "7220ac63-bac8-484b-9d44-93e3bd01f5a6", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "9d3bb257-9bb3-4f7e-ab75-cbdae33d41a4", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a2d1bdb1-a1e1-4e39-9ffa-d0da7de02f38", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2018-04-20T13:55:06.824033+00:00", "modification_date": "2018-04-20T13:55:06.824033+00:00"}], "categories": ["distribution"], "current_public_version": "31be34e5-074d-4c63-8c77-454459f77c3f", "creation_date": "2018-04-19T10:12:28.968536+00:00", "modification_date": "2019-03-26T14:00:53.445597+00:00", "valid_until": null}, {"id": "69adec15-f1a7-469a-9ba5-868577832521", "name": "Fedora 29", "label": "fedora_29", "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": "11111111-1111-4111-8111-111111111111", "name": "OCS"}, "versions": [{"id": "a0f02365-f1af-48cb-b82d-75853a4e05e1", "name": "2019-03-06T09:08:01.016040", "local_images": [{"id": "541f4562-5417-4b59-85d6-caaf64c1f127", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "3c0f706e-0947-47a3-88a3-595c29f7567a", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "1c7efe35-332e-4fde-b8d6-30606b81a8e7", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "90c83cdc-8560-4543-9033-1e63e3474e12", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-06T09:08:01.112958+00:00", "modification_date": "2019-03-06T09:08:01.112958+00:00"}], "categories": ["distribution"], "current_public_version": "a0f02365-f1af-48cb-b82d-75853a4e05e1", "creation_date": "2019-03-06T09:07:51.652433+00:00", "modification_date": "2019-03-26T14:00:51.848785+00:00", "valid_until": null}, {"id": "30d0f04f-6422-4b74-9ce9-1c2267419978", "name": "Fedora 28", "label": "fedora_28", "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": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "49e33199-28cc-44d6-bb2e-a6147944ad5c", "name": "2018-05-03T12:01:10.135200", "local_images": [{"id": "830aad94-24e5-4363-b2c3-e62921bd9294", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "c9cd1782-2159-44b8-83b1-9c48ed6c8a63", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "27c84474-0af7-473f-9295-b5b85be5e429", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "5c7b710b-ff79-4e56-81d3-6bf31a946ad0", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-05-03T12:01:10.147973+00:00", "modification_date": "2018-05-03T12:01:10.147973+00:00"}], "categories": ["distribution"], "current_public_version": "49e33199-28cc-44d6-bb2e-a6147944ad5c", "creation_date": "2018-05-03T09:51:57.274011+00:00", "modification_date": "2019-03-26T14:00:50.156015+00:00", "valid_until": null}, {"id": "4bff4f37-3ef9-457e-9e8d-4a786cb2a5f2", "name": "Fedora 27", "label": "fedora_27", "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": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "45b5823f-8ddf-4ea8-b106-33d2df127cdf", "name": "2018-09-06T10:51:13.011044", "local_images": [{"id": "097a100e-fd2f-4918-8a5b-d86de5a489be", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "73f0bcd8-a152-4665-ac09-1b105905a475", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "9bef3647-8ccb-43aa-b753-d289851e85bf", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "801b5f02-eb8c-4d77-bce6-5cea21bf9260", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-09-06T10:51:13.009967+00:00", "modification_date": "2018-09-06T10:51:13.009967+00:00"}], "categories": ["distribution"], "current_public_version": "45b5823f-8ddf-4ea8-b106-33d2df127cdf", "creation_date": "2018-04-19T10:14:08.648100+00:00", "modification_date": "2019-03-26T14:00:53.140907+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": "mtouron@ocs.online.net"}, "versions": [{"id": "f7696517-bc49-448b-9869-f2c84e7c2a96", "name": "2018-04-20T15:59:04.593811", "local_images": [{"id": "f21defd0-9fd9-4fb2-a29a-22844a6be3cd", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "3c904f73-080e-4c6f-8b28-8426cfdcb3c7", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "1e23c590-a371-403b-a8db-cfd9a2f74c03", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "6a347714-49ab-44a6-92fb-1f0ba6aa96e9", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2018-04-20T15:59:04.594929+00:00", "modification_date": "2018-04-20T15:59:04.594929+00:00"}], "categories": ["distribution"], "current_public_version": "f7696517-bc49-448b-9869-f2c84e7c2a96", "creation_date": "2016-03-07T20:55:32.213089+00:00", "modification_date": "2019-03-26T14:00:49.327070+00:00", "valid_until": null}, {"id": "c0649a2a-e6bf-4712-9303-8d967153209c", "name": "Alpine Linux", "label": "alpine_linux", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/alpinelinux.png", "description": "Alpine Linux is security-oriented, lightweight Linux distribution based on musl libc and busybox.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "be2293b6-9eba-4497-9659-2cfb927483b5", "name": "2018-04-26T10:18:10.196011", "local_images": [{"id": "24141068-1043-4885-bf2b-8290f617e273", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "241b0bb3-9eed-4a7b-b0fd-71c45452ac95", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "GP1-XS", "DEV1-M", "DEV1-L", "DEV1-S", "GP1-XL", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S"]}, {"id": "7ba96c78-de91-4116-a075-54284ac58632", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "e9607990-506c-478b-b134-649a3777472b", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-26T10:18:10.201002+00:00", "modification_date": "2018-04-26T10:18:10.201002+00:00"}], "categories": ["distribution"], "current_public_version": "be2293b6-9eba-4497-9659-2cfb927483b5", "creation_date": "2016-03-05T14:49:50.255568+00:00", "modification_date": "2019-03-26T14:00:54.425917+00:00", "valid_until": null}, {"id": "293a2ddf-6e33-4e63-81f0-fbdd90641480", "name": "CentOS 8", "label": "centos_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": "ddda3abc-59c1-4385-b551-65e63f7f759e", "name": "2021-03-31T11:10:17.416332+00:00", "local_images": [{"id": "4d93a3c2-771d-446d-a904-c2ac938eace2", "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", "STARDUST1-S"]}, {"id": "f07fc6dd-1219-424b-bd5f-eabc145c1b61", "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"]}, {"id": "a79c7b52-a9e0-4474-b6fd-b436c4ad8d0b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "b23e727e-1e01-49e9-ae1d-a29180228ae5", "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"]}, {"id": "0caa749a-160f-4361-8007-0d1b5ea265c9", "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", "STARDUST1-S"]}], "creation_date": "2021-03-31T11:10:17.605755+00:00", "modification_date": "2021-03-31T11:10:17.605755+00:00"}], "categories": ["distribution"], "current_public_version": "ddda3abc-59c1-4385-b551-65e63f7f759e", "creation_date": "2020-04-29T11:48:57.810456+00:00", "modification_date": "2021-04-01T07:12:10.660353+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": "70a28442-1712-4a06-a77c-2f4b712bcc3d", "name": "2021-03-30T11:22:41.282946+00:00", "local_images": [{"id": "ba956003-4988-4c30-91ba-5320ae5d8bac", "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"]}, {"id": "61ae99dc-aaef-4a32-b2f4-07f1a534aaa4", "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", "STARDUST1-S"]}, {"id": "61010e34-7f1e-402b-a253-028a714a6678", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "4720c10f-59e3-4e20-915b-dcee1fc34c11", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "cc9188b3-3938-47d7-b091-c9ecad1fe507", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "d178f0f3-da78-4691-8368-2ac175f9940b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "9d6e8a2c-31a9-439c-a4c5-9fba1c5b96ed", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "f3a69d77-3faf-4a0d-97c1-1994d96cffa5", "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"]}, {"id": "d9c10ab7-1496-4be8-a4d9-9dec4571f61f", "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", "STARDUST1-S"]}], "creation_date": "2021-03-30T11:22:41.337836+00:00", "modification_date": "2021-03-30T11:22:41.337836+00:00"}], "categories": ["distribution"], "current_public_version": "70a28442-1712-4a06-a77c-2f4b712bcc3d", "creation_date": "2019-07-16T13:55:36.377559+00:00", "modification_date": "2021-04-01T07:08:18.822693+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": "mtouron@ocs.online.net"}, "versions": [{"id": "bf30c937-6e89-4019-ad2a-92156a62cf3e", "name": "2019-03-07T17:07:39.004809", "local_images": [{"id": "89c80d27-ddf4-4ffa-8215-b335cce3fd05", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "99e2a9c6-f0b9-42b6-8823-8b0d86ffe9bf", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "45a7e942-1fb0-48c0-bbf6-0acb9af24604", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "c669011a-ee16-42b6-b0c3-ecd19e419539", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "dcf35840-c007-4c8b-a48b-227cfd8a347b", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "df7298ce-ab95-4384-90d1-76b8fff31f06", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "929c50f5-721c-4672-817c-8704eb4bc1d1", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-07T17:07:39.090644+00:00", "modification_date": "2019-03-07T17:07:39.090644+00:00"}], "categories": ["instantapp"], "current_public_version": "bf30c937-6e89-4019-ad2a-92156a62cf3e", "creation_date": "2016-03-05T15:11:26.847640+00:00", "modification_date": "2019-03-26T14:00:49.524465+00:00", "valid_until": null}, {"id": "e549e5b4-33eb-4c97-950a-8baf107f895f", "name": "Fedora 32", "label": "fedora_32", "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": "75ba84da-ee4f-44ca-9fac-49ac43e8a0d2", "name": "2021-03-31T14:22:08.724842+00:00", "local_images": [{"id": "19717715-2e56-41d4-9795-bf3d0d509d5a", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "5a987969-ab7b-4e03-909f-3aed546cee06", "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"]}, {"id": "616bcd6c-b87e-4eb7-824c-ade385459a5a", "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", "STARDUST1-S"]}, {"id": "ffd5ed07-3ed8-46cb-9b78-b267b7848cbf", "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"]}, {"id": "dd8bf78f-59c8-452a-b41e-0f43d25d6220", "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", "STARDUST1-S"]}], "creation_date": "2021-03-31T14:22:08.799093+00:00", "modification_date": "2021-03-31T14:22:08.799093+00:00"}], "categories": ["distribution"], "current_public_version": "75ba84da-ee4f-44ca-9fac-49ac43e8a0d2", "creation_date": "2020-05-19T08:21:31.875735+00:00", "modification_date": "2021-04-01T07:14:57.371602+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": "mtouron@ocs.online.net"}, "versions": [{"id": "a389c94b-8b19-4528-a4f6-0b7cac3425e9", "name": "2019-04-09T13:31:03.352588", "local_images": [{"id": "06a2a6e9-922d-4353-9472-bbb1f79fda63", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "3e71b78e-dd20-48ae-8d6e-f594cb255af5", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "4527e41c-0e90-43a8-857e-d9584bf8467f", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1cd308b9-5988-4b04-80a1-389f5f63738b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-04-09T13:31:03.648676+00:00", "modification_date": "2019-04-09T13:31:03.648676+00:00"}], "categories": ["instantapp"], "current_public_version": "a389c94b-8b19-4528-a4f6-0b7cac3425e9", "creation_date": "2016-03-07T21:06:22.770864+00:00", "modification_date": "2019-04-09T13:31:04.022755+00:00", "valid_until": null}, {"id": "90d512b8-e4b7-4821-98e9-78241d73a7e6", "name": "Gogs", "label": "gogs", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/gogs.png", "description": "A painless self-hosted Git service.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "1b9e22e3-6a29-4f42-acfd-281ad086ee1d", "name": "2018-05-16T15:11:25.303762", "local_images": [{"id": "776705c4-be8e-4a27-b740-2e8bbba518c5", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a513a250-e6e9-4687-892e-9d10b29e3972", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "d1341ece-ffda-4386-ad3a-27d60b650401", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "69b8bc0e-7771-42af-a4ad-ca756c31a18a", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}], "creation_date": "2018-05-16T15:11:25.881343+00:00", "modification_date": "2018-05-16T15:11:25.881343+00:00"}], "categories": ["instantapp"], "current_public_version": "1b9e22e3-6a29-4f42-acfd-281ad086ee1d", "creation_date": "2016-03-07T21:00:44.946716+00:00", "modification_date": "2019-03-26T14:00:54.513196+00:00", "valid_until": null}, {"id": "6c8d25c0-cb6f-4220-98aa-830b7e479ba5", "name": "Golang", "label": "golang", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/golang.png", "description": "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.A dynamic, open source programming language with a focus on simplicity and productivity.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "880194c8-53ce-4b6b-a274-4f79307e2f8e", "name": "2018-04-18T08:00:48.129246", "local_images": [{"id": "43213956-c7a3-44b8-9d96-d51fa7457969", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5ffb52aa-ea55-4596-9d0f-e403701b6624", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "bef7a6af-1bab-490a-a6cb-6a07c1b9ac7b", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "f0b7d9b8-aa31-45b4-9f7e-a68aa164ce6f", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "76ca1eb7-f68f-4770-a7a1-ab7665ae3297", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "0d954c34-341c-483a-be1c-71cf197343ed", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}], "creation_date": "2018-04-18T08:00:48.175340+00:00", "modification_date": "2018-04-18T08:00:48.175340+00:00"}], "categories": ["instantapp"], "current_public_version": "880194c8-53ce-4b6b-a274-4f79307e2f8e", "creation_date": "2016-03-08T07:01:11.482482+00:00", "modification_date": "2019-03-26T14:00:52.861225+00:00", "valid_until": null}, {"id": "d72d1b73-7460-446b-91fb-b451d079aa4d", "name": "Java", "label": "java", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/java.png", "description": "Java is a computer programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "f3f69cca-aadb-4e5e-94b0-254ce05a6639", "name": "2018-04-18T10:11:18.477156", "local_images": [{"id": "c50cb4b2-bf7b-47e2-ab5f-3a9d3d4c1aef", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "98c93894-26a8-463b-a72b-c9d2b531b95d", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "43c43b5e-1e4f-4905-baef-71df3c565b4d", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "0c3f9f03-f490-444b-a05e-f342e917fed0", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5e07622b-ad8b-4f65-b55f-cca18c3c0bbf", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "c0330755-e5d0-4c2c-ad0e-70687e1dccbb", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}], "creation_date": "2018-04-18T10:11:18.535736+00:00", "modification_date": "2018-04-18T10:11:18.535736+00:00"}], "categories": ["instantapp"], "current_public_version": "f3f69cca-aadb-4e5e-94b0-254ce05a6639", "creation_date": "2016-03-07T21:07:46.908969+00:00", "modification_date": "2019-03-26T14:00:49.430836+00:00", "valid_until": null}, {"id": "986ba672-b489-4f66-9e3b-90194ac336d4", "name": "LEMP stack", "label": "lemp_stack", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/lemp.png", "description": "LEMP stack is a version where Apache has been replaced with the more lightweight web server Nginx.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "a2e5ed1a-6f01-4f20-aabd-4115c67df590", "name": "2019-04-09T13:31:10.613803", "local_images": [{"id": "32332006-1420-4260-97c7-c1da586f68cd", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "d16622f6-32c1-4d16-a3ca-38b23d3a25fb", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "1bd37d60-4494-485f-9a82-0a211005489c", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "415d3727-0013-419a-abc6-1a688b096730", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "26c3727a-5b77-4b26-89c9-445ea2006f07", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "155ab61a-e069-4acb-bae3-e8217c5c0376", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}], "creation_date": "2019-04-09T13:31:11.315416+00:00", "modification_date": "2019-04-09T13:31:11.315416+00:00"}], "categories": ["instantapp"], "current_public_version": "a2e5ed1a-6f01-4f20-aabd-4115c67df590", "creation_date": "2016-03-07T21:06:53.552980+00:00", "modification_date": "2019-04-09T13:31:12.129567+00:00", "valid_until": null}, {"id": "98ad7ccb-cc7f-4828-9da3-113e9c1bd2db", "name": "Mattermost", "label": "mattermost", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/mattermost.png", "description": "self-hosted Slack-alternative", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "42371bf7-c1ca-4889-a6d4-43febda865ca", "name": "2018-05-03T10:27:55.021511", "local_images": [{"id": "486e128c-fde7-42d7-9200-5d91b8dc2761", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "eb2ed407-177c-4195-a4ca-f3baa85e62ed", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}], "creation_date": "2018-05-03T10:27:55.610920+00:00", "modification_date": "2018-05-03T10:27:55.610920+00:00"}], "categories": ["instantapp"], "current_public_version": "42371bf7-c1ca-4889-a6d4-43febda865ca", "creation_date": "2016-07-11T14:52:57.803007+00:00", "modification_date": "2019-03-26T14:00:51.938920+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": "2fe66cc6-8985-4b5f-8325-83acc0589436", "name": "2019-04-16T12:25:37.374676", "local_images": [{"id": "e9af0a24-4312-4305-9386-b3a79e02f92d", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "c38073cf-ee40-4dc2-8059-ec2845f38f46", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "b9e319f5-ac4c-400d-8ff6-a6a769755190", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "0390c3e0-186d-4b24-8d0d-0e08b74fb59a", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "900971a4-3a3e-4ef9-b92f-b33c366c9f5c", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "7b7d4dde-6fe1-4586-a5a5-ae1af2ca2605", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-04-16T12:25:38.052537+00:00", "modification_date": "2019-04-16T12:25:38.052537+00:00"}], "categories": ["instantapp"], "current_public_version": "2fe66cc6-8985-4b5f-8325-83acc0589436", "creation_date": "2019-04-16T12:22:56.930842+00:00", "modification_date": "2019-04-16T12:25:38.758921+00:00", "valid_until": null}, {"id": "d11d7cc2-6ec8-4f95-a286-24fb5bac9e39", "name": "Node.js", "label": "node.js", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/nodejs.png", "description": "Node.js is an open source, cross-platform runtime environment for server-side and networking applications.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "af308511-bcb3-4583-b0e0-79dbb1eea63e", "name": "2018-04-18T10:07:15.691016", "local_images": [{"id": "a8020f20-8a66-43f3-8253-35941db3d237", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "3cc79cc6-4649-46d9-a2b6-698f1236e1d0", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "c9fb2bed-a9b8-4e1a-bf15-db8e763fe7a7", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "f01db1d0-092a-47de-a32e-09bd6bda7715", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "6f2e99e8-da99-4990-b689-7294e8a604fa", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "03980aee-14cd-44f1-be3c-508c8b8a19e6", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}], "creation_date": "2018-04-18T10:07:15.744660+00:00", "modification_date": "2018-04-18T10:07:15.744660+00:00"}], "categories": ["instantapp"], "current_public_version": "af308511-bcb3-4583-b0e0-79dbb1eea63e", "creation_date": "2016-03-07T21:06:07.014951+00:00", "modification_date": "2019-03-26T14:00:51.148549+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": "mtouron@ocs.online.net"}, "versions": [{"id": "d812e374-1169-4c91-aa90-c72acceeecb2", "name": "2019-03-25T13:06:01.961936", "local_images": [{"id": "b15ddb1a-0611-412e-881a-3aed1b36392b", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "02906ae8-bf44-4dd0-bd05-6312dd9fa234", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "3aa3622c-45d4-4388-9618-cce6974c71a0", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "cb4f1087-8edc-4a03-a718-e646cc21a14f", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a5430536-2a51-425d-8613-ef84dae91e27", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "51573d2d-301f-4d24-b0d6-f151728c82f5", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "DEV1-S"]}, {"id": "cac79531-98d5-48fa-aba1-8250214b88a3", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "4f15411a-ced3-456b-858c-a9fbfd22d37b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-25T13:06:02.622633+00:00", "modification_date": "2019-03-25T13:06:02.622633+00:00"}], "categories": ["instantapp"], "current_public_version": "d812e374-1169-4c91-aa90-c72acceeecb2", "creation_date": "2016-03-07T21:04:57.667667+00:00", "modification_date": "2019-03-26T14:00:52.955853+00:00", "valid_until": null}, {"id": "e22a5d54-ecb5-4fdd-a130-a473737ff7ab", "name": "ownCloud", "label": "owncloud", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/owncloud.png", "description": "ownCloud lets you sync & share your files, calendar, contacts and more. Access your data from all your devices, on an open platform you can extend and modify.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "c9c02a9c-e072-48af-aefd-bf6be9028022", "name": "2018-04-18T10:09:38.952503", "local_images": [{"id": "a5fb716a-1c60-4740-a179-98ce315ca3d7", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "2fdbbbb4-3b63-403b-9604-27713971efd6", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "4208a611-a789-40ea-ac0e-fb3001ee39a9", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "93de8eae-535f-47bd-88fa-84af7b5eaf76", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "7ad0b56b-1128-418d-9a5c-c006375e63ff", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1dc04f4a-6d85-4f21-b6e8-0de9ea3efabf", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-18T10:09:39.010195+00:00", "modification_date": "2018-04-18T10:09:39.010195+00:00"}], "categories": ["instantapp"], "current_public_version": "c9c02a9c-e072-48af-aefd-bf6be9028022", "creation_date": "2016-03-07T21:05:14.365925+00:00", "modification_date": "2019-03-26T14:00:52.457272+00:00", "valid_until": null}, {"id": "58a551e0-1b8b-4c83-82e7-1b4602ad43d1", "name": "PrestaShop", "label": "prestashop", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/prestashop.png", "description": "PrestaShop is a free, open source e-commerce solution.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "6c459ab1-4f1a-4f87-b92e-c00849c93fde", "name": "2018-05-16T14:57:15.505378", "local_images": [{"id": "4d07fcfa-ccda-4945-81aa-8de2206b39c0", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "73db574d-d5a0-49d5-b6ca-dd662895fac3", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "c97dc20f-8066-4d56-aabf-2b75162c0f9f", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "c78c3206-eb2b-4217-ad7c-0aca98dec145", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "7f91941c-f06a-4103-91a4-793f03b11fda", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "271a9c1f-73ef-4943-bac7-799130228040", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}], "creation_date": "2018-05-16T14:57:16.059809+00:00", "modification_date": "2018-05-16T14:57:16.059809+00:00"}], "categories": ["instantapp"], "current_public_version": "6c459ab1-4f1a-4f87-b92e-c00849c93fde", "creation_date": "2016-03-07T21:01:47.997930+00:00", "modification_date": "2019-03-26T14:00:50.067950+00:00", "valid_until": null}, {"id": "5c0f7971-c308-442e-82ab-2eb147439bd7", "name": "Python", "label": "python", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/python.png", "description": "The intended audience of this InstantApp is Python developers who want to bootstrap or test a Python application easily, in seconds.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "2642a982-e61d-4a58-8105-8838a69a85e3", "name": "2018-04-17T16:43:36.031203", "local_images": [{"id": "70b9c9cf-c2d9-4a80-b450-a7aef8226d96", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5218fa4e-8239-4831-ac2a-c96e23f387a2", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "f205e2a6-621a-4534-a5d1-36f6cf1f8376", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "613a5226-3d97-4f0e-abe2-99385a050784", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "d8416c83-8713-4622-b5aa-87388d6060c7", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1fc8dc9e-56ef-4e1f-a7b3-3daaef994b9c", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-17T16:43:36.089412+00:00", "modification_date": "2018-04-17T16:43:36.089412+00:00"}], "categories": ["instantapp"], "current_public_version": "2642a982-e61d-4a58-8105-8838a69a85e3", "creation_date": "2016-03-07T21:05:46.642023+00:00", "modification_date": "2019-03-26T14:00:49.970905+00:00", "valid_until": null}, {"id": "42866fbe-9168-4f77-8271-09beb6049a07", "name": "Ruby", "label": "ruby", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ruby.png", "description": "A dynamic, open source programming language with a focus on simplicity and productivity.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "5b8c935b-5047-43fd-a423-045dae3e0d78", "name": "2018-04-18T10:21:49.057120", "local_images": [{"id": "09c71ada-00c6-43de-ad44-c77c5b857a05", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "24f2e8ee-80f1-4a8d-83c4-74ed8cd80ed0", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "e2479a13-414b-4a0c-ba50-d01e67ee8600", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "f83a03fa-58eb-4b35-bda9-1a42b6d6d90d", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "8e3f0420-850e-4711-95df-3c1c11ee6854", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a6ed60a0-c967-4ef5-9432-5173f8c075a6", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-18T10:21:49.119857+00:00", "modification_date": "2018-04-18T10:21:49.119857+00:00"}], "categories": ["instantapp"], "current_public_version": "5b8c935b-5047-43fd-a423-045dae3e0d78", "creation_date": "2016-03-07T22:15:25.347873+00:00", "modification_date": "2019-03-26T14:00:54.119256+00:00", "valid_until": null}, {"id": "4e18f1fc-0b66-4692-a38d-bfa4c94f29de", "name": "Torrents", "label": "torrents", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/seedbox.png", "description": "The torrents InstantApp spawns a private server to upload and download your digital files.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "53d2e4fb-20df-4ba9-8d65-29256f2be480", "name": "2019-03-25T13:04:01.408435", "local_images": [{"id": "41d0db97-4822-4642-96ec-6f3fbcfc167c", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "3fbe5f72-81da-4a0a-91ef-36ab68fc801e", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "1aed7396-79dc-431d-af03-d3dde35d195f", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "DEV1-S"]}, {"id": "398875b6-de43-4946-976f-ba5189954912", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "a3160162-3d72-4632-8e42-4849a1280743", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "f5d116e3-2b58-44cf-a83a-cd0682135473", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-25T13:04:02.099902+00:00", "modification_date": "2019-03-25T13:04:02.099902+00:00"}], "categories": ["instantapp"], "current_public_version": "53d2e4fb-20df-4ba9-8d65-29256f2be480", "creation_date": "2016-03-07T21:08:02.980958+00:00", "modification_date": "2019-03-26T14:00:51.427329+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": "449bdf2d-9c08-4db6-9c17-156d6cb083bc", "name": "2021-03-25T11:49:34.134953+00:00", "local_images": [{"id": "58ee4636-3043-4ca3-82c4-5976a071453d", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "9ca69019-edd2-4adf-bc0a-bd259ff8dc55", "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"]}, {"id": "7af873db-4999-4147-a176-59f6f22833fd", "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"]}, {"id": "a3ea99d3-c2fe-4189-acd3-219d9057eadd", "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", "STARDUST1-S"]}, {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "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", "STARDUST1-S"]}], "creation_date": "2021-03-25T11:49:34.183695+00:00", "modification_date": "2021-03-25T11:49:34.183695+00:00"}], "categories": ["distribution"], "current_public_version": "449bdf2d-9c08-4db6-9c17-156d6cb083bc", "creation_date": "2020-02-17T15:50:48.980694+00:00", "modification_date": "2021-03-25T12:12:21.986402+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": "38be59ec-1291-4696-83a9-f46a2eb2ce70", "name": "2021-01-27T16:04:54.780008", "local_images": [{"id": "cefd1206-67ce-4321-ad7e-090272fbf4e6", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}, {"id": "329dfbda-aa29-438f-bba0-2a1eff865d65", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}], "creation_date": "2021-01-27T16:04:55.121317+00:00", "modification_date": "2021-01-27T16:04:55.121317+00:00"}], "categories": ["Machine Learning"], "current_public_version": "38be59ec-1291-4696-83a9-f46a2eb2ce70", "creation_date": "2019-03-06T17:24:56.871317+00:00", "modification_date": "2021-01-27T16:07:53.196132+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": "5e867d97-93eb-4420-80ee-14e8348d5ad6", "name": "2021-01-27T15:43:05.903480", "local_images": [{"id": "eea5b9d6-0b1f-4411-b369-75a5d4372ca7", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}, {"id": "04495e24-7295-4533-b817-344c36553305", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}], "creation_date": "2021-01-27T15:43:06.292055+00:00", "modification_date": "2021-01-27T15:43:06.292055+00:00"}], "categories": ["Machine Learning"], "current_public_version": "5e867d97-93eb-4420-80ee-14e8348d5ad6", "creation_date": "2019-03-06T17:24:29.909001+00:00", "modification_date": "2021-01-27T15:52:02.617863+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": "mtouron@ocs.online.net"}, "versions": [{"id": "3fb22e1f-de7f-4787-9bf8-32770151a45e", "name": "2019-03-08T08:58:28.893091", "local_images": [{"id": "8523fb41-500a-4f21-998b-890908da6119", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5645133b-67a3-4644-9941-16f7e2b428ea", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "757fac76-5265-46f8-8a1f-00c0fb270010", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "0bfbc358-88f6-45b8-ba9d-d47c96a18fa7", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "7a892c1a-bbdc-491f-9974-4008e3708664", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "GP1-XS", "DEV1-M", "DEV1-L", "DEV1-S", "GP1-XL", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S"]}, {"id": "726334eb-0733-4b6a-becd-769ff9bfe16d", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "ad1f7900-e843-4745-846f-9b1ec1230557", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-08T08:58:28.971149+00:00", "modification_date": "2019-03-08T08:58:28.971149+00:00"}], "categories": ["instantapp"], "current_public_version": "3fb22e1f-de7f-4787-9bf8-32770151a45e", "creation_date": "2016-03-07T21:03:59.783534+00:00", "modification_date": "2019-03-26T14:00:50.250657+00:00", "valid_until": null}]}' + headers: + Content-Length: + - "75478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:48 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: + - b978ba85-5278-4794-801a-8143c0b0bbad + X-Total-Count: + - "33" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/16152446-99ed-4795-9d3f-87ec2f5b891d + method: GET + response: + body: '{"image": {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "210db8e4-9645-4369-aa7e-9caa57ba79dd", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2021-03-25T11:32:29.589126+00:00", "modification_date": "2021-03-25T11:32:29.589126+00:00", "default_bootscript": null, "from_server": null, "state": "available", "zone": "fr-par-1"}}' + headers: + Content-Length: + - "609" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 06538128-c2a1-4f51-8c01-195a16b3c539 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"C1": {"alt_names": [], "arch": "arm", "ncpus": 4, "ram": 2147483648, "gpu": null, "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": true, "monthly_price": 4.32, "hourly_price": 0.006, "capabilities": {"boot_types": ["bootscript", "rescue"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": false, "private_network": 0}, "network": {"ipv6_support": false, "sum_internal_bandwidth": 1073741824, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}]}}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": null, "volumes_constraint": {"min_size": 80000000000, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 28.8, "hourly_price": 0.04, "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": 419430400, "sum_internet_bandwidth": 419430400, "interfaces": [{"internal_bandwidth": 419430400, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}]}}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": null, "volumes_constraint": {"min_size": 40000000000, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 14.4, "hourly_price": 0.02, "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": 314572800, "sum_internet_bandwidth": 314572800, "interfaces": [{"internal_bandwidth": 314572800, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}]}}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": null, "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 7.2, "hourly_price": 0.01, "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": 209715200, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": 209715200, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": null, "volumes_constraint": {"min_size": 120000000000, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 43.2, "hourly_price": 0.06, "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": 524288000, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": 524288000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": null, "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 475.2, "hourly_price": 0.66, "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": 5368709120, "sum_internet_bandwidth": 5368709120, "interfaces": [{"internal_bandwidth": 5368709120, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}]}}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": null, "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 244.8, "hourly_price": 0.34, "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": 1610612736, "sum_internet_bandwidth": 1610612736, "interfaces": [{"internal_bandwidth": 1610612736, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 1610612736}]}}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": null, "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 122.4, "hourly_price": 0.17, "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": 838860800, "sum_internet_bandwidth": 838860800, "interfaces": [{"internal_bandwidth": 838860800, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}]}}, "GP1-VIZ": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": null, "volumes_constraint": {"min_size": 300000000000, "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": 524288000, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": 524288000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": null, "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 1008.0, "hourly_price": 1.4, "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": 10737418240, "sum_internet_bandwidth": 10737418240, "interfaces": [{"internal_bandwidth": 10737418240, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 10737418240}]}}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": null, "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 60.48, "hourly_price": 0.084, "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": 524288000, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": 524288000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 48318382080, "gpu": 1, "volumes_constraint": {"min_size": 400000000000, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 720.0, "hourly_price": 1.0, "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": 1073741824, "sum_internet_bandwidth": 1073741824, "interfaces": [{"internal_bandwidth": 1073741824, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 1073741824}]}}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": null, "volumes_constraint": {"min_size": 10000000000, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 1.8, "hourly_price": 0.0025, "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": 104857600, "sum_internet_bandwidth": 104857600, "interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 104857600}]}}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": null, "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 23.04, "hourly_price": 0.032, "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": null, "sum_internet_bandwidth": 419430400, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 419430400}]}}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": null, "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 11.52, "hourly_price": 0.016, "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": null, "sum_internet_bandwidth": 314572800, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 314572800}]}}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": null, "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 5.76, "hourly_price": 0.008, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": null, "volumes_constraint": {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 2.88, "hourly_price": 0.004, "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": null, "sum_internet_bandwidth": 104857600, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 104857600}]}}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": null, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": null, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": null, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": null, "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 259.2, "hourly_price": 0.36, "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": null, "sum_internet_bandwidth": 1073741824, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}]}}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": null, "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 36.0, "hourly_price": 0.05, "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": null, "sum_internet_bandwidth": 262144000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 262144000}]}}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": null, "volumes_constraint": {"min_size": 300000000000, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 72.0, "hourly_price": 0.1, "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": null, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": null, "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 129.6, "hourly_price": 0.18, "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": null, "sum_internet_bandwidth": 1073741824, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}]}}}}' + headers: + Content-Length: + - "17942" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:48 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: + - 8ec1ee0c-5490-4b49-a8cf-659656e65d3e + X-Total-Count: + - "24" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"cli-srv-eloquent-wing","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"16152446-99ed-4795-9d3f-87ec2f5b891d","boot_type":"local","project":"951df375-e094-4d26-97c1-ba548eeb9c42"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + body: '{"server": {"id": "4b3d7253-f257-43f9-8d59-f183187aaf2a", "name": "cli-srv-eloquent-wing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-eloquent-wing", "image": {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "210db8e4-9645-4369-aa7e-9caa57ba79dd", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2021-03-25T11:32:29.589126+00:00", "modification_date": "2021-03-25T11:32:29.589126+00:00", "default_bootscript": null, "from_server": null, "state": "available", "zone": "fr-par-1"}, "volumes": {"0": {"id": "675e73af-c54b-4c12-b2dc-ad88dd03b960", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "4b3d7253-f257-43f9-8d59-f183187aaf2a", "name": "cli-srv-eloquent-wing"}, "size": 20000000000, "state": "available", "creation_date": "2021-05-18T12:52:49.417489+00:00", "modification_date": "2021-05-18T12:52:49.417489+00:00", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2021-05-18T12:52:49.417489+00:00", "modification_date": "2021-05-18T12:52:49.417489+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": "54e2d5f6-d79c-44cc-b19f-613699b9cc7e", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2520" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:50 GMT + Location: + - https://par1-cmp-prd-api01.internal.scaleway.com/servers/4b3d7253-f257-43f9-8d59-f183187aaf2a + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a050b3ec-7da2-48de-bbab-b641a683d653 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"project":"951df375-e094-4d26-97c1-ba548eeb9c42"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + body: '{"ip": {"id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", "address": "51.15.129.58", "reverse": null, "server": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "zone": "fr-par-1", "tags": []}}' + headers: + Content-Length: + - "253" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:50 GMT + Location: + - https://par1-cmp-prd-api02.internal.scaleway.com/ips/edb87e2b-3637-4cb3-bca6-afaab47f6a30 + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ab8964cc-e7ee-43a7-8b3a-b123c9e40a6d + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"server":"4b3d7253-f257-43f9-8d59-f183187aaf2a"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.129.58 + method: PATCH + response: + body: '{"ip": {"id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", "address": "51.15.129.58", "reverse": null, "server": {"id": "4b3d7253-f257-43f9-8d59-f183187aaf2a", "name": "cli-srv-eloquent-wing"}, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "zone": "fr-par-1", "tags": []}}' + headers: + Content-Length: + - "328" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb4f6307-4170-47dd-8388-e79ae488d579 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.129.58 + method: GET + response: + body: '{"ip": {"id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", "address": "51.15.129.58", "reverse": null, "server": {"id": "4b3d7253-f257-43f9-8d59-f183187aaf2a", "name": "cli-srv-eloquent-wing"}, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "zone": "fr-par-1", "tags": []}}' + headers: + Content-Length: + - "328" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8f384c1f-926b-454a-88ed-d59cd2ded48f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/edb87e2b-3637-4cb3-bca6-afaab47f6a30 + method: PATCH + response: + body: '{"ip": {"id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", "address": "51.15.129.58", "reverse": null, "server": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "zone": "fr-par-1", "tags": []}}' + headers: + Content-Length: + - "253" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 94010e98-2803-4b29-97af-a848e899d773 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3d7253-f257-43f9-8d59-f183187aaf2a + method: GET + response: + body: '{"server": {"id": "4b3d7253-f257-43f9-8d59-f183187aaf2a", "name": "cli-srv-eloquent-wing", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-eloquent-wing", "image": {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "210db8e4-9645-4369-aa7e-9caa57ba79dd", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2021-03-25T11:32:29.589126+00:00", "modification_date": "2021-03-25T11:32:29.589126+00:00", "default_bootscript": null, "from_server": null, "state": "available", "zone": "fr-par-1"}, "volumes": {"0": {"id": "675e73af-c54b-4c12-b2dc-ad88dd03b960", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "4b3d7253-f257-43f9-8d59-f183187aaf2a", "name": "cli-srv-eloquent-wing"}, "size": 20000000000, "state": "available", "creation_date": "2021-05-18T12:52:49.417489+00:00", "modification_date": "2021-05-18T12:52:49.417489+00:00", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2021-05-18T12:52:49.417489+00:00", "modification_date": "2021-05-18T12:52:49.417489+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": "54e2d5f6-d79c-44cc-b19f-613699b9cc7e", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2520" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7bd1cd9b-7add-457c-bea5-767bb8cc3dda + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b3d7253-f257-43f9-8d59-f183187aaf2a + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cafc4f17-e799-494d-93f4-866e85dac2e2 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/675e73af-c54b-4c12-b2dc-ad88dd03b960 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c7827096-1513-4835-9627-67dfbafc9ae6 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.129.58 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d972bee6-e6a6-4919-8e2a-3fabad1ed1ba + status: 204 No Content + code: 204 + duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-ip-detach-with-ip.golden b/internal/namespaces/instance/v1/testdata/test-ip-detach-with-ip.golden new file mode 100644 index 0000000000..39cbbe7c7b --- /dev/null +++ b/internal/namespaces/instance/v1/testdata/test-ip-detach-with-ip.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟩🟩🟩 STDOUT️ 🟩🟩🟩️ +IP.ID edb87e2b-3637-4cb3-bca6-afaab47f6a30 +IP.Address 51.15.129.58 +IP.Organization 951df375-e094-4d26-97c1-ba548eeb9c42 +IP.Project 951df375-e094-4d26-97c1-ba548eeb9c42 +IP.Zone fr-par-1 +🟩🟩🟩 JSON STDOUT 🟩🟩🟩 +{ + "ip": { + "id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", + "address": "51.15.129.58", + "reverse": null, + "server": null, + "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", + "tags": [], + "project": "951df375-e094-4d26-97c1-ba548eeb9c42", + "zone": "fr-par-1" + } +} diff --git a/internal/namespaces/instance/v1/testdata/test-ip-detach-with-uuid.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-ip-detach-with-uuid.cassette.yaml new file mode 100644 index 0000000000..a3782e62a5 --- /dev/null +++ b/internal/namespaces/instance/v1/testdata/test-ip-detach-with-uuid.cassette.yaml @@ -0,0 +1,369 @@ +--- +version: 1 +interactions: +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/marketplace/v1/images?page=1 + method: GET + response: + body: '{"images": [{"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": "46b87e8b-e9b5-417f-a185-3d0fac2531bc", "name": "2021-03-30T08:50:27.029754+00:00", "local_images": [{"id": "5e84372e-6abe-4df5-834d-b12af4b24af8", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "a7306ef9-5e1b-464d-a409-a44026d91a9e", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "a5076337-734f-4b99-95ed-9a5bc73b9b09", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "7663c62b-40e3-4e6b-a835-70723ec2050b", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "5dd154af-ddad-496f-b631-388f0a787df1", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "62ad764e-298b-4e46-827d-be196f7f0b6b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "f63fe42a-900f-4a5e-ba99-ab0e59469b7e", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "28c59566-b53c-45dc-844d-43029388152d", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "b4bdbee1-e1f1-4436-8de4-bdb1b6ba4803", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "bbe8ed3d-c693-4437-b2dd-5d5968655f94", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "60eb89c7-1c29-4a94-a954-dddb81fc1a55", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}], "creation_date": "2021-03-30T08:50:27.247448+00:00", "modification_date": "2021-03-30T08:50:27.247448+00:00"}], "categories": ["distribution"], "current_public_version": "46b87e8b-e9b5-417f-a185-3d0fac2531bc", "creation_date": "2018-04-27T14:07:25.221998+00:00", "modification_date": "2021-04-01T07:04:52.514102+00:00", "valid_until": null}, {"id": "acf93867-88d9-40ee-99ea-6b2bb1ee8f0c", "name": "Ubuntu Xenial", "label": "ubuntu_xenial", "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": "f71f0db2-513e-4e32-8b85-85c153b67b39", "name": "2021-03-30T09:22:06.072470+00:00", "local_images": [{"id": "245e5cea-a9b4-4a36-9055-27185afe8690", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "f1b14363-cea2-4b85-84c7-602d24474b99", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "75ace7bb-699b-4cea-813c-633c31de3e9e", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "6c34a3f3-5e8a-455b-9bc2-f07c4c35bf89", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "605ceb9b-0d67-4565-b324-6dfff7c1307e", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "7d04dd2a-6cee-4aec-be9e-f87154009112", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "STARDUST1-S"]}, {"id": "16ca98f1-89f1-4315-a7fd-a711ac3bcb83", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", "START1-S", "START1-M", "START1-L", "DEV1-S", "DEV1-M", "DEV1-L", "DEV1-XL", "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL"]}, {"id": "3d6804e0-086e-4a06-8124-7240a657668d", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "c40fbabc-efc8-4e04-91ea-5e1e22daece1", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "bd859e89-fb2d-466a-a546-383630a1ead1", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "a5f6bb77-3d64-4f7f-abe0-72492b1bc020", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}], "creation_date": "2021-03-30T09:22:06.123537+00:00", "modification_date": "2021-03-30T09:22:06.123537+00:00"}], "categories": ["distribution"], "current_public_version": "f71f0db2-513e-4e32-8b85-85c153b67b39", "creation_date": "2016-04-22T13:27:33.769932+00:00", "modification_date": "2021-04-01T07:06:41.643152+00:00", "valid_until": null}, {"id": "c94b5df7-e698-4ac9-b273-565d18f5f8d2", "name": "Debian Stretch", "label": "debian_stretch", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", "description": "Debian is a free, powerful and stable operating system.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build System"}, "versions": [{"id": "a1478726-083c-4d31-815d-255e07123155", "name": "2021-03-30T11:48:36.852155+00:00", "local_images": [{"id": "2e7e23ee-db6b-4d86-a779-abd90d500482", "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"]}, {"id": "37938de8-e3be-479a-895d-095158f76212", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "0ac73990-3bd5-424a-8128-0825821c0c4f", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "5f7ab0cd-d10e-49a0-91c8-315ed8a6a1a4", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "X64-15GB", "C2L", "C2M", "X64-30GB", "X64-120GB", "X64-60GB"]}, {"id": "bd6ba96e-d4c4-41f9-88e2-8dad3e6f085b", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "9096ef85-6520-4b8e-9303-77fd51ec3c5a", "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", "STARDUST1-S"]}, {"id": "6c694560-503e-4463-8cc8-4b5ae11b0fca", "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"]}, {"id": "d954dc33-c52e-4960-93e1-b69c85d169be", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "22a1bd8d-4498-4800-a8e5-4bc85001176c", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "X64-15GB", "C2L", "C2M", "X64-30GB", "X64-120GB", "X64-60GB"]}, {"id": "86740237-62fc-4538-9b70-4373942f53d3", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "eb803e1e-36ff-4fec-9a68-20da4cb95c0d", "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", "STARDUST1-S"]}], "creation_date": "2021-03-30T11:48:36.906051+00:00", "modification_date": "2021-03-30T11:48:36.906051+00:00"}], "categories": ["distribution"], "current_public_version": "a1478726-083c-4d31-815d-255e07123155", "creation_date": "2017-06-26T15:37:13.460764+00:00", "modification_date": "2021-04-01T07:10:04.448317+00:00", "valid_until": null}, {"id": "fb619bdf-834e-4c71-b7b8-15b5546d18bd", "name": "Debian Jessie", "label": "debian_jessie", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", "description": "Debian is a free, powerful and stable operating system.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "d3846a7b-8219-4938-ad96-cc2173e22481", "name": "2018-04-10T22:31:04.321157", "local_images": [{"id": "2dfad6d2-e527-4e93-8eb1-8dc57803b310", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "610f68d5-cbad-4923-98ae-782af8f3b527", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "dc22e553-2d2e-4689-94f8-8817db824202", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "2e570f53-199e-47cc-95dd-f7bc392496e3", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "abf9e3a2-7171-4764-91ef-57f30b21193d", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "69cbdd54-88a1-4458-b75e-662a0848a7ce", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "e1dd422e-44eb-451c-b60c-7330ff421bfb", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1aa604d6-2ec2-4774-91a2-56309dacde47", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2018-04-10T22:31:04.322822+00:00", "modification_date": "2018-04-10T22:31:04.322822+00:00"}], "categories": ["distribution"], "current_public_version": "d3846a7b-8219-4938-ad96-cc2173e22481", "creation_date": "2016-03-05T14:52:36.322319+00:00", "modification_date": "2019-03-26T14:00:50.449502+00:00", "valid_until": null}, {"id": "1d47b370-ac63-43b1-9f34-7328675e5e18", "name": "CentOS 7.6", "label": "centos_7.6", "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": "11111111-1111-4111-8111-111111111111", "name": "OCS"}, "versions": [{"id": "53138072-3099-4566-8b18-de7b2739696a", "name": "2019-03-18T09:29:00.168590", "local_images": [{"id": "05794ee5-c6d2-4d69-86dd-f1fc9032921d", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["VC1S", "GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "VC1M", "C2L", "C2M", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "0f44b130-2bc7-4f82-993e-de9d1042c56e", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "10aae8d8-0073-44f9-ac19-a171ac40bc78", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "775a2a9f-551a-4309-838f-64ed7438c263", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2019-03-18T09:29:00.247544+00:00", "modification_date": "2019-03-18T09:29:00.247544+00:00"}], "categories": ["distribution"], "current_public_version": "53138072-3099-4566-8b18-de7b2739696a", "creation_date": "2019-03-06T11:27:48.406290+00:00", "modification_date": "2019-03-26T14:00:50.839069+00:00", "valid_until": null}, {"id": "98fc244a-ed4c-4523-bd17-b9c4070b8e7e", "name": "CentOS 7.4", "label": "centos_7.4", "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": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "31be34e5-074d-4c63-8c77-454459f77c3f", "name": "2018-04-20T13:55:06.817954", "local_images": [{"id": "ec8b431e-ad39-4523-8b94-f3fa7f3cbd06", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "7220ac63-bac8-484b-9d44-93e3bd01f5a6", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "9d3bb257-9bb3-4f7e-ab75-cbdae33d41a4", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a2d1bdb1-a1e1-4e39-9ffa-d0da7de02f38", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2018-04-20T13:55:06.824033+00:00", "modification_date": "2018-04-20T13:55:06.824033+00:00"}], "categories": ["distribution"], "current_public_version": "31be34e5-074d-4c63-8c77-454459f77c3f", "creation_date": "2018-04-19T10:12:28.968536+00:00", "modification_date": "2019-03-26T14:00:53.445597+00:00", "valid_until": null}, {"id": "69adec15-f1a7-469a-9ba5-868577832521", "name": "Fedora 29", "label": "fedora_29", "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": "11111111-1111-4111-8111-111111111111", "name": "OCS"}, "versions": [{"id": "a0f02365-f1af-48cb-b82d-75853a4e05e1", "name": "2019-03-06T09:08:01.016040", "local_images": [{"id": "541f4562-5417-4b59-85d6-caaf64c1f127", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "3c0f706e-0947-47a3-88a3-595c29f7567a", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "1c7efe35-332e-4fde-b8d6-30606b81a8e7", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "90c83cdc-8560-4543-9033-1e63e3474e12", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-06T09:08:01.112958+00:00", "modification_date": "2019-03-06T09:08:01.112958+00:00"}], "categories": ["distribution"], "current_public_version": "a0f02365-f1af-48cb-b82d-75853a4e05e1", "creation_date": "2019-03-06T09:07:51.652433+00:00", "modification_date": "2019-03-26T14:00:51.848785+00:00", "valid_until": null}, {"id": "30d0f04f-6422-4b74-9ce9-1c2267419978", "name": "Fedora 28", "label": "fedora_28", "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": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "49e33199-28cc-44d6-bb2e-a6147944ad5c", "name": "2018-05-03T12:01:10.135200", "local_images": [{"id": "830aad94-24e5-4363-b2c3-e62921bd9294", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "c9cd1782-2159-44b8-83b1-9c48ed6c8a63", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "27c84474-0af7-473f-9295-b5b85be5e429", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "5c7b710b-ff79-4e56-81d3-6bf31a946ad0", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-05-03T12:01:10.147973+00:00", "modification_date": "2018-05-03T12:01:10.147973+00:00"}], "categories": ["distribution"], "current_public_version": "49e33199-28cc-44d6-bb2e-a6147944ad5c", "creation_date": "2018-05-03T09:51:57.274011+00:00", "modification_date": "2019-03-26T14:00:50.156015+00:00", "valid_until": null}, {"id": "4bff4f37-3ef9-457e-9e8d-4a786cb2a5f2", "name": "Fedora 27", "label": "fedora_27", "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": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "45b5823f-8ddf-4ea8-b106-33d2df127cdf", "name": "2018-09-06T10:51:13.011044", "local_images": [{"id": "097a100e-fd2f-4918-8a5b-d86de5a489be", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "STARDUST1-S", "GP1-VIZ"]}, {"id": "73f0bcd8-a152-4665-ac09-1b105905a475", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "9bef3647-8ccb-43aa-b753-d289851e85bf", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "801b5f02-eb8c-4d77-bce6-5cea21bf9260", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-09-06T10:51:13.009967+00:00", "modification_date": "2018-09-06T10:51:13.009967+00:00"}], "categories": ["distribution"], "current_public_version": "45b5823f-8ddf-4ea8-b106-33d2df127cdf", "creation_date": "2018-04-19T10:14:08.648100+00:00", "modification_date": "2019-03-26T14:00:53.140907+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": "mtouron@ocs.online.net"}, "versions": [{"id": "f7696517-bc49-448b-9869-f2c84e7c2a96", "name": "2018-04-20T15:59:04.593811", "local_images": [{"id": "f21defd0-9fd9-4fb2-a29a-22844a6be3cd", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "3c904f73-080e-4c6f-8b28-8426cfdcb3c7", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "1e23c590-a371-403b-a8db-cfd9a2f74c03", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "6a347714-49ab-44a6-92fb-1f0ba6aa96e9", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}], "creation_date": "2018-04-20T15:59:04.594929+00:00", "modification_date": "2018-04-20T15:59:04.594929+00:00"}], "categories": ["distribution"], "current_public_version": "f7696517-bc49-448b-9869-f2c84e7c2a96", "creation_date": "2016-03-07T20:55:32.213089+00:00", "modification_date": "2019-03-26T14:00:49.327070+00:00", "valid_until": null}, {"id": "c0649a2a-e6bf-4712-9303-8d967153209c", "name": "Alpine Linux", "label": "alpine_linux", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/alpinelinux.png", "description": "Alpine Linux is security-oriented, lightweight Linux distribution based on musl libc and busybox.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "be2293b6-9eba-4497-9659-2cfb927483b5", "name": "2018-04-26T10:18:10.196011", "local_images": [{"id": "24141068-1043-4885-bf2b-8290f617e273", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "241b0bb3-9eed-4a7b-b0fd-71c45452ac95", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "GP1-XS", "DEV1-M", "DEV1-L", "DEV1-S", "GP1-XL", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S"]}, {"id": "7ba96c78-de91-4116-a075-54284ac58632", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB", "GP1-VIZ"]}, {"id": "e9607990-506c-478b-b134-649a3777472b", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-26T10:18:10.201002+00:00", "modification_date": "2018-04-26T10:18:10.201002+00:00"}], "categories": ["distribution"], "current_public_version": "be2293b6-9eba-4497-9659-2cfb927483b5", "creation_date": "2016-03-05T14:49:50.255568+00:00", "modification_date": "2019-03-26T14:00:54.425917+00:00", "valid_until": null}, {"id": "293a2ddf-6e33-4e63-81f0-fbdd90641480", "name": "CentOS 8", "label": "centos_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": "ddda3abc-59c1-4385-b551-65e63f7f759e", "name": "2021-03-31T11:10:17.416332+00:00", "local_images": [{"id": "4d93a3c2-771d-446d-a904-c2ac938eace2", "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", "STARDUST1-S"]}, {"id": "f07fc6dd-1219-424b-bd5f-eabc145c1b61", "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"]}, {"id": "a79c7b52-a9e0-4474-b6fd-b436c4ad8d0b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "b23e727e-1e01-49e9-ae1d-a29180228ae5", "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"]}, {"id": "0caa749a-160f-4361-8007-0d1b5ea265c9", "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", "STARDUST1-S"]}], "creation_date": "2021-03-31T11:10:17.605755+00:00", "modification_date": "2021-03-31T11:10:17.605755+00:00"}], "categories": ["distribution"], "current_public_version": "ddda3abc-59c1-4385-b551-65e63f7f759e", "creation_date": "2020-04-29T11:48:57.810456+00:00", "modification_date": "2021-04-01T07:12:10.660353+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": "70a28442-1712-4a06-a77c-2f4b712bcc3d", "name": "2021-03-30T11:22:41.282946+00:00", "local_images": [{"id": "ba956003-4988-4c30-91ba-5320ae5d8bac", "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"]}, {"id": "61ae99dc-aaef-4a32-b2f4-07f1a534aaa4", "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", "STARDUST1-S"]}, {"id": "61010e34-7f1e-402b-a253-028a714a6678", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "4720c10f-59e3-4e20-915b-dcee1fc34c11", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "cc9188b3-3938-47d7-b091-c9ecad1fe507", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2S", "C2M", "C2L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB"]}, {"id": "d178f0f3-da78-4691-8368-2ac175f9940b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "9d6e8a2c-31a9-439c-a4c5-9fba1c5b96ed", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-2GB", "ARM64-4GB", "ARM64-8GB", "ARM64-16GB", "ARM64-32GB", "ARM64-64GB", "ARM64-128GB"]}, {"id": "f3a69d77-3faf-4a0d-97c1-1994d96cffa5", "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"]}, {"id": "d9c10ab7-1496-4be8-a4d9-9dec4571f61f", "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", "STARDUST1-S"]}], "creation_date": "2021-03-30T11:22:41.337836+00:00", "modification_date": "2021-03-30T11:22:41.337836+00:00"}], "categories": ["distribution"], "current_public_version": "70a28442-1712-4a06-a77c-2f4b712bcc3d", "creation_date": "2019-07-16T13:55:36.377559+00:00", "modification_date": "2021-04-01T07:08:18.822693+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": "mtouron@ocs.online.net"}, "versions": [{"id": "bf30c937-6e89-4019-ad2a-92156a62cf3e", "name": "2019-03-07T17:07:39.004809", "local_images": [{"id": "89c80d27-ddf4-4ffa-8215-b335cce3fd05", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "99e2a9c6-f0b9-42b6-8823-8b0d86ffe9bf", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "45a7e942-1fb0-48c0-bbf6-0acb9af24604", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "c669011a-ee16-42b6-b0c3-ecd19e419539", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "dcf35840-c007-4c8b-a48b-227cfd8a347b", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "df7298ce-ab95-4384-90d1-76b8fff31f06", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "929c50f5-721c-4672-817c-8704eb4bc1d1", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-07T17:07:39.090644+00:00", "modification_date": "2019-03-07T17:07:39.090644+00:00"}], "categories": ["instantapp"], "current_public_version": "bf30c937-6e89-4019-ad2a-92156a62cf3e", "creation_date": "2016-03-05T15:11:26.847640+00:00", "modification_date": "2019-03-26T14:00:49.524465+00:00", "valid_until": null}, {"id": "e549e5b4-33eb-4c97-950a-8baf107f895f", "name": "Fedora 32", "label": "fedora_32", "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": "75ba84da-ee4f-44ca-9fac-49ac43e8a0d2", "name": "2021-03-31T14:22:08.724842+00:00", "local_images": [{"id": "19717715-2e56-41d4-9795-bf3d0d509d5a", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "5a987969-ab7b-4e03-909f-3aed546cee06", "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"]}, {"id": "616bcd6c-b87e-4eb7-824c-ade385459a5a", "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", "STARDUST1-S"]}, {"id": "ffd5ed07-3ed8-46cb-9b78-b267b7848cbf", "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"]}, {"id": "dd8bf78f-59c8-452a-b41e-0f43d25d6220", "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", "STARDUST1-S"]}], "creation_date": "2021-03-31T14:22:08.799093+00:00", "modification_date": "2021-03-31T14:22:08.799093+00:00"}], "categories": ["distribution"], "current_public_version": "75ba84da-ee4f-44ca-9fac-49ac43e8a0d2", "creation_date": "2020-05-19T08:21:31.875735+00:00", "modification_date": "2021-04-01T07:14:57.371602+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": "mtouron@ocs.online.net"}, "versions": [{"id": "a389c94b-8b19-4528-a4f6-0b7cac3425e9", "name": "2019-04-09T13:31:03.352588", "local_images": [{"id": "06a2a6e9-922d-4353-9472-bbb1f79fda63", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "3e71b78e-dd20-48ae-8d6e-f594cb255af5", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "4527e41c-0e90-43a8-857e-d9584bf8467f", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1cd308b9-5988-4b04-80a1-389f5f63738b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-04-09T13:31:03.648676+00:00", "modification_date": "2019-04-09T13:31:03.648676+00:00"}], "categories": ["instantapp"], "current_public_version": "a389c94b-8b19-4528-a4f6-0b7cac3425e9", "creation_date": "2016-03-07T21:06:22.770864+00:00", "modification_date": "2019-04-09T13:31:04.022755+00:00", "valid_until": null}, {"id": "90d512b8-e4b7-4821-98e9-78241d73a7e6", "name": "Gogs", "label": "gogs", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/gogs.png", "description": "A painless self-hosted Git service.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "1b9e22e3-6a29-4f42-acfd-281ad086ee1d", "name": "2018-05-16T15:11:25.303762", "local_images": [{"id": "776705c4-be8e-4a27-b740-2e8bbba518c5", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a513a250-e6e9-4687-892e-9d10b29e3972", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "d1341ece-ffda-4386-ad3a-27d60b650401", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "69b8bc0e-7771-42af-a4ad-ca756c31a18a", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}], "creation_date": "2018-05-16T15:11:25.881343+00:00", "modification_date": "2018-05-16T15:11:25.881343+00:00"}], "categories": ["instantapp"], "current_public_version": "1b9e22e3-6a29-4f42-acfd-281ad086ee1d", "creation_date": "2016-03-07T21:00:44.946716+00:00", "modification_date": "2019-03-26T14:00:54.513196+00:00", "valid_until": null}, {"id": "6c8d25c0-cb6f-4220-98aa-830b7e479ba5", "name": "Golang", "label": "golang", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/golang.png", "description": "Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.A dynamic, open source programming language with a focus on simplicity and productivity.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "880194c8-53ce-4b6b-a274-4f79307e2f8e", "name": "2018-04-18T08:00:48.129246", "local_images": [{"id": "43213956-c7a3-44b8-9d96-d51fa7457969", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5ffb52aa-ea55-4596-9d0f-e403701b6624", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "bef7a6af-1bab-490a-a6cb-6a07c1b9ac7b", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "f0b7d9b8-aa31-45b4-9f7e-a68aa164ce6f", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "76ca1eb7-f68f-4770-a7a1-ab7665ae3297", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "0d954c34-341c-483a-be1c-71cf197343ed", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}], "creation_date": "2018-04-18T08:00:48.175340+00:00", "modification_date": "2018-04-18T08:00:48.175340+00:00"}], "categories": ["instantapp"], "current_public_version": "880194c8-53ce-4b6b-a274-4f79307e2f8e", "creation_date": "2016-03-08T07:01:11.482482+00:00", "modification_date": "2019-03-26T14:00:52.861225+00:00", "valid_until": null}, {"id": "d72d1b73-7460-446b-91fb-b451d079aa4d", "name": "Java", "label": "java", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/java.png", "description": "Java is a computer programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "f3f69cca-aadb-4e5e-94b0-254ce05a6639", "name": "2018-04-18T10:11:18.477156", "local_images": [{"id": "c50cb4b2-bf7b-47e2-ab5f-3a9d3d4c1aef", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "98c93894-26a8-463b-a72b-c9d2b531b95d", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "43c43b5e-1e4f-4905-baef-71df3c565b4d", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "0c3f9f03-f490-444b-a05e-f342e917fed0", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5e07622b-ad8b-4f65-b55f-cca18c3c0bbf", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "c0330755-e5d0-4c2c-ad0e-70687e1dccbb", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}], "creation_date": "2018-04-18T10:11:18.535736+00:00", "modification_date": "2018-04-18T10:11:18.535736+00:00"}], "categories": ["instantapp"], "current_public_version": "f3f69cca-aadb-4e5e-94b0-254ce05a6639", "creation_date": "2016-03-07T21:07:46.908969+00:00", "modification_date": "2019-03-26T14:00:49.430836+00:00", "valid_until": null}, {"id": "986ba672-b489-4f66-9e3b-90194ac336d4", "name": "LEMP stack", "label": "lemp_stack", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/lemp.png", "description": "LEMP stack is a version where Apache has been replaced with the more lightweight web server Nginx.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "a2e5ed1a-6f01-4f20-aabd-4115c67df590", "name": "2019-04-09T13:31:10.613803", "local_images": [{"id": "32332006-1420-4260-97c7-c1da586f68cd", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "d16622f6-32c1-4d16-a3ca-38b23d3a25fb", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "1bd37d60-4494-485f-9a82-0a211005489c", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "415d3727-0013-419a-abc6-1a688b096730", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "26c3727a-5b77-4b26-89c9-445ea2006f07", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "155ab61a-e069-4acb-bae3-e8217c5c0376", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}], "creation_date": "2019-04-09T13:31:11.315416+00:00", "modification_date": "2019-04-09T13:31:11.315416+00:00"}], "categories": ["instantapp"], "current_public_version": "a2e5ed1a-6f01-4f20-aabd-4115c67df590", "creation_date": "2016-03-07T21:06:53.552980+00:00", "modification_date": "2019-04-09T13:31:12.129567+00:00", "valid_until": null}, {"id": "98ad7ccb-cc7f-4828-9da3-113e9c1bd2db", "name": "Mattermost", "label": "mattermost", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/mattermost.png", "description": "self-hosted Slack-alternative", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "42371bf7-c1ca-4889-a6d4-43febda865ca", "name": "2018-05-03T10:27:55.021511", "local_images": [{"id": "486e128c-fde7-42d7-9200-5d91b8dc2761", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "eb2ed407-177c-4195-a4ca-f3baa85e62ed", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}], "creation_date": "2018-05-03T10:27:55.610920+00:00", "modification_date": "2018-05-03T10:27:55.610920+00:00"}], "categories": ["instantapp"], "current_public_version": "42371bf7-c1ca-4889-a6d4-43febda865ca", "creation_date": "2016-07-11T14:52:57.803007+00:00", "modification_date": "2019-03-26T14:00:51.938920+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": "2fe66cc6-8985-4b5f-8325-83acc0589436", "name": "2019-04-16T12:25:37.374676", "local_images": [{"id": "e9af0a24-4312-4305-9386-b3a79e02f92d", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "c38073cf-ee40-4dc2-8059-ec2845f38f46", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "b9e319f5-ac4c-400d-8ff6-a6a769755190", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "0390c3e0-186d-4b24-8d0d-0e08b74fb59a", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "900971a4-3a3e-4ef9-b92f-b33c366c9f5c", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "7b7d4dde-6fe1-4586-a5a5-ae1af2ca2605", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-04-16T12:25:38.052537+00:00", "modification_date": "2019-04-16T12:25:38.052537+00:00"}], "categories": ["instantapp"], "current_public_version": "2fe66cc6-8985-4b5f-8325-83acc0589436", "creation_date": "2019-04-16T12:22:56.930842+00:00", "modification_date": "2019-04-16T12:25:38.758921+00:00", "valid_until": null}, {"id": "d11d7cc2-6ec8-4f95-a286-24fb5bac9e39", "name": "Node.js", "label": "node.js", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/nodejs.png", "description": "Node.js is an open source, cross-platform runtime environment for server-side and networking applications.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "af308511-bcb3-4583-b0e0-79dbb1eea63e", "name": "2018-04-18T10:07:15.691016", "local_images": [{"id": "a8020f20-8a66-43f3-8253-35941db3d237", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "3cc79cc6-4649-46d9-a2b6-698f1236e1d0", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "c9fb2bed-a9b8-4e1a-bf15-db8e763fe7a7", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "f01db1d0-092a-47de-a32e-09bd6bda7715", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "6f2e99e8-da99-4990-b689-7294e8a604fa", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "03980aee-14cd-44f1-be3c-508c8b8a19e6", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}], "creation_date": "2018-04-18T10:07:15.744660+00:00", "modification_date": "2018-04-18T10:07:15.744660+00:00"}], "categories": ["instantapp"], "current_public_version": "af308511-bcb3-4583-b0e0-79dbb1eea63e", "creation_date": "2016-03-07T21:06:07.014951+00:00", "modification_date": "2019-03-26T14:00:51.148549+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": "mtouron@ocs.online.net"}, "versions": [{"id": "d812e374-1169-4c91-aa90-c72acceeecb2", "name": "2019-03-25T13:06:01.961936", "local_images": [{"id": "b15ddb1a-0611-412e-881a-3aed1b36392b", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "02906ae8-bf44-4dd0-bd05-6312dd9fa234", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "3aa3622c-45d4-4388-9618-cce6974c71a0", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "cb4f1087-8edc-4a03-a718-e646cc21a14f", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a5430536-2a51-425d-8613-ef84dae91e27", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "51573d2d-301f-4d24-b0d6-f151728c82f5", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "DEV1-S"]}, {"id": "cac79531-98d5-48fa-aba1-8250214b88a3", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "4f15411a-ced3-456b-858c-a9fbfd22d37b", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-25T13:06:02.622633+00:00", "modification_date": "2019-03-25T13:06:02.622633+00:00"}], "categories": ["instantapp"], "current_public_version": "d812e374-1169-4c91-aa90-c72acceeecb2", "creation_date": "2016-03-07T21:04:57.667667+00:00", "modification_date": "2019-03-26T14:00:52.955853+00:00", "valid_until": null}, {"id": "e22a5d54-ecb5-4fdd-a130-a473737ff7ab", "name": "ownCloud", "label": "owncloud", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/owncloud.png", "description": "ownCloud lets you sync & share your files, calendar, contacts and more. Access your data from all your devices, on an open platform you can extend and modify.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "c9c02a9c-e072-48af-aefd-bf6be9028022", "name": "2018-04-18T10:09:38.952503", "local_images": [{"id": "a5fb716a-1c60-4740-a179-98ce315ca3d7", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "2fdbbbb4-3b63-403b-9604-27713971efd6", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "4208a611-a789-40ea-ac0e-fb3001ee39a9", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "93de8eae-535f-47bd-88fa-84af7b5eaf76", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "7ad0b56b-1128-418d-9a5c-c006375e63ff", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1dc04f4a-6d85-4f21-b6e8-0de9ea3efabf", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-18T10:09:39.010195+00:00", "modification_date": "2018-04-18T10:09:39.010195+00:00"}], "categories": ["instantapp"], "current_public_version": "c9c02a9c-e072-48af-aefd-bf6be9028022", "creation_date": "2016-03-07T21:05:14.365925+00:00", "modification_date": "2019-03-26T14:00:52.457272+00:00", "valid_until": null}, {"id": "58a551e0-1b8b-4c83-82e7-1b4602ad43d1", "name": "PrestaShop", "label": "prestashop", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/prestashop.png", "description": "PrestaShop is a free, open source e-commerce solution.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "6c459ab1-4f1a-4f87-b92e-c00849c93fde", "name": "2018-05-16T14:57:15.505378", "local_images": [{"id": "4d07fcfa-ccda-4945-81aa-8de2206b39c0", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "73db574d-d5a0-49d5-b6ca-dd662895fac3", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "c97dc20f-8066-4d56-aabf-2b75162c0f9f", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "c78c3206-eb2b-4217-ad7c-0aca98dec145", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "7f91941c-f06a-4103-91a4-793f03b11fda", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "271a9c1f-73ef-4943-bac7-799130228040", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}], "creation_date": "2018-05-16T14:57:16.059809+00:00", "modification_date": "2018-05-16T14:57:16.059809+00:00"}], "categories": ["instantapp"], "current_public_version": "6c459ab1-4f1a-4f87-b92e-c00849c93fde", "creation_date": "2016-03-07T21:01:47.997930+00:00", "modification_date": "2019-03-26T14:00:50.067950+00:00", "valid_until": null}, {"id": "5c0f7971-c308-442e-82ab-2eb147439bd7", "name": "Python", "label": "python", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/python.png", "description": "The intended audience of this InstantApp is Python developers who want to bootstrap or test a Python application easily, in seconds.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "2642a982-e61d-4a58-8105-8838a69a85e3", "name": "2018-04-17T16:43:36.031203", "local_images": [{"id": "70b9c9cf-c2d9-4a80-b450-a7aef8226d96", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5218fa4e-8239-4831-ac2a-c96e23f387a2", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "f205e2a6-621a-4534-a5d1-36f6cf1f8376", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "613a5226-3d97-4f0e-abe2-99385a050784", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "d8416c83-8713-4622-b5aa-87388d6060c7", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "1fc8dc9e-56ef-4e1f-a7b3-3daaef994b9c", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-17T16:43:36.089412+00:00", "modification_date": "2018-04-17T16:43:36.089412+00:00"}], "categories": ["instantapp"], "current_public_version": "2642a982-e61d-4a58-8105-8838a69a85e3", "creation_date": "2016-03-07T21:05:46.642023+00:00", "modification_date": "2019-03-26T14:00:49.970905+00:00", "valid_until": null}, {"id": "42866fbe-9168-4f77-8271-09beb6049a07", "name": "Ruby", "label": "ruby", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ruby.png", "description": "A dynamic, open source programming language with a focus on simplicity and productivity.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "5b8c935b-5047-43fd-a423-045dae3e0d78", "name": "2018-04-18T10:21:49.057120", "local_images": [{"id": "09c71ada-00c6-43de-ad44-c77c5b857a05", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "24f2e8ee-80f1-4a8d-83c4-74ed8cd80ed0", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "e2479a13-414b-4a0c-ba50-d01e67ee8600", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "f83a03fa-58eb-4b35-bda9-1a42b6d6d90d", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "8e3f0420-850e-4711-95df-3c1c11ee6854", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "a6ed60a0-c967-4ef5-9432-5173f8c075a6", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2018-04-18T10:21:49.119857+00:00", "modification_date": "2018-04-18T10:21:49.119857+00:00"}], "categories": ["instantapp"], "current_public_version": "5b8c935b-5047-43fd-a423-045dae3e0d78", "creation_date": "2016-03-07T22:15:25.347873+00:00", "modification_date": "2019-03-26T14:00:54.119256+00:00", "valid_until": null}, {"id": "4e18f1fc-0b66-4692-a38d-bfa4c94f29de", "name": "Torrents", "label": "torrents", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/seedbox.png", "description": "The torrents InstantApp spawns a private server to upload and download your digital files.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}, "versions": [{"id": "53d2e4fb-20df-4ba9-8d65-29256f2be480", "name": "2019-03-25T13:04:01.408435", "local_images": [{"id": "41d0db97-4822-4642-96ec-6f3fbcfc167c", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "3fbe5f72-81da-4a0a-91ef-36ab68fc801e", "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "1aed7396-79dc-431d-af03-d3dde35d195f", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "DEV1-S"]}, {"id": "398875b6-de43-4946-976f-ba5189954912", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "a3160162-3d72-4632-8e42-4849a1280743", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "f5d116e3-2b58-44cf-a83a-cd0682135473", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-25T13:04:02.099902+00:00", "modification_date": "2019-03-25T13:04:02.099902+00:00"}], "categories": ["instantapp"], "current_public_version": "53d2e4fb-20df-4ba9-8d65-29256f2be480", "creation_date": "2016-03-07T21:08:02.980958+00:00", "modification_date": "2019-03-26T14:00:51.427329+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": "449bdf2d-9c08-4db6-9c17-156d6cb083bc", "name": "2021-03-25T11:49:34.134953+00:00", "local_images": [{"id": "58ee4636-3043-4ca3-82c4-5976a071453d", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-XXL", "ENT1-XXXL", "ENT1-XXXXL"]}, {"id": "9ca69019-edd2-4adf-bc0a-bd259ff8dc55", "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"]}, {"id": "7af873db-4999-4147-a176-59f6f22833fd", "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"]}, {"id": "a3ea99d3-c2fe-4189-acd3-219d9057eadd", "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", "STARDUST1-S"]}, {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "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", "STARDUST1-S"]}], "creation_date": "2021-03-25T11:49:34.183695+00:00", "modification_date": "2021-03-25T11:49:34.183695+00:00"}], "categories": ["distribution"], "current_public_version": "449bdf2d-9c08-4db6-9c17-156d6cb083bc", "creation_date": "2020-02-17T15:50:48.980694+00:00", "modification_date": "2021-03-25T12:12:21.986402+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": "38be59ec-1291-4696-83a9-f46a2eb2ce70", "name": "2021-01-27T16:04:54.780008", "local_images": [{"id": "cefd1206-67ce-4321-ad7e-090272fbf4e6", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}, {"id": "329dfbda-aa29-438f-bba0-2a1eff865d65", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}], "creation_date": "2021-01-27T16:04:55.121317+00:00", "modification_date": "2021-01-27T16:04:55.121317+00:00"}], "categories": ["Machine Learning"], "current_public_version": "38be59ec-1291-4696-83a9-f46a2eb2ce70", "creation_date": "2019-03-06T17:24:56.871317+00:00", "modification_date": "2021-01-27T16:07:53.196132+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": "5e867d97-93eb-4420-80ee-14e8348d5ad6", "name": "2021-01-27T15:43:05.903480", "local_images": [{"id": "eea5b9d6-0b1f-4411-b369-75a5d4372ca7", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}, {"id": "04495e24-7295-4533-b817-344c36553305", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}], "creation_date": "2021-01-27T15:43:06.292055+00:00", "modification_date": "2021-01-27T15:43:06.292055+00:00"}], "categories": ["Machine Learning"], "current_public_version": "5e867d97-93eb-4420-80ee-14e8348d5ad6", "creation_date": "2019-03-06T17:24:29.909001+00:00", "modification_date": "2021-01-27T15:52:02.617863+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": "mtouron@ocs.online.net"}, "versions": [{"id": "3fb22e1f-de7f-4787-9bf8-32770151a45e", "name": "2019-03-08T08:58:28.893091", "local_images": [{"id": "8523fb41-500a-4f21-998b-890908da6119", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "5645133b-67a3-4644-9941-16f7e2b428ea", "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": "757fac76-5265-46f8-8a1f-00c0fb270010", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"]}, {"id": "0bfbc358-88f6-45b8-ba9d-d47c96a18fa7", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}, {"id": "7a892c1a-bbdc-491f-9974-4008e3708664", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", "VC1S", "START1-XS", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M", "GP1-XS", "DEV1-M", "DEV1-L", "DEV1-S", "GP1-XL", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S"]}, {"id": "726334eb-0733-4b6a-becd-769ff9bfe16d", "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"]}, {"id": "ad1f7900-e843-4745-846f-9b1ec1230557", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-S", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", "X64-60GB"]}], "creation_date": "2019-03-08T08:58:28.971149+00:00", "modification_date": "2019-03-08T08:58:28.971149+00:00"}], "categories": ["instantapp"], "current_public_version": "3fb22e1f-de7f-4787-9bf8-32770151a45e", "creation_date": "2016-03-07T21:03:59.783534+00:00", "modification_date": "2019-03-26T14:00:50.250657+00:00", "valid_until": null}]}' + headers: + Content-Length: + - "75478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:46 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: + - b637ecb0-206d-49cc-8762-512100e3e2d8 + X-Total-Count: + - "33" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/16152446-99ed-4795-9d3f-87ec2f5b891d + method: GET + response: + body: '{"image": {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "210db8e4-9645-4369-aa7e-9caa57ba79dd", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2021-03-25T11:32:29.589126+00:00", "modification_date": "2021-03-25T11:32:29.589126+00:00", "default_bootscript": null, "from_server": null, "state": "available", "zone": "fr-par-1"}}' + headers: + Content-Length: + - "609" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d045f491-a543-4356-a902-ca15e7f000ba + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"C1": {"alt_names": [], "arch": "arm", "ncpus": 4, "ram": 2147483648, "gpu": null, "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": true, "monthly_price": 4.32, "hourly_price": 0.006, "capabilities": {"boot_types": ["bootscript", "rescue"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": false, "private_network": 0}, "network": {"ipv6_support": false, "sum_internal_bandwidth": 1073741824, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}]}}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": null, "volumes_constraint": {"min_size": 80000000000, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 28.8, "hourly_price": 0.04, "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": 419430400, "sum_internet_bandwidth": 419430400, "interfaces": [{"internal_bandwidth": 419430400, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}]}}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": null, "volumes_constraint": {"min_size": 40000000000, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 14.4, "hourly_price": 0.02, "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": 314572800, "sum_internet_bandwidth": 314572800, "interfaces": [{"internal_bandwidth": 314572800, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}]}}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": null, "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 7.2, "hourly_price": 0.01, "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": 209715200, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": 209715200, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": null, "volumes_constraint": {"min_size": 120000000000, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 43.2, "hourly_price": 0.06, "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": 524288000, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": 524288000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": null, "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 475.2, "hourly_price": 0.66, "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": 5368709120, "sum_internet_bandwidth": 5368709120, "interfaces": [{"internal_bandwidth": 5368709120, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}]}}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": null, "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 244.8, "hourly_price": 0.34, "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": 1610612736, "sum_internet_bandwidth": 1610612736, "interfaces": [{"internal_bandwidth": 1610612736, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 1610612736}]}}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": null, "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 122.4, "hourly_price": 0.17, "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": 838860800, "sum_internet_bandwidth": 838860800, "interfaces": [{"internal_bandwidth": 838860800, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}]}}, "GP1-VIZ": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": null, "volumes_constraint": {"min_size": 300000000000, "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": 524288000, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": 524288000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": null, "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 1008.0, "hourly_price": 1.4, "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": 10737418240, "sum_internet_bandwidth": 10737418240, "interfaces": [{"internal_bandwidth": 10737418240, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 10737418240}]}}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": null, "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 60.48, "hourly_price": 0.084, "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": 524288000, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": 524288000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 48318382080, "gpu": 1, "volumes_constraint": {"min_size": 400000000000, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 720.0, "hourly_price": 1.0, "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": 1073741824, "sum_internet_bandwidth": 1073741824, "interfaces": [{"internal_bandwidth": 1073741824, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 1073741824}]}}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": null, "volumes_constraint": {"min_size": 10000000000, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 1.8, "hourly_price": 0.0025, "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": 104857600, "sum_internet_bandwidth": 104857600, "interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 104857600}]}}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": null, "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 23.04, "hourly_price": 0.032, "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": null, "sum_internet_bandwidth": 419430400, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 419430400}]}}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": null, "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 11.52, "hourly_price": 0.016, "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": null, "sum_internet_bandwidth": 314572800, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 314572800}]}}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": null, "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 5.76, "hourly_price": 0.008, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": null, "volumes_constraint": {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 2.88, "hourly_price": 0.004, "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": null, "sum_internet_bandwidth": 104857600, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 104857600}]}}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": null, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": null, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": null, "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": null, "sum_internet_bandwidth": 209715200, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}]}}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": null, "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 259.2, "hourly_price": 0.36, "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": null, "sum_internet_bandwidth": 1073741824, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}]}}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": null, "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 36.0, "hourly_price": 0.05, "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": null, "sum_internet_bandwidth": 262144000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 262144000}]}}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": null, "volumes_constraint": {"min_size": 300000000000, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 72.0, "hourly_price": 0.1, "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": null, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 524288000}]}}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": null, "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": 129.6, "hourly_price": 0.18, "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": null, "sum_internet_bandwidth": 1073741824, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}]}}}}' + headers: + Content-Length: + - "17942" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:46 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: + - 2927a76b-13a4-4004-9750-2ab56814a1a9 + X-Total-Count: + - "24" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"name":"cli-srv-exciting-williams","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"16152446-99ed-4795-9d3f-87ec2f5b891d","boot_type":"local","project":"951df375-e094-4d26-97c1-ba548eeb9c42"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + body: '{"server": {"id": "e6a84fde-396c-48ad-a7fa-caa0fb8f2cb0", "name": "cli-srv-exciting-williams", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-exciting-williams", "image": {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "210db8e4-9645-4369-aa7e-9caa57ba79dd", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2021-03-25T11:32:29.589126+00:00", "modification_date": "2021-03-25T11:32:29.589126+00:00", "default_bootscript": null, "from_server": null, "state": "available", "zone": "fr-par-1"}, "volumes": {"0": {"id": "ca75b1a3-acb7-4cde-9c03-759de6ed449e", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "e6a84fde-396c-48ad-a7fa-caa0fb8f2cb0", "name": "cli-srv-exciting-williams"}, "size": 20000000000, "state": "available", "creation_date": "2021-05-18T12:52:47.163318+00:00", "modification_date": "2021-05-18T12:52:47.163318+00:00", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2021-05-18T12:52:47.163318+00:00", "modification_date": "2021-05-18T12:52:47.163318+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": "54e2d5f6-d79c-44cc-b19f-613699b9cc7e", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2532" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:47 GMT + Location: + - https://par1-cmp-prd-api02.internal.scaleway.com/servers/e6a84fde-396c-48ad-a7fa-caa0fb8f2cb0 + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 784145ae-62ac-469b-83a8-9cf76c64b286 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"project":"951df375-e094-4d26-97c1-ba548eeb9c42"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + body: '{"ip": {"id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", "address": "51.15.129.58", "reverse": null, "server": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "zone": "fr-par-1", "tags": []}}' + headers: + Content-Length: + - "253" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:47 GMT + Location: + - https://par1-cmp-prd-api01.internal.scaleway.com/ips/edb87e2b-3637-4cb3-bca6-afaab47f6a30 + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bc0b1994-6566-4659-bf3b-17ea5fa809a1 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"server":"e6a84fde-396c-48ad-a7fa-caa0fb8f2cb0"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.129.58 + method: PATCH + response: + body: '{"ip": {"id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", "address": "51.15.129.58", "reverse": null, "server": {"id": "e6a84fde-396c-48ad-a7fa-caa0fb8f2cb0", "name": "cli-srv-exciting-williams"}, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "zone": "fr-par-1", "tags": []}}' + headers: + Content-Length: + - "332" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4786b53f-7b1f-4c2e-8381-8cb1c82824bc + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"server":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/edb87e2b-3637-4cb3-bca6-afaab47f6a30 + method: PATCH + response: + body: '{"ip": {"id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", "address": "51.15.129.58", "reverse": null, "server": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "zone": "fr-par-1", "tags": []}}' + headers: + Content-Length: + - "253" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5c6a94fb-85fd-48dc-babf-334baff3adff + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6a84fde-396c-48ad-a7fa-caa0fb8f2cb0 + method: GET + response: + body: '{"server": {"id": "e6a84fde-396c-48ad-a7fa-caa0fb8f2cb0", "name": "cli-srv-exciting-williams", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "hostname": "cli-srv-exciting-williams", "image": {"id": "16152446-99ed-4795-9d3f-87ec2f5b891d", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "210db8e4-9645-4369-aa7e-9caa57ba79dd", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2021-03-25T11:32:29.589126+00:00", "modification_date": "2021-03-25T11:32:29.589126+00:00", "default_bootscript": null, "from_server": null, "state": "available", "zone": "fr-par-1"}, "volumes": {"0": {"id": "ca75b1a3-acb7-4cde-9c03-759de6ed449e", "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "export_uri": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "server": {"id": "e6a84fde-396c-48ad-a7fa-caa0fb8f2cb0", "name": "cli-srv-exciting-williams"}, "size": 20000000000, "state": "available", "creation_date": "2021-05-18T12:52:47.163318+00:00", "modification_date": "2021-05-18T12:52:47.163318+00:00", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2021-05-18T12:52:47.163318+00:00", "modification_date": "2021-05-18T12:52:47.163318+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": "54e2d5f6-d79c-44cc-b19f-613699b9cc7e", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2532" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5554975f-0de1-4857-ac05-46387e04f5c2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e6a84fde-396c-48ad-a7fa-caa0fb8f2cb0 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 124399fa-8ff5-48c6-8d23-7425940637ee + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ca75b1a3-acb7-4cde-9c03-759de6ed449e + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6dd1f608-97dc-4328-9a32-7333be58c131 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.16.3; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.129.58 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 18 May 2021 12:52:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9efa557b-1980-4825-8e6c-642eb9dee38d + status: 204 No Content + code: 204 + duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-ip-detach-with-uuid.golden b/internal/namespaces/instance/v1/testdata/test-ip-detach-with-uuid.golden new file mode 100644 index 0000000000..39cbbe7c7b --- /dev/null +++ b/internal/namespaces/instance/v1/testdata/test-ip-detach-with-uuid.golden @@ -0,0 +1,20 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟩🟩🟩 STDOUT️ 🟩🟩🟩️ +IP.ID edb87e2b-3637-4cb3-bca6-afaab47f6a30 +IP.Address 51.15.129.58 +IP.Organization 951df375-e094-4d26-97c1-ba548eeb9c42 +IP.Project 951df375-e094-4d26-97c1-ba548eeb9c42 +IP.Zone fr-par-1 +🟩🟩🟩 JSON STDOUT 🟩🟩🟩 +{ + "ip": { + "id": "edb87e2b-3637-4cb3-bca6-afaab47f6a30", + "address": "51.15.129.58", + "reverse": null, + "server": null, + "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", + "tags": [], + "project": "951df375-e094-4d26-97c1-ba548eeb9c42", + "zone": "fr-par-1" + } +}