diff --git a/cmd/scw/testdata/test-all-usage-instance-server-terminate-usage.golden b/cmd/scw/testdata/test-all-usage-instance-server-terminate-usage.golden index b065c7fa2f..700eb32d28 100644 --- a/cmd/scw/testdata/test-all-usage-instance-server-terminate-usage.golden +++ b/cmd/scw/testdata/test-all-usage-instance-server-terminate-usage.golden @@ -23,6 +23,7 @@ ARGS: FLAGS: -h, --help help for terminate + -w, --wait wait until the server and its resources are deleted GLOBAL FLAGS: -c, --config string The path to the config file diff --git a/internal/core/cobra_builder.go b/internal/core/cobra_builder.go index 11c5d87903..c51d242f18 100644 --- a/internal/core/cobra_builder.go +++ b/internal/core/cobra_builder.go @@ -170,7 +170,11 @@ func (b *cobraBuilder) hydrateCobra(cobraCmd *cobra.Command, cmd *Command, group } if cmd.WaitFunc != nil { - cobraCmd.PersistentFlags().BoolP("wait", "w", false, "wait until the "+cmd.Resource+" is ready") + waitUsage := "wait until the " + cmd.Resource + " is ready" + if cmd.WaitUsage != "" { + waitUsage = cmd.WaitUsage + } + cobraCmd.PersistentFlags().BoolP("wait", "w", false, waitUsage) } } diff --git a/internal/core/command.go b/internal/core/command.go index 376390c0dc..3c7ca84950 100644 --- a/internal/core/command.go +++ b/internal/core/command.go @@ -75,6 +75,9 @@ type Command struct { // WaitFunc will be called if non-nil when the -w (--wait) flag is passed. WaitFunc WaitFunc + // WaitUsage override the usage for the -w (--wait) flag + WaitUsage string + // Aliases contains a list of aliases for a command Aliases []string // cache command path diff --git a/internal/core/result.go b/internal/core/result.go index 2c6a7e8e40..fbf5272fe7 100644 --- a/internal/core/result.go +++ b/internal/core/result.go @@ -19,6 +19,8 @@ type SuccessResult struct { Resource string Verb string Empty bool + // Used to pass resource to an AfterFunc on success + TargetResource any } // This type can be return by a command that need to output specific content on stdout directly. diff --git a/internal/namespaces/instance/v1/custom_server.go b/internal/namespaces/instance/v1/custom_server.go index d51d151820..ddcf3e6aa3 100644 --- a/internal/namespaces/instance/v1/custom_server.go +++ b/internal/namespaces/instance/v1/custom_server.go @@ -3,6 +3,7 @@ package instance import ( "bytes" "context" + "errors" "fmt" "net" "reflect" @@ -1127,6 +1128,48 @@ func serverTerminateCommand() *core.Command { Short: "Stop a running server", }, }, + WaitUsage: "wait until the server and its resources are deleted", + WaitFunc: func(ctx context.Context, argsI, respI interface{}) (interface{}, error) { + terminateServerArgs := argsI.(*customTerminateServerRequest) + server := respI.(*core.SuccessResult).TargetResource.(*instance.Server) + client := core.ExtractClient(ctx) + api := instance.NewAPI(client) + + notFoundErr := &scw.ResourceNotFoundError{} + + _, err := api.WaitForServer(&instance.WaitForServerRequest{ + Zone: server.Zone, + ServerID: server.ID, + Timeout: scw.TimeDurationPtr(serverActionTimeout), + RetryInterval: core.DefaultRetryInterval, + }) + if err != nil { + err = errors.Unwrap(err) + if !errors.As(err, ¬FoundErr) { + return nil, err + } + } + + if terminateServerArgs.WithBlock == withBlockTrue { + for _, volume := range server.Volumes { + if volume.VolumeType != instance.VolumeServerVolumeTypeBSSD { + continue + } + _, err := api.WaitForVolume(&instance.WaitForVolumeRequest{ + VolumeID: volume.ID, + Zone: volume.Zone, + }) + if err != nil { + if errors.As(err, ¬FoundErr) { + continue + } + return nil, err + } + } + } + + return respI, nil + }, Run: func(ctx context.Context, argsI interface{}) (interface{}, error) { terminateServerArgs := argsI.(*customTerminateServerRequest) @@ -1183,7 +1226,9 @@ func serverTerminateCommand() *core.Command { _, _ = interactive.Printf("successfully deleted ip %s\n", server.Server.PublicIP.Address.String()) } - return &core.SuccessResult{}, err + return &core.SuccessResult{ + TargetResource: server.Server, + }, err }, } } diff --git a/internal/namespaces/instance/v1/custom_server_test.go b/internal/namespaces/instance/v1/custom_server_test.go index ee3e18fa0c..4238e2c135 100644 --- a/internal/namespaces/instance/v1/custom_server_test.go +++ b/internal/namespaces/instance/v1/custom_server_test.go @@ -357,10 +357,19 @@ func Test_ServerTerminate(t *testing.T) { t.Run("with block", core.Test(&core.TestConfig{ Commands: GetCommands(), BeforeFunc: core.ExecStoreBeforeCmd("Server", "scw instance server create image=ubuntu-bionic additional-volumes.0=block:10G -w"), - Cmd: `scw instance server terminate {{ .Server.ID }} with-ip=true with-block=true`, + Cmd: `scw instance server terminate {{ .Server.ID }} with-ip=true with-block=true -w`, Check: core.TestCheckCombine( core.TestCheckGolden(), core.TestCheckExitCode(0), + func(t *testing.T, ctx *core.CheckFuncCtx) { + api := instance.NewAPI(ctx.Client) + server := ctx.Meta["Server"].(*instance.Server) + _, err := api.GetVolume(&instance.GetVolumeRequest{ + VolumeID: server.Volumes["0"].ID, + Zone: server.Zone, + }) + require.IsType(t, &scw.ResourceNotFoundError{}, err) + }, ), DisableParallel: true, })) diff --git a/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.cassette.yaml index a1218773db..c1cce39ea1 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.cassette.yaml @@ -6,655 +6,1511 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: - body: '{"images": [{"valid_until": null, "description": "Ubuntu is the ideal distribution - for scale-out computing, Ubuntu Server helps you make the most of your infrastructure.", - "creation_date": "2018-04-27T14:07:25.221998+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "id": "b381b2bf-804a-4b12-91f6-9f4ff273462f", "categories": ["distribution"], - "name": "Ubuntu Bionic", "modification_date": "2019-03-26T14:00:51.745705+00:00", - "versions": [{"creation_date": "2019-03-05T16:39:34.893732+00:00", "modification_date": - "2019-03-05T16:39:34.893732+00:00", "id": "e640c621-305b-45f5-975f-a3f80c1cec66", - "local_images": [{"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"], "arch": "x86_64", "id": - "f974feac-abae-4365-b988-8ec7d1cec10d", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "f63fe42a-900f-4a5e-ba99-ab0e59469b7e", "zone": - "par1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", - "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": - "b4bdbee1-e1f1-4436-8de4-bdb1b6ba4803", "zone": "par1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-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"], "arch": "x86_64", - "id": "9444d178-2285-4842-ac35-5e86eda8da91", "zone": "ams1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a5076337-734f-4b99-95ed-9a5bc73b9b09", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", - "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": "arm64", "id": "7663c62b-40e3-4e6b-a835-70723ec2050b", - "zone": "ams1"}], "name": "2019-03-05T16:39:34.377275"}], "current_public_version": - "e640c621-305b-45f5-975f-a3f80c1cec66", "label": "ubuntu_bionic", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "description": "Ubuntu is the ideal distribution for scale-out - computing, Ubuntu Server helps you make the most of your infrastructure.", "creation_date": - "2016-04-22T13:27:33.769932+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "id": "acf93867-88d9-40ee-99ea-6b2bb1ee8f0c", "categories": ["distribution"], - "name": "Ubuntu Xenial", "modification_date": "2020-01-20T09:04:40.661026+00:00", - "versions": [{"creation_date": "2020-01-17T14:31:06.041118+00:00", "modification_date": - "2020-01-17T14:31:06.041118+00:00", "id": "24cd2ef0-bbc5-4b1a-8b08-99f617eab446", - "local_images": [{"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"], "arch": "x86_64", "id": - "3d6804e0-086e-4a06-8124-7240a657668d", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", - "ARM64-16GB"], "arch": "arm64", "id": "245e5cea-a9b4-4a36-9055-27185afe8690", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "c40fbabc-efc8-4e04-91ea-5e1e22daece1", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "bd859e89-fb2d-466a-a546-383630a1ead1", "zone": "par1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-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"], "arch": "x86_64", - "id": "6c34a3f3-5e8a-455b-9bc2-f07c4c35bf89", "zone": "ams1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "a5f6bb77-3d64-4f7f-abe0-72492b1bc020", "zone": - "par1"}], "name": "2020-01-17T14:31:06.031136"}], "current_public_version": - "24cd2ef0-bbc5-4b1a-8b08-99f617eab446", "label": "ubuntu_xenial", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "description": "Debian is a free, powerful and stable - operating system.", "creation_date": "2017-06-26T15:37:13.460764+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", "id": "c94b5df7-e698-4ac9-b273-565d18f5f8d2", - "categories": ["distribution"], "name": "Debian Stretch", "modification_date": - "2020-01-20T09:04:42.765883+00:00", "versions": [{"creation_date": "2020-01-15T11:38:06.396694+00:00", - "modification_date": "2020-01-15T11:38:06.396694+00:00", "id": "8342f5d0-46aa-46e7-8a6f-f41188c97fba", - "local_images": [{"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"], "arch": "x86_64", "id": - "5f7ab0cd-d10e-49a0-91c8-315ed8a6a1a4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d954dc33-c52e-4960-93e1-b69c85d169be", "zone": "ams1"}, - {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", - "DEV1-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"], "arch": "x86_64", "id": "22a1bd8d-4498-4800-a8e5-4bc85001176c", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "37938de8-e3be-479a-895d-095158f76212", "zone": "ams1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "86740237-62fc-4538-9b70-4373942f53d3", "zone": - "par1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", - "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": - "bd6ba96e-d4c4-41f9-88e2-8dad3e6f085b", "zone": "par1"}], "name": "2020-01-15T11:38:06.390074"}], - "current_public_version": "8342f5d0-46aa-46e7-8a6f-f41188c97fba", "label": "debian_stretch", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "description": "Debian is a free, powerful and stable - operating system.", "creation_date": "2016-03-05T14:52:36.322319+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", "id": "fb619bdf-834e-4c71-b7b8-15b5546d18bd", - "categories": ["distribution"], "name": "Debian Jessie", "modification_date": - "2019-03-26T14:00:50.449502+00:00", "versions": [{"creation_date": "2018-04-10T22:31:04.322822+00:00", - "modification_date": "2018-04-10T22:31:04.322822+00:00", "id": "d3846a7b-8219-4938-ad96-cc2173e22481", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "2dfad6d2-e527-4e93-8eb1-8dc57803b310", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", - "ARM64-16GB"], "arch": "arm64", "id": "610f68d5-cbad-4923-98ae-782af8f3b527", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "dc22e553-2d2e-4689-94f8-8817db824202", "zone": "ams1"}, {"compatible_commercial_types": - ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", - "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"], "arch": "x86_64", "id": - "2e570f53-199e-47cc-95dd-f7bc392496e3", "zone": "ams1"}, {"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"], "arch": "x86_64", "id": - "abf9e3a2-7171-4764-91ef-57f30b21193d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "69cbdd54-88a1-4458-b75e-662a0848a7ce", "zone": "ams1"}], - "name": "2018-04-10T22:31:04.321157"}], "current_public_version": "d3846a7b-8219-4938-ad96-cc2173e22481", - "label": "debian_jessie", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "The - CentOS Project is a community-driven free software effort focused on delivering - a robust open source ecosystem.", "creation_date": "2019-03-06T11:27:48.406290+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", "id": "1d47b370-ac63-43b1-9f34-7328675e5e18", - "categories": ["distribution"], "name": "CentOS 7.6", "modification_date": "2019-03-26T14:00:50.839069+00:00", - "versions": [{"creation_date": "2019-03-18T09:29:00.247544+00:00", "modification_date": - "2019-03-18T09:29:00.247544+00:00", "id": "53138072-3099-4566-8b18-de7b2739696a", - "local_images": [{"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"], "arch": "x86_64", "id": "05794ee5-c6d2-4d69-86dd-f1fc9032921d", - "zone": "ams1"}, {"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"], "arch": "x86_64", "id": - "0f44b130-2bc7-4f82-993e-de9d1042c56e", "zone": "par1"}], "name": "2019-03-18T09:29:00.168590"}], - "current_public_version": "53138072-3099-4566-8b18-de7b2739696a", "label": "centos_7.6", - "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, - {"valid_until": null, "description": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2018-04-19T10:12:28.968536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "98fc244a-ed4c-4523-bd17-b9c4070b8e7e", "categories": ["distribution"], - "name": "CentOS 7.4", "modification_date": "2019-03-26T14:00:53.445597+00:00", - "versions": [{"creation_date": "2018-04-20T13:55:06.824033+00:00", "modification_date": - "2018-04-20T13:55:06.824033+00:00", "id": "31be34e5-074d-4c63-8c77-454459f77c3f", - "local_images": [{"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"], "arch": "x86_64", "id": "ec8b431e-ad39-4523-8b94-f3fa7f3cbd06", - "zone": "par1"}, {"compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", - "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", - "VC1L", "VC1M"], "arch": "x86_64", "id": "7220ac63-bac8-484b-9d44-93e3bd01f5a6", - "zone": "ams1"}], "name": "2018-04-20T13:55:06.817954"}], "current_public_version": - "31be34e5-074d-4c63-8c77-454459f77c3f", "label": "centos_7.4", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "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.", "creation_date": "2019-03-06T09:07:51.652433+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "69adec15-f1a7-469a-9ba5-868577832521", - "categories": ["distribution"], "name": "Fedora 29", "modification_date": "2019-03-26T14:00:51.848785+00:00", - "versions": [{"creation_date": "2019-03-06T09:08:01.112958+00:00", "modification_date": - "2019-03-06T09:08:01.112958+00:00", "id": "a0f02365-f1af-48cb-b82d-75853a4e05e1", - "local_images": [{"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"], "arch": "x86_64", "id": - "541f4562-5417-4b59-85d6-caaf64c1f127", "zone": "par1"}, {"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"], "arch": "x86_64", - "id": "3c0f706e-0947-47a3-88a3-595c29f7567a", "zone": "ams1"}], "name": "2019-03-06T09:08:01.016040"}], - "current_public_version": "a0f02365-f1af-48cb-b82d-75853a4e05e1", "label": "fedora_29", - "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, - {"valid_until": null, "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.", "creation_date": "2018-05-03T09:51:57.274011+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "30d0f04f-6422-4b74-9ce9-1c2267419978", - "categories": ["distribution"], "name": "Fedora 28", "modification_date": "2019-03-26T14:00:50.156015+00:00", - "versions": [{"creation_date": "2018-05-03T12:01:10.147973+00:00", "modification_date": - "2018-05-03T12:01:10.147973+00:00", "id": "49e33199-28cc-44d6-bb2e-a6147944ad5c", - "local_images": [{"compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", - "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", - "VC1L", "VC1M"], "arch": "x86_64", "id": "830aad94-24e5-4363-b2c3-e62921bd9294", - "zone": "ams1"}, {"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"], "arch": "x86_64", "id": "c9cd1782-2159-44b8-83b1-9c48ed6c8a63", - "zone": "par1"}], "name": "2018-05-03T12:01:10.135200"}], "current_public_version": - "49e33199-28cc-44d6-bb2e-a6147944ad5c", "label": "fedora_28", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "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.", "creation_date": "2018-04-19T10:14:08.648100+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "4bff4f37-3ef9-457e-9e8d-4a786cb2a5f2", - "categories": ["distribution"], "name": "Fedora 27", "modification_date": "2019-03-26T14:00:53.140907+00:00", - "versions": [{"creation_date": "2018-09-06T10:51:13.009967+00:00", "modification_date": - "2018-09-06T10:51:13.009967+00:00", "id": "45b5823f-8ddf-4ea8-b106-33d2df127cdf", - "local_images": [{"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"], "arch": "x86_64", "id": "097a100e-fd2f-4918-8a5b-d86de5a489be", - "zone": "par1"}, {"compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", - "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", - "VC1L", "VC1M"], "arch": "x86_64", "id": "73f0bcd8-a152-4665-ac09-1b105905a475", - "zone": "ams1"}], "name": "2018-09-06T10:51:13.011044"}], "current_public_version": - "45b5823f-8ddf-4ea8-b106-33d2df127cdf", "label": "fedora_27", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "description": "Arch Linux is an independently developed - Linux distribution versatile enough to suit any role.", "creation_date": "2016-03-07T20:55:32.213089+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/archlinux.png", "id": - "8f60c5dd-e659-48da-97e3-fb7de42195f5", "categories": ["distribution"], "name": - "Arch Linux", "modification_date": "2019-03-26T14:00:49.327070+00:00", "versions": - [{"creation_date": "2018-04-20T15:59:04.594929+00:00", "modification_date": - "2018-04-20T15:59:04.594929+00:00", "id": "f7696517-bc49-448b-9869-f2c84e7c2a96", - "local_images": [{"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"], "arch": "x86_64", "id": "f21defd0-9fd9-4fb2-a29a-22844a6be3cd", - "zone": "par1"}, {"compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", - "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", - "VC1L", "VC1M"], "arch": "x86_64", "id": "3c904f73-080e-4c6f-8b28-8426cfdcb3c7", - "zone": "ams1"}], "name": "2018-04-20T15:59:04.593811"}], "current_public_version": - "f7696517-bc49-448b-9869-f2c84e7c2a96", "label": "arch_linux", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "description": "Alpine Linux is security-oriented, lightweight - Linux distribution based on musl libc and busybox.", "creation_date": "2016-03-05T14:49:50.255568+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/alpinelinux.png", "id": - "c0649a2a-e6bf-4712-9303-8d967153209c", "categories": ["distribution"], "name": - "Alpine Linux", "modification_date": "2019-03-26T14:00:54.425917+00:00", "versions": - [{"creation_date": "2018-04-26T10:18:10.201002+00:00", "modification_date": - "2018-04-26T10:18:10.201002+00:00", "id": "be2293b6-9eba-4497-9659-2cfb927483b5", - "local_images": [{"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"], "arch": "x86_64", "id": "24141068-1043-4885-bf2b-8290f617e273", - "zone": "par1"}, {"compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", - "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", - "VC1L", "VC1M"], "arch": "x86_64", "id": "241b0bb3-9eed-4a7b-b0fd-71c45452ac95", - "zone": "ams1"}], "name": "2018-04-26T10:18:10.196011"}], "current_public_version": - "be2293b6-9eba-4497-9659-2cfb927483b5", "label": "alpine_linux", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "description": "Debian is a free operating system, developed - by thousands of volunteers from all over the world who collaborate via the Internet.", - "creation_date": "2019-07-16T13:55:36.377559+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", - "id": "7bdc1afb-231f-486a-9b85-1b0478bc0e4a", "categories": ["distribution"], - "name": "Debian Buster", "modification_date": "2020-01-20T09:04:41.730609+00:00", - "versions": [{"creation_date": "2020-01-15T11:52:04.860098+00:00", "modification_date": - "2020-01-15T11:52:04.860098+00:00", "id": "763b45ed-2e31-4ba0-9beb-efb195503a2d", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "61010e34-7f1e-402b-a253-028a714a6678", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-M", "DEV1-L", "START1-XS", "DEV1-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"], "arch": "x86_64", - "id": "4720c10f-59e3-4e20-915b-dcee1fc34c11", "zone": "ams1"}, {"compatible_commercial_types": - ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", - "ARM64-16GB"], "arch": "arm64", "id": "9d6e8a2c-31a9-439c-a4c5-9fba1c5b96ed", - "zone": "par1"}, {"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"], "arch": "x86_64", "id": - "cc9188b3-3938-47d7-b091-c9ecad1fe507", "zone": "par1"}], "name": "2020-01-15T11:52:04.849401"}], - "current_public_version": "763b45ed-2e31-4ba0-9beb-efb195503a2d", "label": "debian_buster", - "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances - User Resources Build System"}}, {"valid_until": null, "description": "Docker - is an open platform for developers and sysadmins to build, ship, and run distributed - applications.", "creation_date": "2016-03-05T15:11:26.847640+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/docker.png", "id": "c1b530d8-0ca0-45c4-80db-ba06608287b2", - "categories": ["instantapp"], "name": "Docker", "modification_date": "2019-03-26T14:00:49.524465+00:00", - "versions": [{"creation_date": "2019-03-07T17:07:39.090644+00:00", "modification_date": - "2019-03-07T17:07:39.090644+00:00", "id": "bf30c937-6e89-4019-ad2a-92156a62cf3e", - "local_images": [{"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"], "arch": "x86_64", "id": - "89c80d27-ddf4-4ffa-8215-b335cce3fd05", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "99e2a9c6-f0b9-42b6-8823-8b0d86ffe9bf", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "45a7e942-1fb0-48c0-bbf6-0acb9af24604", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", - "ARM64-16GB"], "arch": "arm64", "id": "c669011a-ee16-42b6-b0c3-ecd19e419539", - "zone": "par1"}, {"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"], "arch": "x86_64", "id": "dcf35840-c007-4c8b-a48b-227cfd8a347b", - "zone": "ams1"}], "name": "2019-03-07T17:07:39.004809"}], "current_public_version": - "bf30c937-6e89-4019-ad2a-92156a62cf3e", "label": "docker", "organization": {"id": - "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "description": "GitLab is a web-based Git repository manager - with wiki and issue tracking features.", "creation_date": "2016-03-07T21:06:22.770864+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/gitlab.png", "id": "233074b9-e2ba-4e78-818e-dd4930ce6bee", - "categories": ["instantapp"], "name": "GitLab", "modification_date": "2019-04-09T13:31:04.022755+00:00", - "versions": [{"creation_date": "2019-04-09T13:31:03.648676+00:00", "modification_date": - "2019-04-09T13:31:03.648676+00:00", "id": "a389c94b-8b19-4528-a4f6-0b7cac3425e9", - "local_images": [{"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"], "arch": "x86_64", "id": "06a2a6e9-922d-4353-9472-bbb1f79fda63", - "zone": "ams1"}, {"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"], "arch": "x86_64", "id": - "4527e41c-0e90-43a8-857e-d9584bf8467f", "zone": "par1"}], "name": "2019-04-09T13:31:03.352588"}], - "current_public_version": "a389c94b-8b19-4528-a4f6-0b7cac3425e9", "label": "gitlab", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "description": "A painless self-hosted Git service.", - "creation_date": "2016-03-07T21:00:44.946716+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/gogs.png", - "id": "90d512b8-e4b7-4821-98e9-78241d73a7e6", "categories": ["instantapp"], - "name": "Gogs", "modification_date": "2019-03-26T14:00:54.513196+00:00", "versions": - [{"creation_date": "2018-05-16T15:11:25.881343+00:00", "modification_date": - "2018-05-16T15:11:25.881343+00:00", "id": "1b9e22e3-6a29-4f42-acfd-281ad086ee1d", - "local_images": [{"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"], "arch": "x86_64", "id": "776705c4-be8e-4a27-b740-2e8bbba518c5", - "zone": "par1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a513a250-e6e9-4687-892e-9d10b29e3972", "zone": "par1"}, {"compatible_commercial_types": - ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", - "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"], "arch": "x86_64", "id": - "d1341ece-ffda-4386-ad3a-27d60b650401", "zone": "ams1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "69b8bc0e-7771-42af-a4ad-ca756c31a18a", "zone": "ams1"}], - "name": "2018-05-16T15:11:25.303762"}], "current_public_version": "1b9e22e3-6a29-4f42-acfd-281ad086ee1d", - "label": "gogs", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "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.", "creation_date": "2016-03-08T07:01:11.482482+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/golang.png", "id": "6c8d25c0-cb6f-4220-98aa-830b7e479ba5", - "categories": ["instantapp"], "name": "Golang", "modification_date": "2019-03-26T14:00:52.861225+00:00", - "versions": [{"creation_date": "2018-04-18T08:00:48.175340+00:00", "modification_date": - "2018-04-18T08:00:48.175340+00:00", "id": "880194c8-53ce-4b6b-a274-4f79307e2f8e", - "local_images": [{"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"], "arch": "x86_64", "id": "43213956-c7a3-44b8-9d96-d51fa7457969", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "5ffb52aa-ea55-4596-9d0f-e403701b6624", "zone": "ams1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "bef7a6af-1bab-490a-a6cb-6a07c1b9ac7b", "zone": - "par1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "f0b7d9b8-aa31-45b4-9f7e-a68aa164ce6f", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "76ca1eb7-f68f-4770-a7a1-ab7665ae3297", "zone": "par1"}, {"compatible_commercial_types": - ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", - "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"], "arch": "x86_64", "id": - "0d954c34-341c-483a-be1c-71cf197343ed", "zone": "ams1"}], "name": "2018-04-18T08:00:48.129246"}], - "current_public_version": "880194c8-53ce-4b6b-a274-4f79307e2f8e", "label": "golang", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "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.", "creation_date": "2016-03-07T21:07:46.908969+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/java.png", "id": "d72d1b73-7460-446b-91fb-b451d079aa4d", - "categories": ["instantapp"], "name": "Java", "modification_date": "2019-03-26T14:00:49.430836+00:00", - "versions": [{"creation_date": "2018-04-18T10:11:18.535736+00:00", "modification_date": - "2018-04-18T10:11:18.535736+00:00", "id": "f3f69cca-aadb-4e5e-94b0-254ce05a6639", - "local_images": [{"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "c50cb4b2-bf7b-47e2-ab5f-3a9d3d4c1aef", "zone": "ams1"}, {"compatible_commercial_types": - ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", - "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"], "arch": "x86_64", "id": - "98c93894-26a8-463b-a72b-c9d2b531b95d", "zone": "ams1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "43c43b5e-1e4f-4905-baef-71df3c565b4d", "zone": "ams1"}, - {"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"], - "arch": "x86_64", "id": "0c3f9f03-f490-444b-a05e-f342e917fed0", "zone": "par1"}, - {"compatible_commercial_types": ["C1"], "arch": "arm", "id": "5e07622b-ad8b-4f65-b55f-cca18c3c0bbf", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "c0330755-e5d0-4c2c-ad0e-70687e1dccbb", "zone": "par1"}], "name": - "2018-04-18T10:11:18.477156"}], "current_public_version": "f3f69cca-aadb-4e5e-94b0-254ce05a6639", - "label": "java", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "LEMP - stack is a version where Apache has been replaced with the more lightweight - web server Nginx.", "creation_date": "2016-03-07T21:06:53.552980+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/lemp.png", "id": "986ba672-b489-4f66-9e3b-90194ac336d4", - "categories": ["instantapp"], "name": "LEMP stack", "modification_date": "2019-04-09T13:31:12.129567+00:00", - "versions": [{"creation_date": "2019-04-09T13:31:11.315416+00:00", "modification_date": - "2019-04-09T13:31:11.315416+00:00", "id": "a2e5ed1a-6f01-4f20-aabd-4115c67df590", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "32332006-1420-4260-97c7-c1da586f68cd", "zone": "par1"}, {"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"], "arch": "x86_64", - "id": "d16622f6-32c1-4d16-a3ca-38b23d3a25fb", "zone": "ams1"}, {"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"], "arch": "x86_64", "id": "1bd37d60-4494-485f-9a82-0a211005489c", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "415d3727-0013-419a-abc6-1a688b096730", "zone": "ams1"}, {"compatible_commercial_types": - ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", - "ARM64-16GB"], "arch": "arm64", "id": "26c3727a-5b77-4b26-89c9-445ea2006f07", - "zone": "par1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "155ab61a-e069-4acb-bae3-e8217c5c0376", - "zone": "ams1"}], "name": "2019-04-09T13:31:10.613803"}], "current_public_version": - "a2e5ed1a-6f01-4f20-aabd-4115c67df590", "label": "lemp_stack", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "description": "self-hosted Slack-alternative", "creation_date": - "2016-07-11T14:52:57.803007+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/mattermost.png", - "id": "98ad7ccb-cc7f-4828-9da3-113e9c1bd2db", "categories": ["instantapp"], - "name": "Mattermost", "modification_date": "2019-03-26T14:00:51.938920+00:00", - "versions": [{"creation_date": "2018-05-03T10:27:55.610920+00:00", "modification_date": - "2018-05-03T10:27:55.610920+00:00", "id": "42371bf7-c1ca-4889-a6d4-43febda865ca", - "local_images": [{"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"], "arch": "x86_64", "id": "486e128c-fde7-42d7-9200-5d91b8dc2761", - "zone": "par1"}, {"compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", - "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", - "VC1L", "VC1M"], "arch": "x86_64", "id": "eb2ed407-177c-4195-a4ca-f3baa85e62ed", - "zone": "ams1"}], "name": "2018-05-03T10:27:55.021511"}], "current_public_version": - "42371bf7-c1ca-4889-a6d4-43febda865ca", "label": "mattermost", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "description": "Nextcloud is an open source, self-hosted - file share and communication platform.", "creation_date": "2019-04-16T12:22:56.930842+00:00", - "logo": "http://marketplace-logos.s3.nl-ams.scw.cloud/nextcloud.png", "id": - "7d4a7cb1-1fd5-4a64-920b-c79f47367254", "categories": ["instantapp"], "name": - "NextCloud", "modification_date": "2019-04-16T12:25:38.758921+00:00", "versions": - [{"creation_date": "2019-04-16T12:25:38.052537+00:00", "modification_date": - "2019-04-16T12:25:38.052537+00:00", "id": "2fe66cc6-8985-4b5f-8325-83acc0589436", - "local_images": [{"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "e9af0a24-4312-4305-9386-b3a79e02f92d", "zone": "ams1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c38073cf-ee40-4dc2-8059-ec2845f38f46", "zone": "ams1"}, - {"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"], "arch": "x86_64", "id": "b9e319f5-ac4c-400d-8ff6-a6a769755190", "zone": - "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", - "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": - "0390c3e0-186d-4b24-8d0d-0e08b74fb59a", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "900971a4-3a3e-4ef9-b92f-b33c366c9f5c", "zone": - "par1"}, {"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"], "arch": "x86_64", "id": "7b7d4dde-6fe1-4586-a5a5-ae1af2ca2605", - "zone": "par1"}], "name": "2019-04-16T12:25:37.374676"}], "current_public_version": - "2fe66cc6-8985-4b5f-8325-83acc0589436", "label": "nextcloud", "organization": - {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "Node.js is an open source, cross-platform runtime environment - for server-side and networking applications.", "creation_date": "2016-03-07T21:06:07.014951+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/nodejs.png", "id": "d11d7cc2-6ec8-4f95-a286-24fb5bac9e39", - "categories": ["instantapp"], "name": "Node.js", "modification_date": "2019-03-26T14:00:51.148549+00:00", - "versions": [{"creation_date": "2018-04-18T10:07:15.744660+00:00", "modification_date": - "2018-04-18T10:07:15.744660+00:00", "id": "af308511-bcb3-4583-b0e0-79dbb1eea63e", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "a8020f20-8a66-43f3-8253-35941db3d237", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "3cc79cc6-4649-46d9-a2b6-698f1236e1d0", "zone": "ams1"}, {"compatible_commercial_types": - ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", - "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"], "arch": "x86_64", "id": - "c9fb2bed-a9b8-4e1a-bf15-db8e763fe7a7", "zone": "ams1"}, {"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"], "arch": "x86_64", "id": - "f01db1d0-092a-47de-a32e-09bd6bda7715", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "6f2e99e8-da99-4990-b689-7294e8a604fa", "zone": - "par1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", - "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": - "03980aee-14cd-44f1-be3c-508c8b8a19e6", "zone": "par1"}], "name": "2018-04-18T10:07:15.691016"}], - "current_public_version": "af308511-bcb3-4583-b0e0-79dbb1eea63e", "label": "node.js", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "description": "Surf the web in a secure and anonymous - way with OpenVPN InstantApp.", "creation_date": "2016-03-07T21:04:57.667667+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/openvpn.png", "id": "b6f4edc8-21e6-4aa2-8f52-1030cf6d4dd8", - "categories": ["instantapp"], "name": "OpenVPN", "modification_date": "2019-03-26T14:00:52.955853+00:00", - "versions": [{"creation_date": "2019-03-25T13:06:02.622633+00:00", "modification_date": - "2019-03-25T13:06:02.622633+00:00", "id": "d812e374-1169-4c91-aa90-c72acceeecb2", - "local_images": [{"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "b15ddb1a-0611-412e-881a-3aed1b36392b", "zone": "ams1"}, {"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"], "arch": "x86_64", "id": "02906ae8-bf44-4dd0-bd05-6312dd9fa234", - "zone": "par1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "3aa3622c-45d4-4388-9618-cce6974c71a0", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a5430536-2a51-425d-8613-ef84dae91e27", "zone": "par1"}, {"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"], "arch": "x86_64", - "id": "51573d2d-301f-4d24-b0d6-f151728c82f5", "zone": "ams1"}, {"compatible_commercial_types": - ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", - "ARM64-16GB"], "arch": "arm64", "id": "cac79531-98d5-48fa-aba1-8250214b88a3", - "zone": "par1"}], "name": "2019-03-25T13:06:01.961936"}], "current_public_version": - "d812e374-1169-4c91-aa90-c72acceeecb2", "label": "openvpn", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "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.", "creation_date": "2016-03-07T21:05:14.365925+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/owncloud.png", "id": - "e22a5d54-ecb5-4fdd-a130-a473737ff7ab", "categories": ["instantapp"], "name": - "ownCloud", "modification_date": "2019-03-26T14:00:52.457272+00:00", "versions": - [{"creation_date": "2018-04-18T10:09:39.010195+00:00", "modification_date": - "2018-04-18T10:09:39.010195+00:00", "id": "c9c02a9c-e072-48af-aefd-bf6be9028022", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "a5fb716a-1c60-4740-a179-98ce315ca3d7", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "2fdbbbb4-3b63-403b-9604-27713971efd6", "zone": "par1"}, {"compatible_commercial_types": - ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", - "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"], "arch": "x86_64", "id": - "4208a611-a789-40ea-ac0e-fb3001ee39a9", "zone": "ams1"}, {"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"], "arch": "x86_64", "id": - "93de8eae-535f-47bd-88fa-84af7b5eaf76", "zone": "par1"}], "name": "2018-04-18T10:09:38.952503"}], - "current_public_version": "c9c02a9c-e072-48af-aefd-bf6be9028022", "label": "owncloud", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "description": "PrestaShop is a free, open source e-commerce - solution.", "creation_date": "2016-03-07T21:01:47.997930+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/prestashop.png", - "id": "58a551e0-1b8b-4c83-82e7-1b4602ad43d1", "categories": ["instantapp"], - "name": "PrestaShop", "modification_date": "2019-03-26T14:00:50.067950+00:00", - "versions": [{"creation_date": "2018-05-16T14:57:16.059809+00:00", "modification_date": - "2018-05-16T14:57:16.059809+00:00", "id": "6c459ab1-4f1a-4f87-b92e-c00849c93fde", - "local_images": [{"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"], "arch": "x86_64", "id": "4d07fcfa-ccda-4945-81aa-8de2206b39c0", - "zone": "par1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "73db574d-d5a0-49d5-b6ca-dd662895fac3", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", - "ARM64-16GB"], "arch": "arm64", "id": "c97dc20f-8066-4d56-aabf-2b75162c0f9f", - "zone": "par1"}, {"compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", - "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", - "VC1L", "VC1M"], "arch": "x86_64", "id": "c78c3206-eb2b-4217-ad7c-0aca98dec145", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "7f91941c-f06a-4103-91a4-793f03b11fda", "zone": "ams1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "271a9c1f-73ef-4943-bac7-799130228040", "zone": "ams1"}], - "name": "2018-05-16T14:57:15.505378"}], "current_public_version": "6c459ab1-4f1a-4f87-b92e-c00849c93fde", - "label": "prestashop", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "The - intended audience of this InstantApp is Python developers who want to bootstrap - or test a Python application easily, in seconds.", "creation_date": "2016-03-07T21:05:46.642023+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/python.png", "id": "5c0f7971-c308-442e-82ab-2eb147439bd7", - "categories": ["instantapp"], "name": "Python", "modification_date": "2019-03-26T14:00:49.970905+00:00", - "versions": [{"creation_date": "2018-04-17T16:43:36.089412+00:00", "modification_date": - "2018-04-17T16:43:36.089412+00:00", "id": "2642a982-e61d-4a58-8105-8838a69a85e3", - "local_images": [{"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"], "arch": "x86_64", "id": "70b9c9cf-c2d9-4a80-b450-a7aef8226d96", - "zone": "par1"}, {"compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", - "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", - "VC1L", "VC1M"], "arch": "x86_64", "id": "5218fa4e-8239-4831-ac2a-c96e23f387a2", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f205e2a6-621a-4534-a5d1-36f6cf1f8376", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "613a5226-3d97-4f0e-abe2-99385a050784", "zone": "ams1"}], - "name": "2018-04-17T16:43:36.031203"}], "current_public_version": "2642a982-e61d-4a58-8105-8838a69a85e3", - "label": "python", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - dynamic, open source programming language with a focus on simplicity and productivity.", - "creation_date": "2016-03-07T22:15:25.347873+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ruby.png", - "id": "42866fbe-9168-4f77-8271-09beb6049a07", "categories": ["instantapp"], - "name": "Ruby", "modification_date": "2019-03-26T14:00:54.119256+00:00", "versions": - [{"creation_date": "2018-04-18T10:21:49.119857+00:00", "modification_date": - "2018-04-18T10:21:49.119857+00:00", "id": "5b8c935b-5047-43fd-a423-045dae3e0d78", - "local_images": [{"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"], "arch": "x86_64", "id": "09c71ada-00c6-43de-ad44-c77c5b857a05", - "zone": "par1"}, {"compatible_commercial_types": ["X64-120GB", "C2M", "START1-S", - "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", "START1-L", "START1-M", "X64-60GB", - "VC1L", "VC1M"], "arch": "x86_64", "id": "24f2e8ee-80f1-4a8d-83c4-74ed8cd80ed0", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e2479a13-414b-4a0c-ba50-d01e67ee8600", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "f83a03fa-58eb-4b35-bda9-1a42b6d6d90d", "zone": "ams1"}], - "name": "2018-04-18T10:21:49.057120"}], "current_public_version": "5b8c935b-5047-43fd-a423-045dae3e0d78", - "label": "ruby", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "The - torrents InstantApp spawns a private server to upload and download your digital - files.", "creation_date": "2016-03-07T21:08:02.980958+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/seedbox.png", - "id": "4e18f1fc-0b66-4692-a38d-bfa4c94f29de", "categories": ["instantapp"], - "name": "Torrents", "modification_date": "2019-03-26T14:00:51.427329+00:00", - "versions": [{"creation_date": "2019-03-25T13:04:02.099902+00:00", "modification_date": - "2019-03-25T13:04:02.099902+00:00", "id": "53d2e4fb-20df-4ba9-8d65-29256f2be480", - "local_images": [{"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "41d0db97-4822-4642-96ec-6f3fbcfc167c", "zone": "ams1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "3fbe5f72-81da-4a0a-91ef-36ab68fc801e", "zone": "ams1"}, - {"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"], "arch": "x86_64", "id": "1aed7396-79dc-431d-af03-d3dde35d195f", "zone": - "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", - "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": - "398875b6-de43-4946-976f-ba5189954912", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "a3160162-3d72-4632-8e42-4849a1280743", "zone": - "par1"}, {"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"], "arch": "x86_64", "id": "f5d116e3-2b58-44cf-a83a-cd0682135473", - "zone": "par1"}], "name": "2019-03-25T13:04:01.408435"}], "current_public_version": - "53d2e4fb-20df-4ba9-8d65-29256f2be480", "label": "torrents", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, - {"valid_until": null, "description": "Ubuntu is the ideal distribution for scale-out - computing, Ubuntu Server helps you make the most of your infrastructure.", "creation_date": - "2020-02-17T15:50:48.980694+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "id": "3f1b9623-71ba-4fe3-b994-27fcdaa850ba", "categories": ["distribution"], - "name": "Ubuntu 20.04 Focal Fossa", "modification_date": "2020-04-28T15:23:46.153257+00:00", - "versions": [{"creation_date": "2020-04-28T15:08:03.947699+00:00", "modification_date": - "2020-04-28T15:08:03.947699+00:00", "id": "61cf23b2-447a-48d4-9cfe-02b965fa651b", - "local_images": [{"compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", - "START1-S", "START1-M", "START1-L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB", - "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "DEV1-S", "DEV1-M", "DEV1-L", - "DEV1-XL"], "arch": "x86_64", "id": "03e798ba-0c65-485b-82f1-828588f8da58", - "zone": "ams1"}, {"compatible_commercial_types": ["VC1S", "VC1M", "VC1L", "START1-XS", - "START1-S", "START1-M", "START1-L", "X64-15GB", "X64-30GB", "X64-60GB", "X64-120GB", - "GP1-XS", "GP1-S", "GP1-M", "GP1-L", "GP1-XL", "DEV1-S", "DEV1-M", "DEV1-L", - "DEV1-XL"], "arch": "x86_64", "id": "ce6c9d21-0ff3-4355-b385-c930c9f22d9d", - "zone": "par1"}], "name": "2020-04-28T15:08:03.913957+00:00"}], "current_public_version": - "61cf23b2-447a-48d4-9cfe-02b965fa651b", "label": "ubuntu_focal", "organization": + body: '{"images": [{"id": "0d3a22da-c634-45d6-a7dd-aff402f88b0c", "name": "AlmaLinux + 8", "label": "almalinux_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", + "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux + distribution, governed and driven by the community, focused on long-term stability + and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "41f32a25-c977-4dae-9a80-c997de7084c4", + "name": "2023-04-13T13:09:21.808853+00:00", "local_images": [{"id": "2d0ee515-2888-4c3a-ad0f-e59706b4129e", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "18c1965e-2f19-4be1-bf76-c00493b5eb87", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "8211d82a-2bae-4374-9db6-537fc4270bed", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "7e5efe0b-4e07-4fc0-8c90-5cf434742bb6", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "29f387f4-367b-4a70-a1a5-f3e838779d6f", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "0907829d-3310-43a7-940e-f3d0edaa980f", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "eefb08ee-e99a-4f62-85a3-b626bc704761", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "01acc25c-ba09-4830-851a-2542e5bc3dcb", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "4cfdcb7b-c2fa-4cf0-afb3-84b40a1c3d5d", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8a052964-cef0-467e-a97b-44790b927041", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:09:21.960045+00:00", + "modification_date": "2023-04-13T13:09:21.960045+00:00"}], "categories": ["distribution"], + "current_public_version": "41f32a25-c977-4dae-9a80-c997de7084c4", "creation_date": + "2021-10-05T13:36:52.246490+00:00", "modification_date": "2023-04-13T14:39:27.135528+00:00", + "valid_until": null}, {"id": "486ead23-9656-41d1-aa74-a5a780b2ae1b", "name": + "AlmaLinux 9", "label": "almalinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", + "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux + distribution, governed and driven by the community, focused on long-term stability + and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "c8fe19b6-5406-42d1-82e2-92103b7f8323", + "name": "2023-04-13T13:08:00.223293+00:00", "local_images": [{"id": "8b2a0086-4014-4057-8681-9c23bdff934b", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "ba414ba2-6fd3-472d-9426-9003d3be907d", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "70c83503-a8da-48d3-bd74-f5edc76b597d", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "d5caa4ee-11c0-4f46-bbb0-975346a2868d", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "a4e5f971-f0d3-4c1a-9a87-7942cf35d54a", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "04627843-5631-4e6b-aa75-028cbda5cf9a", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "7a2606d4-6904-4ba7-95b5-367fd4229c42", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "ce34e9fa-b154-4bbd-a602-6dc4e311900b", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "55bcf97c-5b85-4483-ab44-26380076c73d", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "6e05dc1e-6785-4f90-a5b8-adcdeb8daffa", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:08:00.408431+00:00", + "modification_date": "2023-04-13T13:08:00.408431+00:00"}], "categories": ["distribution"], + "current_public_version": "c8fe19b6-5406-42d1-82e2-92103b7f8323", "creation_date": + "2022-08-24T09:21:26.315925+00:00", "modification_date": "2023-04-13T14:38:52.308804+00:00", + "valid_until": null}, {"id": "8f60c5dd-e659-48da-97e3-fb7de42195f5", "name": + "Arch Linux", "label": "arch_linux", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/archlinux.png", + "description": "Arch Linux is an independently developed Linux distribution + versatile enough to suit any role.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "fa0ae29c-27d3-4551-bb34-1a659a96d3c2", + "name": "2022-01-24T16:08:58.141740+00:00", "local_images": [{"id": "b57ecf7e-5b57-4ad7-8a57-30584aeb4c26", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XS", "ENT1-XXS"]}, {"id": "e9543979-6125-473d-9d62-398724da0c7f", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB", "ENT1-XS", "ENT1-XXS"]}, {"id": "6849a7e3-65e2-4c53-bfb4-18c157a9cd66", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS"]}, {"id": "6219dbd0-091e-4a64-9891-dfcbb586f6dd", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", + "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS"]}, {"id": "a1326795-478b-4ba1-be4b-592ecc100cac", "zone": "pl-waw-1", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", + "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", + "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", + "ENT1-XXS", "ENT1-XS"]}, {"id": "77184ad4-f7ba-486c-bdc3-509acae544a8", "zone": + "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "ENT1-XS", "ENT1-XXS"]}, + {"id": "2f64d38e-96d3-47d6-80b3-379893b2803a", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "ENT1-XXS", "ENT1-XS"]}], + "creation_date": "2022-01-24T16:08:58.198257+00:00", "modification_date": "2022-01-24T16:08:58.198257+00:00"}], + "categories": ["distribution"], "current_public_version": "fa0ae29c-27d3-4551-bb34-1a659a96d3c2", + "creation_date": "2016-03-07T20:55:32.213089+00:00", "modification_date": "2022-01-26T12:54:47.557608+00:00", + "valid_until": null}, {"id": "dc947de3-ddc7-4056-bc35-d51a316ebbb4", "name": + "CentOS 7.9", "label": "centos_7.9", "logo": "https://scw-marketplace-logos.s3.fr-par.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": "a37e7b5d-a5e5-4506-8897-4129bab079ca", "name": + "2023-04-13T13:05:23.543151+00:00", "local_images": [{"id": "15c5dd42-434b-49cf-a5b4-8bb3b5f9dc9d", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "54dfc73a-2a0b-4ea0-8e8e-abe85357a6cc", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "d579e95a-4c2c-4f37-b57e-c2fc22b87966", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "fc1f0708-c8e3-4ceb-a36a-6f47765d4f60", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "63b021be-1ec3-4227-b34d-06c976074422", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "3e454a77-0ff5-47b0-9c7a-cc4dca7acaeb", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "98aceddf-c90f-4521-aa7b-93f942b5d2b5", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:05:23.795841+00:00", + "modification_date": "2023-04-13T13:05:23.795841+00:00"}], "categories": ["distribution"], + "current_public_version": "a37e7b5d-a5e5-4506-8897-4129bab079ca", "creation_date": + "2019-12-25T00:00:00+00:00", "modification_date": "2023-04-13T14:37:49.401742+00:00", + "valid_until": null}, {"id": "f49dc23e-82d1-48c3-b80e-6c697b1dda92", "name": + "Centos Stream 8", "label": "centos_stream_8", "logo": "https://scw-marketplace-logos.s3.fr-par.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": "f5daf351-659e-4f06-b7e7-86925f9c7011", "name": + "2023-03-28T07:17:56.324937+00:00", "local_images": [{"id": "5333864b-3235-4098-af75-f35f5239e35b", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "3e937622-375c-43ba-bff3-42a71d3077c6", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "033be0a0-e9ef-40ac-aefd-c8318c3d8ba6", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "4b75df8b-0d27-4437-b0a0-bf5dbcce1a65", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "d3328600-e772-4fd9-9135-1cade6626730", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8e922e6b-4291-421a-8bae-62b94506fe86", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "144fea20-72db-4be9-ae4a-54bde78ebcef", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "7f8365a3-68b3-43dd-b623-7bc903bc1c5b", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "147faa2b-ccef-412a-a359-9141f21f6a32", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "f4c9b209-6aef-4285-8eab-db9bf958a875", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-03-28T07:17:56.469669+00:00", + "modification_date": "2023-03-28T07:17:56.469669+00:00"}], "categories": ["distribution"], + "current_public_version": "f5daf351-659e-4f06-b7e7-86925f9c7011", "creation_date": + "2022-02-03T10:23:22.168515+00:00", "modification_date": "2023-03-28T15:00:55.387802+00:00", + "valid_until": null}, {"id": "cfb3fa01-6406-4be8-9e9d-29daee2582fa", "name": + "Centos Stream 9", "label": "centos_stream_9", "logo": "https://scw-marketplace-logos.s3.fr-par.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": "4c494b40-7244-411c-a724-65b8eedb2bc2", "name": + "2023-04-13T13:06:38.087421+00:00", "local_images": [{"id": "f62ab353-50bd-4d10-b1d9-6c092c22c2f3", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "c36b741d-3682-4550-b77f-9b5bbf5361a1", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "73ea099f-8489-4fbc-ada2-b8541d46df0c", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "3c8d2b19-b4f8-4cc1-aa04-534778519858", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "fe632ece-1b83-4036-8b7b-8f8a5aaae81b", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8cd32169-81df-42d7-8581-6cfbf6293a6c", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "5937285a-eb94-481d-9196-7446b6783ec5", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8db20e68-5ae6-4335-a668-31e321f237a9", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "9f8fba00-c8e8-4d44-ae57-2b8c91e3c997", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "74961e81-7bb0-4604-be5f-b2b622b88b14", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:06:38.259838+00:00", + "modification_date": "2023-04-13T13:06:38.259838+00:00"}], "categories": ["distribution"], + "current_public_version": "4c494b40-7244-411c-a724-65b8eedb2bc2", "creation_date": + "2022-02-03T10:35:17.004309+00:00", "modification_date": "2023-04-13T14:37:08.857124+00:00", + "valid_until": null}, {"id": "7bdc1afb-231f-486a-9b85-1b0478bc0e4a", "name": + "Debian Buster", "label": "debian_buster", "logo": "https://scw-marketplace-logos.s3.fr-par.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": "8bd9d92c-2b86-475e-9d3d-4f9b69b7c795", + "name": "2022-11-22T14:21:22.175009+00:00", "local_images": [{"id": "d03f9dd6-6329-4aed-ad61-1973efd27cac", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "51d60da2-7ae9-45e7-81d1-9fb56a6adab7", "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-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "641b3cdd-c70c-41cc-9ff2-6e803b928f34", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "1934aaa0-a0bf-4725-b5b3-1adc9954424b", "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-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "5cca9d53-612a-4a59-be02-817d977dda64", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "116721d2-6af0-4d27-9505-2bbb26b63a92", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "1761dcf5-4396-4a5d-8b28-7d7cb6dc72f5", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2022-11-22T14:21:22.304730+00:00", "modification_date": "2022-11-22T14:21:22.304730+00:00"}], + "categories": ["distribution"], "current_public_version": "8bd9d92c-2b86-475e-9d3d-4f9b69b7c795", + "creation_date": "2019-07-16T13:55:36.377559+00:00", "modification_date": "2022-11-22T15:03:29.064893+00:00", + "valid_until": null}, {"id": "213b02cb-3d8d-4967-ba8d-e5767a57574e", "name": + "Debian Bullseye", "label": "debian_bullseye", "logo": "https://scw-marketplace-logos.s3.fr-par.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"}}, {"valid_until": null, "description": "Ubuntu Bionic for Machine - Learning 10.1", "creation_date": "2019-03-06T17:24:56.871317+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "e0808ca5-1e0a-4070-8aff-d2e49e9600c1", - "categories": ["Machine Learning"], "name": "Ubuntu Bionic ML 10.1", "modification_date": - "2020-02-17T12:56:29.417410+00:00", "versions": [{"creation_date": "2020-02-17T12:50:10.150196+00:00", - "modification_date": "2020-02-17T12:50:10.150196+00:00", "id": "50a39102-80cf-4c9b-aed8-919e745df9d5", - "local_images": [{"compatible_commercial_types": ["RENDER-S"], "arch": "x86_64", - "id": "8fa4f46b-2cb2-40df-813a-727df120b9e4", "zone": "par1"}], "name": "2020-02-17T12:50:10.040529"}], - "current_public_version": "50a39102-80cf-4c9b-aed8-919e745df9d5", "label": "ubuntu_bionic_ml_10.1", - "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, - {"valid_until": null, "description": "Ubuntu Bionic for Machine Learning 9.2", - "creation_date": "2019-03-06T17:24:29.909001+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "id": "7e48e55a-7b46-4e4f-b2d2-6b7316cdca8c", "categories": ["Machine Learning"], - "name": "Ubuntu Bionic ML 9.2", "modification_date": "2020-02-17T12:55:53.623681+00:00", - "versions": [{"creation_date": "2020-02-17T12:39:31.681271+00:00", "modification_date": - "2020-02-17T12:39:31.681271+00:00", "id": "d0602033-62f8-455a-be55-0930291bb43f", - "local_images": [{"compatible_commercial_types": ["RENDER-S"], "arch": "x86_64", - "id": "1dad4207-f91a-48c3-9fac-6620e90b9434", "zone": "par1"}], "name": "2020-02-17T12:39:31.572184"}], - "current_public_version": "d0602033-62f8-455a-be55-0930291bb43f", "label": "ubuntu_bionic_ml_9.2", - "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, - {"valid_until": null, "description": "WordPress is the most popular web software - you can use to create a beautiful website or blog.", "creation_date": "2016-03-07T21:03:59.783534+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/wordpress.png", "id": - "215a50f9-0ba8-4e9c-a4e7-10caf50e3586", "categories": ["instantapp"], "name": - "WordPress", "modification_date": "2019-03-26T14:00:50.250657+00:00", "versions": - [{"creation_date": "2019-03-08T08:58:28.971149+00:00", "modification_date": - "2019-03-08T08:58:28.971149+00:00", "id": "3fb22e1f-de7f-4787-9bf8-32770151a45e", - "local_images": [{"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"], "arch": "x86_64", "id": - "8523fb41-500a-4f21-998b-890908da6119", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "5645133b-67a3-4644-9941-16f7e2b428ea", "zone": - "par1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", - "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": - "757fac76-5265-46f8-8a1f-00c0fb270010", "zone": "par1"}, {"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"], "arch": "x86_64", - "id": "7a892c1a-bbdc-491f-9974-4008e3708664", "zone": "ams1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "726334eb-0733-4b6a-becd-769ff9bfe16d", - "zone": "ams1"}], "name": "2019-03-08T08:58:28.893091"}], "current_public_version": - "3fb22e1f-de7f-4787-9bf8-32770151a45e", "label": "wordpress", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}]}' + Build System"}, "versions": [{"id": "2adb2f81-b517-4dbd-b4f1-c58f658c9813", + "name": "2023-04-13T13:03:55.707814+00:00", "local_images": [{"id": "1d218316-3884-4b62-bdeb-b5fc14fa6cdb", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "409c3356-9a2d-4212-983e-78f1ce0f23b7", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "2620d33a-6c1d-4fb4-8502-93e60644bfce", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "14901537-a464-4003-b7d9-388f0db136a5", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "1f9b4f99-332b-46b1-99c9-3f6279c2baff", + "zone": "nl-ams-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "44d9ae31-80b8-448a-9487-e196b9c2a09f", "zone": "par1", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "52b02895-018a-4813-a522-0ab5fb838c02", + "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "4100648b-5063-436d-a8ae-62d5f961a25d", "zone": "pl-waw-1", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "91481d0d-c45e-4712-9491-787a7842d211", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "35a07178-bce4-4966-ac5f-a415135fe8d0", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "19aa7502-a4f3-4e65-a980-754fa2069217", "zone": "pl-waw-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "14f02c2b-7a5d-4758-ab99-129d25b279c5", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "56ad2234-2a81-4232-86c5-314d80789ba2", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "3ee075e9-3556-4e9d-b764-b51ba5ce8c39", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:03:55.943087+00:00", + "modification_date": "2023-04-13T13:03:55.943087+00:00"}], "categories": ["distribution"], + "current_public_version": "2adb2f81-b517-4dbd-b4f1-c58f658c9813", "creation_date": + "2021-07-21T09:09:36.581723+00:00", "modification_date": "2023-04-13T14:36:19.543959+00:00", + "valid_until": null}, {"id": "c1b530d8-0ca0-45c4-80db-ba06608287b2", "name": + "Docker", "label": "docker", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/docker.png", + "description": "Docker is an open platform for developers and sysadmins to build, + ship, and run distributed applications.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "aeaa9adb-f93e-482b-bb03-e402def75243", + "name": "2023-04-13T13:03:17.035176+00:00", "local_images": [{"id": "5c789fa0-3618-46b6-a484-6915a074cd1b", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "822bd95d-39f5-4649-b9ac-1b23869fb5eb", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "50ebcf47-39b5-4087-ad18-79f63b9fdc05", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "2d7d32fd-3c5c-4b5d-ab9a-6423741e6d4e", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "78b02952-be83-4b4b-a77c-1ecec5356652", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "0a7c1075-086b-4b07-b285-84c6d55b544f", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "157c5202-f71d-40d2-9cbe-08a11d0d6ab6", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:03:17.145319+00:00", + "modification_date": "2023-04-13T13:03:17.145319+00:00"}], "categories": ["instantapp"], + "current_public_version": "aeaa9adb-f93e-482b-bb03-e402def75243", "creation_date": + "2016-03-05T15:11:26.847640+00:00", "modification_date": "2023-04-13T14:34:48.199797+00:00", + "valid_until": null}, {"id": "186859f6-0152-45dd-9eb8-21fc5e8d774e", "name": + "Fedora 36", "label": "fedora_36", "logo": "https://scw-marketplace-logos.s3.fr-par.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": "9c65e858-7550-4118-9ca1-9086bf70ae11", + "name": "2023-04-13T13:03:38.692646+00:00", "local_images": [{"id": "b613de94-efde-49b0-84fd-18698da03450", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "4e0d352b-c33b-43c9-8b10-6750b70f87ec", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "6b76e0e1-f650-434a-b901-628a24807738", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "186cf8ac-3ba8-4be3-a420-e09a7a556269", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "5ab8b0ba-e458-4a2d-b349-4c63cab96f08", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "12256f5e-7577-421d-b13a-8e6f53c7656c", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "68532aae-1625-4a7a-ac48-b12426e1fbc4", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "e55c488c-6ca3-41eb-875e-48f7babe1500", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "595da48b-750e-4745-a211-44926dabce33", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "375587da-52be-4149-8fff-1ffbc1b242b2", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-04-13T13:03:38.803387+00:00", + "modification_date": "2023-04-13T13:03:38.803387+00:00"}], "categories": ["distribution"], + "current_public_version": "9c65e858-7550-4118-9ca1-9086bf70ae11", "creation_date": + "2022-04-14T15:45:29.069701+00:00", "modification_date": "2023-04-13T14:34:14.050901+00:00", + "valid_until": null}, {"id": "2b0e5802-eb82-4fd5-ac8f-6877c46aa14b", "name": + "Fedora 37", "label": "fedora_37", "logo": "https://scw-marketplace-logos.s3.fr-par.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": "7c6510e3-7720-4af2-94f5-a13e3eb7aec4", + "name": "2023-04-13T13:02:37.974360+00:00", "local_images": [{"id": "c8e8559a-84dd-4c0b-8727-d53bbd04de4b", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "116a529d-671d-4cd9-974d-0aca049be4d7", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "03cfa199-fff9-4677-b1b7-b676ec6d2c70", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "6fb9a92b-e16d-407a-b61e-c048c0555f9d", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "9f1b1efc-0ed1-4bdd-b547-5eaa0a1bb551", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "59687a02-e1b9-4d0a-b1ac-21e83c4c3eec", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "7a610c42-0b81-4db2-b831-11202d06a0fe", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "fb8d4eec-de07-4fe4-b515-70fb650bf471", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8aed02d3-b7f5-43f5-a232-a2dab285ce2f", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "e977e7f8-875f-4a54-a141-f3fa288e0b97", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": + "2023-04-13T13:02:38.088623+00:00", "modification_date": "2023-04-13T13:02:38.088623+00:00"}], + "categories": ["distribution"], "current_public_version": "7c6510e3-7720-4af2-94f5-a13e3eb7aec4", + "creation_date": "2022-11-14T10:48:04.097063+00:00", "modification_date": "2023-04-13T14:33:41.303847+00:00", + "valid_until": null}, {"id": "dab3ed4b-5d6a-4b77-82e2-04405fd2a59e", "name": + "Fedora 38", "label": "fedora_38", "logo": "https://scw-marketplace-logos.s3.fr-par.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": "dc49f9c0-e9f3-4f0a-8ef5-74116ed5995f", + "name": "2023-04-18T08:23:43.637923+00:00", "local_images": [{"id": "4040de51-ebc3-4f24-b14c-054f8cd966bf", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "3077c13c-e1a7-404e-85de-560e427c6359", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "a5a980d0-91fa-4f0b-93a4-e1cc853b24dc", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "70da9c18-8d97-4de4-b666-275536750a9f", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "2bf83ac5-36a0-4245-9e66-22d5de47ce4f", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "0f0d629c-e18b-4ab3-b39e-7dd92a094627", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "e4b2dde2-250b-4afc-9641-91bb170b9344", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "fe8b1d78-bf61-4939-a621-8718fda1d070", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "811b12a5-2d32-46ec-8357-00cea52c33ed", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "61cf62c9-8b3d-49e3-9795-3d684909ff98", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": + "2023-04-18T08:23:43.848581+00:00", "modification_date": "2023-04-18T08:23:43.848581+00:00"}], + "categories": ["distribution"], "current_public_version": "dc49f9c0-e9f3-4f0a-8ef5-74116ed5995f", + "creation_date": "2023-04-18T07:53:13.621657+00:00", "modification_date": "2023-04-18T09:29:09.701576+00:00", + "valid_until": null}, {"id": "233074b9-e2ba-4e78-818e-dd4930ce6bee", "name": + "GitLab", "label": "gitlab", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/gitlab.png", + "description": "GitLab is a web-based Git repository manager with wiki and issue + tracking features.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "b16ed12e-299b-4dbd-8225-9b8644d5ec04", + "name": "2023-04-13T13:06:28.354726+00:00", "local_images": [{"id": "416e6290-b9dd-47f8-9a90-f07cb7fa0f1d", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "0030922b-675e-4348-853f-4e4490c14ee9", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "16622dfc-d69c-4c78-9462-1321f84ac750", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "01d0cc75-9b4c-4d88-8560-5a0308a20c97", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "e71db560-19bc-4dfe-9c84-84ae7e3a6809", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "04f3be3a-f6d1-41e7-9b63-7b1d2e3492a1", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "8d43f819-553b-4490-893b-cb82abeffb14", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2023-04-13T13:06:28.530554+00:00", "modification_date": "2023-04-13T13:06:28.530554+00:00"}], + "categories": ["instantapp"], "current_public_version": "b16ed12e-299b-4dbd-8225-9b8644d5ec04", + "creation_date": "2016-03-07T21:06:22.770864+00:00", "modification_date": "2023-04-13T14:32:36.692844+00:00", + "valid_until": null}, {"id": "7d4a7cb1-1fd5-4a64-920b-c79f47367254", "name": + "NextCloud", "label": "nextcloud", "logo": "https://scw-marketplace-logos.s3.fr-par.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": "fe957b4f-1ab1-41bf-a142-b771f039d2c9", "name": + "2023-04-13T13:00:13.060943+00:00", "local_images": [{"id": "b1d51a36-38dc-4d65-873c-4fed3dbeb21e", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "220ab3a6-0b38-4d6c-864d-fd6feb8aa99c", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "5e2f22ec-d003-485f-bec2-9a5372f5f0e4", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "cee6ae09-afdc-4286-bc93-98fdb214effe", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "4ac5d79b-597b-4d05-a3d2-b3f44431bc2a", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "30d1c545-c406-4515-83ab-f5224d4f95b6", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "f3a31d98-0e04-45da-8246-de949f5615e4", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:00:13.324444+00:00", + "modification_date": "2023-04-13T13:00:13.324444+00:00"}], "categories": ["instantapp"], + "current_public_version": "fe957b4f-1ab1-41bf-a142-b771f039d2c9", "creation_date": + "2019-04-16T12:22:56.930842+00:00", "modification_date": "2023-04-13T14:31:50.306200+00:00", + "valid_until": null}, {"id": "b6f4edc8-21e6-4aa2-8f52-1030cf6d4dd8", "name": + "OpenVPN", "label": "openvpn", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/openvpn.png", + "description": "Surf the web in a secure and anonymous way with OpenVPN InstantApp.", + "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "auth-team+ocs-organization@scaleway.com"}, + "versions": [{"id": "8c40dae0-21ad-4226-821a-aab4c6acae92", "name": "2023-04-13T12:54:17.348185+00:00", + "local_images": [{"id": "98cf2d5f-9268-4cc1-bc43-4ae9c9e66d75", "zone": "par1", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", + "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "defab02d-b971-4418-8349-2a2da5740274", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "9ea9fd9c-a795-4de7-8cd2-ca21e04f6aa7", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "dfc57325-2ab1-4bd0-acb0-0f93ab55a8e2", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "1a50ba7a-d691-4521-9837-b6c5e8be9ab4", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "d2828fd6-1d35-4140-9079-54e7025df877", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "a60d4970-e050-4677-b54b-c0d395c56100", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2023-04-13T12:54:17.619668+00:00", "modification_date": "2023-04-13T12:54:17.619668+00:00"}], + "categories": ["instantapp"], "current_public_version": "8c40dae0-21ad-4226-821a-aab4c6acae92", + "creation_date": "2016-03-07T21:04:57.667667+00:00", "modification_date": "2023-04-13T14:31:04.244508+00:00", + "valid_until": null}, {"id": "1576bf6b-f640-47f2-9117-968419d0546e", "name": + "Rocky Linux 8", "label": "rockylinux_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/rockylinux.png", + "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, + production-ready Linux.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "417d33a8-8b9f-46ff-aedd-d74147dbd69c", + "name": "2023-04-13T12:55:09.822172+00:00", "local_images": [{"id": "d7ddbcb3-221f-49b9-8c6a-34ab34e73210", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "1e6ba192-5490-4a56-a08e-27eabbc3b4d7", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "4ee70f73-0190-4e73-8027-48745eb18f18", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8a2c37b7-be86-431c-9d01-25a0682c5d71", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "c203b350-f2f2-420c-9a78-c21b3ef7b58a", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "2221b6bd-0b45-4478-877b-09eacbb7f8ed", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "af358d06-8b8a-4a66-afdc-88e0334e12a5", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "3657c2df-32fb-4afa-8bf5-be7ea7ab3e69", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "0300040c-f900-47ec-b21f-0f7410d75706", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "5809a93b-69d2-40d4-8b09-79da20ef1e1e", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-04-13T12:55:09.955903+00:00", + "modification_date": "2023-04-13T12:55:09.955903+00:00"}], "categories": ["distribution"], + "current_public_version": "417d33a8-8b9f-46ff-aedd-d74147dbd69c", "creation_date": + "2021-06-25T10:16:16.254240+00:00", "modification_date": "2023-04-13T14:28:09.866367+00:00", + "valid_until": null}, {"id": "589c35a9-20ce-4ed9-92d7-16dc061be52b", "name": + "Rocky Linux 9", "label": "rockylinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/rockylinux.png", + "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, + production-ready Linux.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "af5d0eb1-1246-46b9-9769-e0efcc95ab1b", + "name": "2023-03-27T14:28:13.225003+00:00", "local_images": [{"id": "61392b4d-22bb-40da-acdd-b08d35213297", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "d0281001-81a9-4922-ad94-bac49e2dfd46", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "146f823e-7024-4ad1-a89f-e4a7da951d57", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "65deaabd-215d-4790-a324-7d2874f0af9d", "zone": "par1", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "3bdd781e-2dae-4880-a4ee-9135057424cb", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "e0aaf648-5767-4533-92b0-7bd87eaa5dbb", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f0f50b4a-16b7-48db-996d-a9c7a0cbff88", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "876933bd-7e2d-4f0f-8bf1-837a1e31ac65", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "b18e2393-d19b-4101-ba5b-226252d2b628", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "7c2d400e-b9b3-44c2-9391-1071de7db77f", "zone": "ams1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO"]}], "creation_date": "2023-03-27T14:28:13.417555+00:00", "modification_date": + "2023-03-27T14:28:13.417555+00:00"}], "categories": ["distribution"], "current_public_version": + "af5d0eb1-1246-46b9-9769-e0efcc95ab1b", "creation_date": "2022-08-24T09:26:33.639016+00:00", + "modification_date": "2023-03-28T15:09:22.188518+00:00", "valid_until": null}, + {"id": "3f1b9623-71ba-4fe3-b994-27fcdaa850ba", "name": "Ubuntu 20.04 Focal Fossa", + "label": "ubuntu_focal", "logo": "https://scw-marketplace-logos.s3.fr-par.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": "12e69a70-af87-4728-8bb1-a940a8d48d35", "name": + "2023-04-13T12:38:58.138108+00:00", "local_images": [{"id": "2fedb0c7-1686-4529-8344-be9e198e4dd2", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "7c748e78-971e-40ab-83f6-461e20a56c68", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "1dba408b-0faa-49c6-937e-e24d45e54157", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "a0a26970-909b-48d1-a3cc-8a47c81a374e", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "b2e92f75-db2b-4bcd-85bf-3ba21b2287bf", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "57e89f65-ec39-4847-aed5-942629dff0ad", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "5ae24724-3cb2-40ac-9a10-6e244150587d", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "bcdd8214-e642-4fb8-a6a1-5ff910f82e22", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "d12ccc29-0fa0-4075-8dbe-2c2e4469f99c", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T12:38:58.306640+00:00", + "modification_date": "2023-04-13T12:38:58.306640+00:00"}], "categories": ["distribution"], + "current_public_version": "12e69a70-af87-4728-8bb1-a940a8d48d35", "creation_date": + "2020-02-17T15:50:48.980694+00:00", "modification_date": "2023-04-13T14:26:25.085299+00:00", + "valid_until": null}, {"id": "1123148c-7660-4cb2-9fd3-7b5b4896f72f", "name": + "Ubuntu 22.04 Jammy Jellyfish", "label": "ubuntu_jammy", "logo": "https://scw-marketplace-logos.s3.fr-par.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": "687cdcd5-f485-4396-b2b0-a06f7f3ff00b", "name": + "2023-04-13T12:16:06.199424+00:00", "local_images": [{"id": "ce453858-557c-4f1c-a7a9-70026e67d054", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "6cda247a-0c01-46c5-8835-9f3143905de0", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "8e0d42ac-2a7e-4ee0-a906-738a115d596e", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "235f2c1a-f81e-4aa2-af5f-b0dcf001c398", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "08d5fc73-5a8b-4eb4-8c13-cee729f05d9f", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "22f92b70-9c50-41a7-856f-71d13052b652", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "898e56c4-296d-418b-94d3-18b14a4312fd", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "83b0da88-403f-41bf-b4ce-faf16dde2d13", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "4faf43e8-465c-4273-8e96-a828399804a0", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "95819e57-4ee3-4f93-afba-96de74c329f7", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], + "creation_date": "2023-04-13T12:16:06.393838+00:00", "modification_date": "2023-04-13T12:16:06.393838+00:00"}], + "categories": ["distribution"], "current_public_version": "687cdcd5-f485-4396-b2b0-a06f7f3ff00b", + "creation_date": "2022-04-07T13:35:54.966630+00:00", "modification_date": "2023-04-13T14:25:38.413213+00:00", + "valid_until": null}, {"id": "b381b2bf-804a-4b12-91f6-9f4ff273462f", "name": + "Ubuntu Bionic", "label": "ubuntu_bionic", "logo": "https://scw-marketplace-logos.s3.fr-par.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": "599269e6-7332-4a0c-8cd8-0e9e17f6c91e", "name": + "2023-04-13T12:47:26.451219+00:00", "local_images": [{"id": "fe177b1f-c067-45f3-84a6-5aefd68f7f77", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "c128aa85-0cf6-48e1-8d32-660b9f1fc9be", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "3bcf8475-dcd1-43ad-aabd-c7af51f4805a", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "9ffd49dd-f620-4ee4-91a2-65028ebbe1b5", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "3bb18d01-6f5e-4648-b524-70cc241e9686", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "55e9cd84-1a80-48ef-a3fb-3c2a2d13e164", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2023-04-13T12:47:26.676017+00:00", "modification_date": "2023-04-13T12:47:26.676017+00:00"}], + "categories": ["distribution"], "current_public_version": "599269e6-7332-4a0c-8cd8-0e9e17f6c91e", + "creation_date": "2018-04-27T14:07:25.221998+00:00", "modification_date": "2023-04-13T14:27:25.576115+00:00", + "valid_until": null}, {"id": "4dcc771c-820f-405c-b663-4564bdc2ed56", "name": + "Ubuntu Focal GPU OS 11", "label": "ubuntu_focal_gpu_os_11", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu 20.04 Focal Fossa for Nvidia GPU and Machine Learning", + "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances + User Resources Build System"}, "versions": [{"id": "5cff6a19-a5e0-46bb-bcbc-4942c836ca46", + "name": "2022-09-15T19:11:26.000595+00:00", "local_images": [{"id": "d22f119d-400b-4792-9d2c-985be3fe0a2b", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", + "GPU-3070-S"]}, {"id": "04ac2de1-2c99-4cf8-a533-ea92e7809d32", "zone": "fr-par-2", + "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", "GPU-3070-S"]}], + "creation_date": "2022-09-15T19:11:26.061606+00:00", "modification_date": "2022-09-15T19:11:26.061606+00:00"}], + "categories": ["Machine Learning"], "current_public_version": "5cff6a19-a5e0-46bb-bcbc-4942c836ca46", + "creation_date": "2021-11-30T12:37:45.971134+00:00", "modification_date": "2022-09-19T14:10:37.648361+00:00", + "valid_until": null}, {"id": "a6c68db3-5613-4b08-acaa-2c92d8baf26c", "name": + "Ubuntu Jammy GPU OS 12", "label": "ubuntu_jammy_gpu_os_12", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu 22.04 Jammy Jellyfish for Nvidia GPU and Machine Learning + (GPU passthrough)", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "acac98cc-db99-47f7-882c-693e895d8b21", + "name": "2023-02-15T09:47:38.749339+00:00", "local_images": [{"id": "7dbfc0d2-0699-4e38-8664-45971a24af33", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", + "GPU-3070-S"]}, {"id": "819cb4c0-b0d3-475e-a18a-014f1998853c", "zone": "fr-par-2", + "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", "GPU-3070-S"]}], + "creation_date": "2023-02-15T09:47:38.843433+00:00", "modification_date": "2023-02-15T09:47:38.843433+00:00"}], + "categories": ["Machine Learning"], "current_public_version": "acac98cc-db99-47f7-882c-693e895d8b21", + "creation_date": "2023-01-20T14:30:57.496021+00:00", "modification_date": "2023-02-15T10:00:58.861108+00:00", + "valid_until": null}, {"id": "215a50f9-0ba8-4e9c-a4e7-10caf50e3586", "name": + "WordPress", "label": "wordpress", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/wordpress.png", + "description": "WordPress is the most popular web software you can use to create + a beautiful website or blog.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "08baf82b-82b8-4450-b545-c2fbfd4d6135", + "name": "2023-04-13T13:48:44.450791+00:00", "local_images": [{"id": "af715cfb-e95f-42bf-b308-eedc91ae4806", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "f9be223b-f639-4ed9-83f0-ee911be052de", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "1927920a-520f-4712-9a56-11d7cbbe43be", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "2406e707-b3cc-4721-9e7d-293ecec7dcf8", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "28357650-c47f-4bd2-8589-0cb4923c0f58", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "7c0ba4cb-6286-4220-9e28-de57042c6812", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "9490b6b4-92cb-4c9e-abfc-1cee6187ee29", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:48:44.619998+00:00", + "modification_date": "2023-04-13T13:48:44.619998+00:00"}], "categories": ["instantapp"], + "current_public_version": "08baf82b-82b8-4450-b545-c2fbfd4d6135", "creation_date": + "2016-03-07T21:03:59.783534+00:00", "modification_date": "2023-04-13T14:40:21.433436+00:00", + "valid_until": null}]}' headers: - Cache-Control: - - no-cache Content-Length: - - "53980" + - "126189" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:11 GMT + - Wed, 19 Apr 2023 14:33:02 GMT Link: - ; rel="last" Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -662,9 +1518,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61ee4579-e0f8-448b-aa66-ac708ce9f801 + - cb72c865-3286-48ca-98dc-0d723d738eb6 X-Total-Count: - - "31" + - "23" status: 200 OK code: 200 duration: "" @@ -673,36 +1529,28 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4cdb6366-9d0b-4daa-98c1-d171227fb92f method: GET response: - body: '{"image": {"id": "f974feac-abae-4365-b988-8ec7d1cec10d", "name": "Ubuntu - Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": - {"id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": - true, "arch": "x86_64", "creation_date": "2019-03-05T10:13:15.974944+00:00", - "modification_date": "2019-03-05T13:32:29.274319+00:00", "default_bootscript": - {"id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 - mainline 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", - "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - false, "zone": "fr-par-1"}, "from_server": null, "state": "available", "zone": - "fr-par-1"}}' + body: '{"image": {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", "name": "Ubuntu + 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "20a8daaf-3c20-4699-a288-a004fa66d692", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:40:21.308324+00:00", + "modification_date": "2023-04-13T12:40:21.308324+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: - Cache-Control: - - no-cache Content-Length: - - "1044" + - "618" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:11 GMT + - Wed, 19 Apr 2023 14:33:02 GMT Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -710,7 +1558,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07aea9aa-86ea-458d-a54f-6de4be0d7d26 + - e1b149ba-eb06-4157-b79d-7d5697830cc4 status: 200 OK code: 200 duration: "" @@ -719,309 +1567,361 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: - body: '{"servers": {"ARM64-128GB": {"alt_names": [], "arch": "arm64", "ncpus": - 64, "ram": 137438953472, "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": - 279.99, "hourly_price": 0.56, "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}]}}, "ARM64-16GB": {"alt_names": [], "arch": "arm64", "ncpus": 16, - "ram": 17179869184, "gpu": null, "volumes_constraint": {"min_size": 200000000000, - "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "baremetal": false, "monthly_price": 34.99, "hourly_price": - 0.07, "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}]}}, "ARM64-2GB": - {"alt_names": [], "arch": "arm64", "ncpus": 4, "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": 2.99, "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}]}}, "ARM64-32GB": {"alt_names": [], "arch": "arm64", "ncpus": 32, - "ram": 34359738368, "gpu": null, "volumes_constraint": {"min_size": 300000000000, - "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "baremetal": false, "monthly_price": 69.99, "hourly_price": - 0.14, "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}]}}, "ARM64-4GB": - {"alt_names": [], "arch": "arm64", "ncpus": 6, "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": 5.99, "hourly_price": 0.012, "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", + body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, + "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": + 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "baremetal": false, "monthly_price": 36.1496, "hourly_price": + 0.04952, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": + 4294967296, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", "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}]}}, "ARM64-64GB": {"alt_names": [], "arch": - "arm64", "ncpus": 48, "ram": 68719476736, "gpu": null, "volumes_constraint": - {"min_size": 400000000000, "max_size": 800000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": - false, "monthly_price": 139.99, "hourly_price": 0.28, "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}]}}, "ARM64-8GB": {"alt_names": [], "arch": "arm64", "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": 11.99, "hourly_price": - 0.024, "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}]}}, "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": 2.99, "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}]}}, "C2L": {"alt_names": [], "arch": "x86_64", - "ncpus": 8, "ram": 34359738368, "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": - 23.99, "hourly_price": 0.048, "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": true, "sum_internal_bandwidth": 5368709120, - "sum_internet_bandwidth": 629145600, "interfaces": [{"internal_bandwidth": 2684354560, - "internet_bandwidth": 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": - null}]}}, "C2M": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, - "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": 17.99, "hourly_price": 0.036, "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": true, "sum_internal_bandwidth": - 5368709120, "sum_internet_bandwidth": 524288000, "interfaces": [{"internal_bandwidth": - 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, - "internet_bandwidth": null}]}}, "C2S": {"alt_names": [], "arch": "x86_64", "ncpus": - 4, "ram": 8589934592, "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": - 11.99, "hourly_price": 0.024, "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": true, "sum_internal_bandwidth": 2684354560, - "sum_internet_bandwidth": 314572800, "interfaces": [{"internal_bandwidth": 2684354560, - "internet_bandwidth": 314572800}]}}, "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": - 15.99, "hourly_price": 0.032, "capabilities": {"boot_types": ["bootscript", + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": + 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 300000000}]}}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 12884901888, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": + 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 500000000}]}}, "ENT1-2XL": {"alt_names": [], "arch": "x86_64", "ncpus": 96, + "ram": 412316860416, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": + false, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": + ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + false, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": + 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 20000000000}]}}, "ENT1-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}}, "ENT1-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 3200000000}]}}, "ENT1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}}, "ENT1-XL": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}}, "ENT1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "ENT1-XXS": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "GP1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": + 576.262, "hourly_price": 0.7894, "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": + "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": + 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5000000000}]}}, "GP1-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 7.99, "hourly_price": 0.016, "capabilities": {"boot_types": + false, "monthly_price": 296.672, "hourly_price": 0.4064, "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": + "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": + 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1500000000}]}}, "GP1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 2.99, "hourly_price": 0.006, "capabilities": {"boot_types": + false, "monthly_price": 149.066, "hourly_price": 0.2042, "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": 23.99, "hourly_price": 0.048, "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": 299.0, "hourly_price": - 0.598, "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": 159.0, "hourly_price": - 0.318, "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": 79.0, "hourly_price": 0.158, - "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-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": 569.0, "hourly_price": - 1.138, "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": 39.0, "hourly_price": 0.078, - "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": 499.99, "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}]}}, "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": 15.99, "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}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "GP1-VIZ": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 72.0, "hourly_price": 0.1, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "GP1-XL": + {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": + 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 10000000000}]}}, "GP1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "PLAY2-MICRO": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "PLAY2-NANO": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "PLAY2-PICO": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}}, "PRO2-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, + "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 6000000000}]}}, "PRO2-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 3000000000}]}}, "PRO2-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 1500000000}]}}, "PRO2-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, + "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 700000000}]}}, "PRO2-XXS": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, + "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 350000000}]}}, "RENDER-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": + 1, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": + ["local", "rescue"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": + 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1000000000}]}}, "STARDUST1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}}, "START1-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, - "baremetal": false, "monthly_price": 7.99, "hourly_price": 0.016, "capabilities": + "baremetal": false, "monthly_price": 26.864, "hourly_price": 0.0368, "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": 3.99, "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": 1.99, "hourly_price": - 0.004, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + true, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 400000000}]}}, "START1-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": + 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 300000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 300000000}]}}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "baremetal": false, "monthly_price": 7.738, "hourly_price": + 0.0106, "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": + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "START1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, + "volumes_constraint": {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": - false, "monthly_price": 9.99, "hourly_price": 0.02, "capabilities": {"boot_types": + false, "monthly_price": 4.526, "hourly_price": 0.0062, "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": 5.99, "hourly_price": - 0.012, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 100000000}]}}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": + 6, "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "baremetal": false, "monthly_price": 18.0164, "hourly_price": + 0.02468, "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": + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "VC1M": {"alt_names": + ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": - false, "monthly_price": 2.99, "hourly_price": 0.006, "capabilities": {"boot_types": + false, "monthly_price": 11.3515, "hourly_price": 0.01555, "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": - 179.99, "hourly_price": 0.36, "capabilities": {"boot_types": ["bootscript", + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": + 2, "ram": 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 50000000000, + "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "baremetal": false, "monthly_price": 6.2926, "hourly_price": + 0.00862, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "X64-120GB": + {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": + 0, "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, + "baremetal": false, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1000000000}]}}, "X64-15GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "volumes_constraint": {"min_size": + 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": + 44.0336, "hourly_price": 0.06032, "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": 24.99, "hourly_price": - 0.05, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 250000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 250000000}]}}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 32212254720, "gpu": 0, "volumes_constraint": {"min_size": 300000000000, "max_size": + 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "baremetal": false, "monthly_price": 86.9138, "hourly_price": + 0.11906, "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}, + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 500000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "X64-60GB": + {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": + 0, "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, - "baremetal": false, "monthly_price": 49.99, "hourly_price": 0.1, "capabilities": + "baremetal": false, "monthly_price": 155.49, "hourly_price": 0.213, "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": 89.99, "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}]}}}}' + true, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1000000000}]}}}}' headers: - Cache-Control: - - no-cache Content-Length: - - "23709" + - "28044" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:11 GMT + - Wed, 19 Apr 2023 14:33:02 GMT Link: - ; rel="last" Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1029,41 +1929,40 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19a934f9-6efd-4126-80d7-ea97074963a4 + - e670fd53-504f-4d43-a175-56a7b278c3f3 X-Total-Count: - - "32" + - "38" status: 200 OK code: 200 duration: "" - request: - body: '{"organization":"104ff69c-3f34-48f4-b5f0-e516e4ad526b"}' + body: '{"project":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"id": "65ae2546-5893-40f2-bcc2-aabee4b4dc2f", "address": "51.158.108.20", - "reverse": null, "server": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "zone": "fr-par-1", "tags": []}}' + body: '{"ip": {"id": "89c83e54-020b-43f2-b355-34c12ba42f7e", "address": "51.158.115.98", + "reverse": null, "server": null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "zone": "fr-par-1", "tags": + []}}' headers: - Cache-Control: - - no-cache Content-Length: - - "203" + - "254" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:12 GMT + - Wed, 19 Apr 2023 14:33:03 GMT Location: - - https://cp-par1.scaleway.com/ips/65ae2546-5893-40f2-bcc2-aabee4b4dc2f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/89c83e54-020b-43f2-b355-34c12ba42f7e Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1071,76 +1970,70 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d90d1cd-34dd-437f-ac63-3600317fe22e + - 2ea5d46a-2e44-447b-aa69-75fdc49d32ce status: 201 Created code: 201 duration: "" - request: - body: '{"name":"cli-srv-unruffled-shirley","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","volumes":{"1":{"name":"cli-srv-unruffled-shirley-1","size":10000000000,"volume_type":"b_ssd","organization":"104ff69c-3f34-48f4-b5f0-e516e4ad526b"}},"public_ip":"65ae2546-5893-40f2-bcc2-aabee4b4dc2f","organization":"104ff69c-3f34-48f4-b5f0-e516e4ad526b"}' + body: '{"name":"cli-srv-xenodochial-shockley","commercial_type":"DEV1-S","image":"4cdb6366-9d0b-4daa-98c1-d171227fb92f","volumes":{"1":{"name":"cli-srv-xenodochial-shockley-1","size":10000000000,"volume_type":"b_ssd"}},"public_ip":"89c83e54-020b-43f2-b355-34c12ba42f7e","boot_type":"local","project":"ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: - body: '{"server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley", + body: '{"server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "104ff69c-3f34-48f4-b5f0-e516e4ad526b", "hostname": "cli-srv-unruffled-shirley", - "image": {"id": "f974feac-abae-4365-b988-8ec7d1cec10d", "name": "Ubuntu Bionic - Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": - {"id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": - true, "arch": "x86_64", "creation_date": "2019-03-05T10:13:15.974944+00:00", - "modification_date": "2019-03-05T13:32:29.274319+00:00", "default_bootscript": - {"id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 - mainline 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-xenodochial-shockley", "image": {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "20a8daaf-3c20-4699-a288-a004fa66d692", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:40:21.308324+00:00", + "modification_date": "2023-04-13T12:40:21.308324+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e54b8345-4d75-45e3-9572-27671d5ebf3d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}, "1": {"boot": false, "id": "d7063bd6-58ca-4cff-840c-cfc2705db7c0", + "name": "cli-srv-xenodochial-shockley-1", "volume_type": "b_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "89c83e54-020b-43f2-b355-34c12ba42f7e", "address": "51.158.115.98", + "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+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": - false, "zone": "fr-par-1"}, "from_server": null, "state": "available", "zone": - "fr-par-1"}, "volumes": {"0": {"id": "597e30c6-aff7-4ffd-9abb-2ef1f2d10c1c", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "volume_type": - "l_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 20000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.348987+00:00", "zone": "fr-par-1"}, - "1": {"id": "e6e80213-5eab-4858-b681-f6bbf5ca8011", "name": "cli-srv-unruffled-shirley-1", - "volume_type": "b_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 10000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.349018+00:00", "zone": "fr-par-1"}}, - "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": - {"id": "65ae2546-5893-40f2-bcc2-aabee4b4dc2f", "address": "51.158.108.20", "dynamic": - false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": - false, "private_ip": null, "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.365276+00:00", "bootscript": {"id": - "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 mainline - 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", - "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - false, "zone": "fr-par-1"}, "security_group": {"id": "00783f68-b80e-4f04-8520-bfc3249380be", + true, "zone": "fr-par-1"}, "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' headers: - Cache-Control: - - no-cache Content-Length: - - "3396" + - "3201" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:12 GMT + - Wed, 19 Apr 2023 14:33:04 GMT Location: - - https://cp-par1.scaleway.com/servers/423c65b0-a441-4c6d-bd77-5401a39d9952 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fafb9217-6399-45d9-9016-60c766f3f0db Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,7 +2041,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccd0874c-fb5c-468c-9d22-5c21f5d54e8c + - d3fc59d6-9fa8-4b77-938f-03ae7fc0321d status: 201 Created code: 201 duration: "" @@ -1159,14 +2052,14 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/423c65b0-a441-4c6d-bd77-5401a39d9952/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fafb9217-6399-45d9-9016-60c766f3f0db/action method: POST response: - body: '{"task": {"status": "pending", "description": "server_batch_poweron", "href_result": - "/servers/423c65b0-a441-4c6d-bd77-5401a39d9952", "terminated_at": null, "href_from": - "/servers/423c65b0-a441-4c6d-bd77-5401a39d9952/action", "started_at": "2020-05-06T09:16:14.541855+00:00", - "id": "1274c815-94e1-446a-a752-01b9ffe57bbc"}}' + body: '{"task": {"id": "aa2964e2-6ecb-4935-92ae-7a56bf482189", "description": + "server_batch_poweron", "status": "pending", "href_from": "/servers/fafb9217-6399-45d9-9016-60c766f3f0db/action", + "href_result": "/servers/fafb9217-6399-45d9-9016-60c766f3f0db", "started_at": + "2023-04-19T14:33:04.580427+00:00", "terminated_at": null}}' headers: Content-Length: - "322" @@ -1175,11 +2068,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:14 GMT + - Wed, 19 Apr 2023 14:33:04 GMT Location: - - https://cp-par1.scaleway.com/tasks/1274c815-94e1-446a-a752-01b9ffe57bbc + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/aa2964e2-6ecb-4935-92ae-7a56bf482189 Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1187,7 +2080,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 953fd059-2421-4a77-9821-7af1b68b8068 + - 3b63afb9-3a0f-4933-9029-a5e3354ebb7a status: 202 Accepted code: 202 duration: "" @@ -1196,63 +2089,58 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/423c65b0-a441-4c6d-bd77-5401a39d9952 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fafb9217-6399-45d9-9016-60c766f3f0db method: GET response: - body: '{"server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley", + body: '{"server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "104ff69c-3f34-48f4-b5f0-e516e4ad526b", "hostname": "cli-srv-unruffled-shirley", - "image": {"id": "f974feac-abae-4365-b988-8ec7d1cec10d", "name": "Ubuntu Bionic - Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": - {"id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": - true, "arch": "x86_64", "creation_date": "2019-03-05T10:13:15.974944+00:00", - "modification_date": "2019-03-05T13:32:29.274319+00:00", "default_bootscript": - {"id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 - mainline 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", - "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - false, "zone": "fr-par-1"}, "from_server": null, "state": "available", "zone": - "fr-par-1"}, "volumes": {"0": {"id": "597e30c6-aff7-4ffd-9abb-2ef1f2d10c1c", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "volume_type": - "l_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 20000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.348987+00:00", "zone": "fr-par-1"}, - "1": {"id": "e6e80213-5eab-4858-b681-f6bbf5ca8011", "name": "cli-srv-unruffled-shirley-1", - "volume_type": "b_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 10000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.349018+00:00", "zone": "fr-par-1"}}, - "tags": [], "state": "starting", "protected": false, "state_detail": "allocating - node", "public_ip": {"id": "65ae2546-5893-40f2-bcc2-aabee4b4dc2f", "address": - "51.158.108.20", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.425676+00:00", "bootscript": {"id": - "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 mainline - 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-xenodochial-shockley", "image": {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "20a8daaf-3c20-4699-a288-a004fa66d692", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:40:21.308324+00:00", + "modification_date": "2023-04-13T12:40:21.308324+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e54b8345-4d75-45e3-9572-27671d5ebf3d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}, "1": {"boot": false, "id": "d7063bd6-58ca-4cff-840c-cfc2705db7c0", + "name": "cli-srv-xenodochial-shockley-1", "volume_type": "b_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "allocating node", "public_ip": {"id": "89c83e54-020b-43f2-b355-34c12ba42f7e", + "address": "51.158.115.98", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": null, "creation_date": + "2023-04-19T14:33:03.830202+00:00", "modification_date": "2023-04-19T14:33:04.244082+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": - false, "zone": "fr-par-1"}, "security_group": {"id": "00783f68-b80e-4f04-8520-bfc3249380be", + true, "zone": "fr-par-1"}, "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' headers: - Cache-Control: - - no-cache Content-Length: - - "3418" + - "3223" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:14 GMT + - Wed, 19 Apr 2023 14:33:04 GMT Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1260,7 +2148,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29d3fd48-df25-495f-a0b8-d751c5690ac4 + - b2cfa35c-aa31-48c1-b9e3-d687e65ceb6b status: 200 OK code: 200 duration: "" @@ -1269,64 +2157,59 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/423c65b0-a441-4c6d-bd77-5401a39d9952 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fafb9217-6399-45d9-9016-60c766f3f0db method: GET response: - body: '{"server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley", + body: '{"server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "104ff69c-3f34-48f4-b5f0-e516e4ad526b", "hostname": "cli-srv-unruffled-shirley", - "image": {"id": "f974feac-abae-4365-b988-8ec7d1cec10d", "name": "Ubuntu Bionic - Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": - {"id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": - true, "arch": "x86_64", "creation_date": "2019-03-05T10:13:15.974944+00:00", - "modification_date": "2019-03-05T13:32:29.274319+00:00", "default_bootscript": - {"id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 - mainline 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-xenodochial-shockley", "image": {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "20a8daaf-3c20-4699-a288-a004fa66d692", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:40:21.308324+00:00", + "modification_date": "2023-04-13T12:40:21.308324+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e54b8345-4d75-45e3-9572-27671d5ebf3d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}, "1": {"boot": false, "id": "d7063bd6-58ca-4cff-840c-cfc2705db7c0", + "name": "cli-srv-xenodochial-shockley-1", "volume_type": "b_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "89c83e54-020b-43f2-b355-34c12ba42f7e", + "address": "51.158.115.98", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": "10.194.124.21", + "creation_date": "2023-04-19T14:33:03.830202+00:00", "modification_date": "2023-04-19T14:33:04.244082+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": - false, "zone": "fr-par-1"}, "from_server": null, "state": "available", "zone": - "fr-par-1"}, "volumes": {"0": {"id": "597e30c6-aff7-4ffd-9abb-2ef1f2d10c1c", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "volume_type": - "l_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 20000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.348987+00:00", "zone": "fr-par-1"}, - "1": {"id": "e6e80213-5eab-4858-b681-f6bbf5ca8011", "name": "cli-srv-unruffled-shirley-1", - "volume_type": "b_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 10000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.349018+00:00", "zone": "fr-par-1"}}, - "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning - node", "public_ip": {"id": "65ae2546-5893-40f2-bcc2-aabee4b4dc2f", "address": - "51.158.108.20", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": "10.68.10.81", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.425676+00:00", "bootscript": {"id": - "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 mainline - 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", - "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - false, "zone": "fr-par-1"}, "security_group": {"id": "00783f68-b80e-4f04-8520-bfc3249380be", + true, "zone": "fr-par-1"}, "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": {"zone_id": "par1", "platform_id": - "14", "cluster_id": "35", "hypervisor_id": "302", "node_id": "41"}, "maintenances": + "14", "cluster_id": "54", "hypervisor_id": "201", "node_id": "11"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' headers: - Cache-Control: - - no-cache Content-Length: - - "3526" + - "3333" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:19 GMT + - Wed, 19 Apr 2023 14:33:09 GMT Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1334,7 +2217,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8266a20-74e9-43fc-8989-20b2261e36e2 + - 2c56a6ea-8c32-425d-88dc-a2c2ee4bf903 status: 200 OK code: 200 duration: "" @@ -1343,64 +2226,59 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/423c65b0-a441-4c6d-bd77-5401a39d9952 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fafb9217-6399-45d9-9016-60c766f3f0db method: GET response: - body: '{"server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley", + body: '{"server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "104ff69c-3f34-48f4-b5f0-e516e4ad526b", "hostname": "cli-srv-unruffled-shirley", - "image": {"id": "f974feac-abae-4365-b988-8ec7d1cec10d", "name": "Ubuntu Bionic - Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": - {"id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": - true, "arch": "x86_64", "creation_date": "2019-03-05T10:13:15.974944+00:00", - "modification_date": "2019-03-05T13:32:29.274319+00:00", "default_bootscript": - {"id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 - mainline 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", - "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - false, "zone": "fr-par-1"}, "from_server": null, "state": "available", "zone": - "fr-par-1"}, "volumes": {"0": {"id": "597e30c6-aff7-4ffd-9abb-2ef1f2d10c1c", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "volume_type": - "l_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 20000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.348987+00:00", "zone": "fr-par-1"}, - "1": {"id": "e6e80213-5eab-4858-b681-f6bbf5ca8011", "name": "cli-srv-unruffled-shirley-1", - "volume_type": "b_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 10000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.349018+00:00", "zone": "fr-par-1"}}, - "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning - node", "public_ip": {"id": "65ae2546-5893-40f2-bcc2-aabee4b4dc2f", "address": - "51.158.108.20", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": "10.68.10.81", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.425676+00:00", "bootscript": {"id": - "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 mainline - 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-xenodochial-shockley", "image": {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "20a8daaf-3c20-4699-a288-a004fa66d692", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:40:21.308324+00:00", + "modification_date": "2023-04-13T12:40:21.308324+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e54b8345-4d75-45e3-9572-27671d5ebf3d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}, "1": {"boot": false, "id": "d7063bd6-58ca-4cff-840c-cfc2705db7c0", + "name": "cli-srv-xenodochial-shockley-1", "volume_type": "b_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "89c83e54-020b-43f2-b355-34c12ba42f7e", + "address": "51.158.115.98", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": "10.194.124.21", + "creation_date": "2023-04-19T14:33:03.830202+00:00", "modification_date": "2023-04-19T14:33:04.244082+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": - false, "zone": "fr-par-1"}, "security_group": {"id": "00783f68-b80e-4f04-8520-bfc3249380be", + true, "zone": "fr-par-1"}, "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": {"zone_id": "par1", "platform_id": - "14", "cluster_id": "35", "hypervisor_id": "302", "node_id": "41"}, "maintenances": + "14", "cluster_id": "54", "hypervisor_id": "201", "node_id": "11"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' headers: - Cache-Control: - - no-cache Content-Length: - - "3526" + - "3333" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:24 GMT + - Wed, 19 Apr 2023 14:33:15 GMT Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1408,7 +2286,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cc67e23-6d57-43f4-88ee-d86dbb38989b + - 24a411b1-4cdf-417c-8a3a-7ee891366769 status: 200 OK code: 200 duration: "" @@ -1417,64 +2295,59 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/423c65b0-a441-4c6d-bd77-5401a39d9952 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fafb9217-6399-45d9-9016-60c766f3f0db method: GET response: - body: '{"server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley", + body: '{"server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "104ff69c-3f34-48f4-b5f0-e516e4ad526b", "hostname": "cli-srv-unruffled-shirley", - "image": {"id": "f974feac-abae-4365-b988-8ec7d1cec10d", "name": "Ubuntu Bionic - Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": - {"id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": - true, "arch": "x86_64", "creation_date": "2019-03-05T10:13:15.974944+00:00", - "modification_date": "2019-03-05T13:32:29.274319+00:00", "default_bootscript": - {"id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 - mainline 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", - "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - false, "zone": "fr-par-1"}, "from_server": null, "state": "available", "zone": - "fr-par-1"}, "volumes": {"0": {"id": "597e30c6-aff7-4ffd-9abb-2ef1f2d10c1c", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "volume_type": - "l_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 20000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.348987+00:00", "zone": "fr-par-1"}, - "1": {"id": "e6e80213-5eab-4858-b681-f6bbf5ca8011", "name": "cli-srv-unruffled-shirley-1", - "volume_type": "b_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 10000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.349018+00:00", "zone": "fr-par-1"}}, - "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning - node", "public_ip": {"id": "65ae2546-5893-40f2-bcc2-aabee4b4dc2f", "address": - "51.158.108.20", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": "10.68.10.81", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.425676+00:00", "bootscript": {"id": - "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 mainline - 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-xenodochial-shockley", "image": {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "20a8daaf-3c20-4699-a288-a004fa66d692", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:40:21.308324+00:00", + "modification_date": "2023-04-13T12:40:21.308324+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e54b8345-4d75-45e3-9572-27671d5ebf3d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}, "1": {"boot": false, "id": "d7063bd6-58ca-4cff-840c-cfc2705db7c0", + "name": "cli-srv-xenodochial-shockley-1", "volume_type": "b_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "89c83e54-020b-43f2-b355-34c12ba42f7e", + "address": "51.158.115.98", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": "10.194.124.21", + "creation_date": "2023-04-19T14:33:03.830202+00:00", "modification_date": "2023-04-19T14:33:04.244082+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": - false, "zone": "fr-par-1"}, "security_group": {"id": "00783f68-b80e-4f04-8520-bfc3249380be", + true, "zone": "fr-par-1"}, "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": {"zone_id": "par1", "platform_id": - "14", "cluster_id": "35", "hypervisor_id": "302", "node_id": "41"}, "maintenances": + "14", "cluster_id": "54", "hypervisor_id": "201", "node_id": "11"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' headers: - Cache-Control: - - no-cache Content-Length: - - "3526" + - "3333" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:29 GMT + - Wed, 19 Apr 2023 14:33:20 GMT Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1482,7 +2355,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6aaf4c97-4d6a-4595-8b2f-a8744aeae843 + - 62801f2d-9cf0-46b6-96e8-6d78d5fa5d82 status: 200 OK code: 200 duration: "" @@ -1491,64 +2364,59 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/423c65b0-a441-4c6d-bd77-5401a39d9952 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fafb9217-6399-45d9-9016-60c766f3f0db method: GET response: - body: '{"server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley", + body: '{"server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "104ff69c-3f34-48f4-b5f0-e516e4ad526b", "hostname": "cli-srv-unruffled-shirley", - "image": {"id": "f974feac-abae-4365-b988-8ec7d1cec10d", "name": "Ubuntu Bionic - Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": - {"id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": - true, "arch": "x86_64", "creation_date": "2019-03-05T10:13:15.974944+00:00", - "modification_date": "2019-03-05T13:32:29.274319+00:00", "default_bootscript": - {"id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 - mainline 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-xenodochial-shockley", "image": {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "20a8daaf-3c20-4699-a288-a004fa66d692", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:40:21.308324+00:00", + "modification_date": "2023-04-13T12:40:21.308324+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e54b8345-4d75-45e3-9572-27671d5ebf3d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}, "1": {"boot": false, "id": "d7063bd6-58ca-4cff-840c-cfc2705db7c0", + "name": "cli-srv-xenodochial-shockley-1", "volume_type": "b_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "89c83e54-020b-43f2-b355-34c12ba42f7e", + "address": "51.158.115.98", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": "10.194.124.21", + "creation_date": "2023-04-19T14:33:03.830202+00:00", "modification_date": "2023-04-19T14:33:04.244082+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": - false, "zone": "fr-par-1"}, "from_server": null, "state": "available", "zone": - "fr-par-1"}, "volumes": {"0": {"id": "597e30c6-aff7-4ffd-9abb-2ef1f2d10c1c", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "volume_type": - "l_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 20000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.348987+00:00", "zone": "fr-par-1"}, - "1": {"id": "e6e80213-5eab-4858-b681-f6bbf5ca8011", "name": "cli-srv-unruffled-shirley-1", - "volume_type": "b_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 10000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.349018+00:00", "zone": "fr-par-1"}}, - "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning - node", "public_ip": {"id": "65ae2546-5893-40f2-bcc2-aabee4b4dc2f", "address": - "51.158.108.20", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": "10.68.10.81", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.425676+00:00", "bootscript": {"id": - "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 mainline - 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", - "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - false, "zone": "fr-par-1"}, "security_group": {"id": "00783f68-b80e-4f04-8520-bfc3249380be", + true, "zone": "fr-par-1"}, "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": {"zone_id": "par1", "platform_id": - "14", "cluster_id": "35", "hypervisor_id": "302", "node_id": "41"}, "maintenances": + "14", "cluster_id": "54", "hypervisor_id": "201", "node_id": "11"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' headers: - Cache-Control: - - no-cache Content-Length: - - "3526" + - "3333" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:34 GMT + - Wed, 19 Apr 2023 14:33:25 GMT Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1556,7 +2424,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb3c1d16-200c-4f0f-a627-ce1d60ff65ca + - 8fd53d5a-0ef1-4214-8ab6-52e763a3ab16 status: 200 OK code: 200 duration: "" @@ -1565,64 +2433,59 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/423c65b0-a441-4c6d-bd77-5401a39d9952 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fafb9217-6399-45d9-9016-60c766f3f0db method: GET response: - body: '{"server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley", + body: '{"server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "104ff69c-3f34-48f4-b5f0-e516e4ad526b", "hostname": "cli-srv-unruffled-shirley", - "image": {"id": "f974feac-abae-4365-b988-8ec7d1cec10d", "name": "Ubuntu Bionic - Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": - {"id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": - true, "arch": "x86_64", "creation_date": "2019-03-05T10:13:15.974944+00:00", - "modification_date": "2019-03-05T13:32:29.274319+00:00", "default_bootscript": - {"id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 - mainline 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", - "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - false, "zone": "fr-par-1"}, "from_server": null, "state": "available", "zone": - "fr-par-1"}, "volumes": {"0": {"id": "597e30c6-aff7-4ffd-9abb-2ef1f2d10c1c", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "volume_type": - "l_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 20000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.348987+00:00", "zone": "fr-par-1"}, - "1": {"id": "e6e80213-5eab-4858-b681-f6bbf5ca8011", "name": "cli-srv-unruffled-shirley-1", - "volume_type": "b_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 10000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.349018+00:00", "zone": "fr-par-1"}}, - "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning - node", "public_ip": {"id": "65ae2546-5893-40f2-bcc2-aabee4b4dc2f", "address": - "51.158.108.20", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": "10.68.10.81", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.425676+00:00", "bootscript": {"id": - "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 mainline - 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-xenodochial-shockley", "image": {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "20a8daaf-3c20-4699-a288-a004fa66d692", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:40:21.308324+00:00", + "modification_date": "2023-04-13T12:40:21.308324+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e54b8345-4d75-45e3-9572-27671d5ebf3d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}, "1": {"boot": false, "id": "d7063bd6-58ca-4cff-840c-cfc2705db7c0", + "name": "cli-srv-xenodochial-shockley-1", "volume_type": "b_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": + "provisioning node", "public_ip": {"id": "89c83e54-020b-43f2-b355-34c12ba42f7e", + "address": "51.158.115.98", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": "10.194.124.21", + "creation_date": "2023-04-19T14:33:03.830202+00:00", "modification_date": "2023-04-19T14:33:04.244082+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": - false, "zone": "fr-par-1"}, "security_group": {"id": "00783f68-b80e-4f04-8520-bfc3249380be", + true, "zone": "fr-par-1"}, "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": {"zone_id": "par1", "platform_id": - "14", "cluster_id": "35", "hypervisor_id": "302", "node_id": "41"}, "maintenances": + "14", "cluster_id": "54", "hypervisor_id": "201", "node_id": "11"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' headers: - Cache-Control: - - no-cache Content-Length: - - "3526" + - "3333" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:39 GMT + - Wed, 19 Apr 2023 14:33:30 GMT Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1630,7 +2493,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77ea1696-a43a-4064-832a-1c7466f476fa + - 5b63a7ae-620f-402e-8bc5-6532fd55603c status: 200 OK code: 200 duration: "" @@ -1639,64 +2502,59 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/423c65b0-a441-4c6d-bd77-5401a39d9952 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fafb9217-6399-45d9-9016-60c766f3f0db method: GET response: - body: '{"server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley", + body: '{"server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "104ff69c-3f34-48f4-b5f0-e516e4ad526b", "hostname": "cli-srv-unruffled-shirley", - "image": {"id": "f974feac-abae-4365-b988-8ec7d1cec10d", "name": "Ubuntu Bionic - Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": - {"id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": - true, "arch": "x86_64", "creation_date": "2019-03-05T10:13:15.974944+00:00", - "modification_date": "2019-03-05T13:32:29.274319+00:00", "default_bootscript": - {"id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 - mainline 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-xenodochial-shockley", "image": {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "20a8daaf-3c20-4699-a288-a004fa66d692", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:40:21.308324+00:00", + "modification_date": "2023-04-13T12:40:21.308324+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e54b8345-4d75-45e3-9572-27671d5ebf3d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}, "1": {"boot": false, "id": "d7063bd6-58ca-4cff-840c-cfc2705db7c0", + "name": "cli-srv-xenodochial-shockley-1", "volume_type": "b_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "89c83e54-020b-43f2-b355-34c12ba42f7e", + "address": "51.158.115.98", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": "10.194.124.21", + "creation_date": "2023-04-19T14:33:03.830202+00:00", "modification_date": "2023-04-19T14:33:31.612989+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": - false, "zone": "fr-par-1"}, "from_server": null, "state": "available", "zone": - "fr-par-1"}, "volumes": {"0": {"id": "597e30c6-aff7-4ffd-9abb-2ef1f2d10c1c", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "volume_type": - "l_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 20000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.348987+00:00", "zone": "fr-par-1"}, - "1": {"id": "e6e80213-5eab-4858-b681-f6bbf5ca8011", "name": "cli-srv-unruffled-shirley-1", - "volume_type": "b_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 10000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.349018+00:00", "zone": "fr-par-1"}}, - "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning - node", "public_ip": {"id": "65ae2546-5893-40f2-bcc2-aabee4b4dc2f", "address": - "51.158.108.20", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": "10.68.10.81", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.425676+00:00", "bootscript": {"id": - "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 mainline - 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", - "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - false, "zone": "fr-par-1"}, "security_group": {"id": "00783f68-b80e-4f04-8520-bfc3249380be", + true, "zone": "fr-par-1"}, "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": {"zone_id": "par1", "platform_id": - "14", "cluster_id": "35", "hypervisor_id": "302", "node_id": "41"}, "maintenances": - [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, - "private_nics": [], "zone": "fr-par-1"}}' + "14", "cluster_id": "54", "hypervisor_id": "201", "node_id": "11"}, "maintenances": + [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' headers: - Cache-Control: - - no-cache Content-Length: - - "3526" + - "3364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:44 GMT + - Wed, 19 Apr 2023 14:33:35 GMT Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1704,7 +2562,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05cec6d0-5788-486d-8dbb-853eb17a585a + - c04c6cc6-d39a-498d-800a-3abdd85074a9 status: 200 OK code: 200 duration: "" @@ -1713,64 +2571,59 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/423c65b0-a441-4c6d-bd77-5401a39d9952 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fafb9217-6399-45d9-9016-60c766f3f0db method: GET response: - body: '{"server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley", + body: '{"server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "104ff69c-3f34-48f4-b5f0-e516e4ad526b", "hostname": "cli-srv-unruffled-shirley", - "image": {"id": "f974feac-abae-4365-b988-8ec7d1cec10d", "name": "Ubuntu Bionic - Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": - {"id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": - true, "arch": "x86_64", "creation_date": "2019-03-05T10:13:15.974944+00:00", - "modification_date": "2019-03-05T13:32:29.274319+00:00", "default_bootscript": - {"id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 - mainline 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-xenodochial-shockley", "image": {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "20a8daaf-3c20-4699-a288-a004fa66d692", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:40:21.308324+00:00", + "modification_date": "2023-04-13T12:40:21.308324+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e54b8345-4d75-45e3-9572-27671d5ebf3d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}, "1": {"boot": false, "id": "d7063bd6-58ca-4cff-840c-cfc2705db7c0", + "name": "cli-srv-xenodochial-shockley-1", "volume_type": "b_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": + "booting kernel", "public_ip": {"id": "89c83e54-020b-43f2-b355-34c12ba42f7e", + "address": "51.158.115.98", "dynamic": false}, "ipv6": null, "extra_networks": + [], "dynamic_ip_required": true, "enable_ipv6": false, "private_ip": "10.194.124.21", + "creation_date": "2023-04-19T14:33:03.830202+00:00", "modification_date": "2023-04-19T14:33:31.612989+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": - false, "zone": "fr-par-1"}, "from_server": null, "state": "available", "zone": - "fr-par-1"}, "volumes": {"0": {"id": "597e30c6-aff7-4ffd-9abb-2ef1f2d10c1c", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "volume_type": - "l_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 20000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.348987+00:00", "zone": "fr-par-1"}, - "1": {"id": "e6e80213-5eab-4858-b681-f6bbf5ca8011", "name": "cli-srv-unruffled-shirley-1", - "volume_type": "b_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 10000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.349018+00:00", "zone": "fr-par-1"}}, - "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning - node", "public_ip": {"id": "65ae2546-5893-40f2-bcc2-aabee4b4dc2f", "address": - "51.158.108.20", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": "10.68.10.81", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.425676+00:00", "bootscript": {"id": - "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 mainline - 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", - "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - false, "zone": "fr-par-1"}, "security_group": {"id": "00783f68-b80e-4f04-8520-bfc3249380be", + true, "zone": "fr-par-1"}, "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": {"zone_id": "par1", "platform_id": - "14", "cluster_id": "35", "hypervisor_id": "302", "node_id": "41"}, "maintenances": - [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, - "private_nics": [], "zone": "fr-par-1"}}' + "14", "cluster_id": "54", "hypervisor_id": "201", "node_id": "11"}, "maintenances": + [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' headers: - Cache-Control: - - no-cache Content-Length: - - "3526" + - "3364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:50 GMT + - Wed, 19 Apr 2023 14:33:36 GMT Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1778,73 +2631,38 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7b26a6d-eb3b-41ca-b8d7-0462d82b6646 + - 5a34e32c-fe0e-4165-91fd-25399c0f85a0 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/423c65b0-a441-4c6d-bd77-5401a39d9952 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fafb9217-6399-45d9-9016-60c766f3f0db/action + method: POST response: - body: '{"server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley", - "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "104ff69c-3f34-48f4-b5f0-e516e4ad526b", "hostname": "cli-srv-unruffled-shirley", - "image": {"id": "f974feac-abae-4365-b988-8ec7d1cec10d", "name": "Ubuntu Bionic - Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": - {"id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": - true, "arch": "x86_64", "creation_date": "2019-03-05T10:13:15.974944+00:00", - "modification_date": "2019-03-05T13:32:29.274319+00:00", "default_bootscript": - {"id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 - mainline 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", - "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - false, "zone": "fr-par-1"}, "from_server": null, "state": "available", "zone": - "fr-par-1"}, "volumes": {"0": {"id": "597e30c6-aff7-4ffd-9abb-2ef1f2d10c1c", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "volume_type": - "l_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 20000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.348987+00:00", "zone": "fr-par-1"}, - "1": {"id": "e6e80213-5eab-4858-b681-f6bbf5ca8011", "name": "cli-srv-unruffled-shirley-1", - "volume_type": "b_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 10000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.349018+00:00", "zone": "fr-par-1"}}, - "tags": [], "state": "running", "protected": false, "state_detail": "booting - kernel", "public_ip": {"id": "65ae2546-5893-40f2-bcc2-aabee4b4dc2f", "address": - "51.158.108.20", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": "10.68.10.81", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:51.149105+00:00", "bootscript": {"id": - "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 mainline - 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", - "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - false, "zone": "fr-par-1"}, "security_group": {"id": "00783f68-b80e-4f04-8520-bfc3249380be", - "name": "Default security group"}, "location": {"zone_id": "par1", "platform_id": - "14", "cluster_id": "35", "hypervisor_id": "302", "node_id": "41"}, "maintenances": - [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", - "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + body: '{"task": {"id": "5cb9303d-9211-4e77-8a42-7a9762aa7c85", "description": + "server_terminate", "status": "pending", "href_from": "/servers/fafb9217-6399-45d9-9016-60c766f3f0db/action", + "href_result": "/servers/fafb9217-6399-45d9-9016-60c766f3f0db", "started_at": + "2023-04-19T14:33:36.658645+00:00", "terminated_at": null}}' headers: - Cache-Control: - - no-cache Content-Length: - - "3557" + - "318" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:55 GMT + - Wed, 19 Apr 2023 14:33:36 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5cb9303d-9211-4e77-8a42-7a9762aa7c85 Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1852,73 +2670,96 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 183f3a77-e1ea-47b7-a9bc-f657559e06ae - status: 200 OK - code: 200 + - 81b30213-888c-4627-8af3-a3aae05a81a0 + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/89c83e54-020b-43f2-b355-34c12ba42f7e + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Date: + - Wed, 19 Apr 2023 14:33:37 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8ef0c1f7-261a-4ae5-8404-e2babf20a66c + status: 204 No Content + code: 204 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/423c65b0-a441-4c6d-bd77-5401a39d9952 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fafb9217-6399-45d9-9016-60c766f3f0db method: GET response: - body: '{"server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley", + body: '{"server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "104ff69c-3f34-48f4-b5f0-e516e4ad526b", "hostname": "cli-srv-unruffled-shirley", - "image": {"id": "f974feac-abae-4365-b988-8ec7d1cec10d", "name": "Ubuntu Bionic - Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": - {"id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": - true, "arch": "x86_64", "creation_date": "2019-03-05T10:13:15.974944+00:00", - "modification_date": "2019-03-05T13:32:29.274319+00:00", "default_bootscript": - {"id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 - mainline 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "hostname": "cli-srv-xenodochial-shockley", "image": {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", + "name": "Ubuntu 18.04 Bionic Beaver", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "20a8daaf-3c20-4699-a288-a004fa66d692", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:40:21.308324+00:00", + "modification_date": "2023-04-13T12:40:21.308324+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "e54b8345-4d75-45e3-9572-27671d5ebf3d", + "name": "Ubuntu 18.04 Bionic Beaver", "volume_type": "l_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}, "1": {"boot": false, "id": "d7063bd6-58ca-4cff-840c-cfc2705db7c0", + "name": "cli-srv-xenodochial-shockley-1", "volume_type": "b_ssd", "export_uri": + null, "organization": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", "project": "ee7bd9e1-9cbd-4724-b2f4-19e50f3cf38b", + "server": {"id": "fafb9217-6399-45d9-9016-60c766f3f0db", "name": "cli-srv-xenodochial-shockley"}, + "size": 10000000000, "state": "available", "creation_date": "2023-04-19T14:33:03.830202+00:00", + "modification_date": "2023-04-19T14:33:03.830202+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": + "terminating", "public_ip": {"id": "647be9ab-3627-4f02-b205-2ae3fe896c5d", "address": + "51.15.214.148", "dynamic": true}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": "10.194.124.21", "creation_date": + "2023-04-19T14:33:03.830202+00:00", "modification_date": "2023-04-19T14:33:36.202941+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": - false, "zone": "fr-par-1"}, "from_server": null, "state": "available", "zone": - "fr-par-1"}, "volumes": {"0": {"id": "597e30c6-aff7-4ffd-9abb-2ef1f2d10c1c", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "volume_type": - "l_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 20000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.348987+00:00", "zone": "fr-par-1"}, - "1": {"id": "e6e80213-5eab-4858-b681-f6bbf5ca8011", "name": "cli-srv-unruffled-shirley-1", - "volume_type": "b_ssd", "export_uri": null, "organization": "104ff69c-3f34-48f4-b5f0-e516e4ad526b", - "server": {"id": "423c65b0-a441-4c6d-bd77-5401a39d9952", "name": "cli-srv-unruffled-shirley"}, - "size": 10000000000, "state": "available", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:13.349018+00:00", "zone": "fr-par-1"}}, - "tags": [], "state": "running", "protected": false, "state_detail": "booting - kernel", "public_ip": {"id": "65ae2546-5893-40f2-bcc2-aabee4b4dc2f", "address": - "51.158.108.20", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": "10.68.10.81", "creation_date": "2020-05-06T09:16:12.945664+00:00", - "modification_date": "2020-05-06T09:16:51.149105+00:00", "bootscript": {"id": - "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false, "title": "x86_64 mainline - 4.9.93 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", - "kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "dtb": "", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", - "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - false, "zone": "fr-par-1"}, "security_group": {"id": "00783f68-b80e-4f04-8520-bfc3249380be", + true, "zone": "fr-par-1"}, "security_group": {"id": "0fe819c3-274d-472a-b3f5-ddb258d2d8bb", "name": "Default security group"}, "location": {"zone_id": "par1", "platform_id": - "14", "cluster_id": "35", "hypervisor_id": "302", "node_id": "41"}, "maintenances": - [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", - "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' + "14", "cluster_id": "54", "hypervisor_id": "201", "node_id": "11"}, "maintenances": + [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, + "private_nics": [], "zone": "fr-par-1"}}' headers: - Cache-Control: - - no-cache Content-Length: - - "3557" + - "3326" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:55 GMT + - Wed, 19 Apr 2023 14:33:37 GMT Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1926,38 +2767,65 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 263c316a-14fe-41e3-9eda-bcd382966c50 + - 528e7fd9-b4f5-4b69-b4e9-31113db182c3 status: 200 OK code: 200 duration: "" - request: - body: '{"action":"terminate"}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fafb9217-6399-45d9-9016-60c766f3f0db + method: GET + response: + body: '{"type": "unknown_resource", "message": "\"fafb9217-6399-45d9-9016-60c766f3f0db\" + not found"}' + headers: + Content-Length: + - "93" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 19 Apr 2023 14:33:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 34ad4735-7774-4385-ba48-49af2fe9818d + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/423c65b0-a441-4c6d-bd77-5401a39d9952/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7063bd6-58ca-4cff-840c-cfc2705db7c0 + method: GET response: - body: '{"task": {"status": "pending", "description": "server_terminate", "href_result": - "/servers/423c65b0-a441-4c6d-bd77-5401a39d9952", "terminated_at": null, "href_from": - "/servers/423c65b0-a441-4c6d-bd77-5401a39d9952/action", "started_at": "2020-05-06T09:16:56.021205+00:00", - "id": "4a2876a7-1ab4-43d5-b280-ba9da7f33a46"}}' + body: '{"type": "unknown_resource", "message": "Volume ''d7063bd6-58ca-4cff-840c-cfc2705db7c0'' + not found."}' headers: Content-Length: - - "318" + - "99" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:55 GMT - Location: - - https://cp-par1.scaleway.com/tasks/4a2876a7-1ab4-43d5-b280-ba9da7f33a46 + - Wed, 19 Apr 2023 14:33:42 GMT Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1965,31 +2833,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 812fef02-a647-422c-a8c1-daa319608c5b - status: 202 Accepted - code: 202 + - 6a994231-ba18-43df-ae66-2d338d36a633 + status: 404 Not Found + code: 404 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65ae2546-5893-40f2-bcc2-aabee4b4dc2f - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.1; linux; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e54b8345-4d75-45e3-9572-27671d5ebf3d + method: GET response: - body: "" + body: '{"type": "unknown_resource", "message": "Volume ''e54b8345-4d75-45e3-9572-27671d5ebf3d'' + not found."}' headers: - Cache-Control: - - no-cache + Content-Length: + - "99" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 May 2020 09:16:55 GMT + - Wed, 19 Apr 2023 14:33:42 GMT Server: - - scaleway_api + - Scaleway API-Gateway Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1997,7 +2866,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90f651b9-4323-4bc8-8395-d11a2dafc943 - status: 204 No Content - code: 204 + - f8c821ad-dbbe-4422-ba1a-7e2ad5143a23 + status: 404 Not Found + code: 404 duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.golden b/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.golden index 2be6f82ee0..180983b8c8 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.golden +++ b/internal/namespaces/instance/v1/testdata/test-server-terminate-with-block.golden @@ -2,7 +2,7 @@ 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ βœ… Success. πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -successfully deleted ip 51.158.108.20 +successfully deleted ip 51.158.115.98 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { "message": "Success",