From da986b67f7b47b14b33e2e7f7ec67f4579f51ba2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Bourgois?= Date: Tue, 11 Feb 2020 14:59:13 +0100 Subject: [PATCH 1/6] fix: check image size is compatible with instance type --- .../instance/v1/custom_server_create.go | 117 +- .../instance/v1/custom_server_create_test.go | 9 + ...ttached-additional-volume-id.cassette.yaml | 1536 ++++++----- ...ttached-additional-volume-id.stderr.golden | 2 +- ...llow-existing-root-volume-id.cassette.yaml | 759 ++++-- ...llow-existing-root-volume-id.stderr.golden | 2 +- ...r-errors-error:-forbidden-ip.cassette.yaml | 731 +++-- ...ompatible-with-instance-type.cassette.yaml | 368 +++ ...ompatible-with-instance-type.stderr.golden | 1 + ...s-error:-invalid-image-label.cassette.yaml | 684 +++-- ...rs-error:-invalid-image-uuid.cassette.yaml | 381 ++- ...rs-error:-invalid-image-uuid.stderr.golden | 2 + ...ver-errors-error:-invalid-ip.cassette.yaml | 727 +++-- ...:-invalid-root-volume-format.cassette.yaml | 727 +++-- ...rror:-invalid-root-volume-id.cassette.yaml | 731 +++-- ...or:-invalid-root-volume-size.cassette.yaml | 688 +++-- ...or:-invalid-root-volume-size.stderr.golden | 2 +- ...or:-invalid-root-volume-type.cassette.yaml | 727 +++-- ...ocal-volumes-size:-too-high1.cassette.yaml | 1041 +++----- ...ocal-volumes-size:-too-high2.cassette.yaml | 994 +++---- ...ocal-volumes-size:-too-high3.cassette.yaml | 759 ++++-- ...ocal-volumes-size:-too-high3.stderr.golden | 2 +- ...local-volumes-size:-too-low1.cassette.yaml | 1041 +++----- ...local-volumes-size:-too-low2.cassette.yaml | 1041 +++----- ...errors-error:-not-found-ipid.cassette.yaml | 733 +++-- ...reate-server-ips-existing-ip.cassette.yaml | 774 +++--- ...ate-server-ips-existing-ipid.cassette.yaml | 772 +++--- ...e-server-ips-explicit-new-ip.cassette.yaml | 772 +++--- ...rver-ips-run-with-dynamic-ip.cassette.yaml | 2350 ++++++----------- ...-create-server-ips-with-ipv6.cassette.yaml | 1807 ++++++------- ...create-server-simple-default.cassette.yaml | 760 +++--- ...create-server-simple-default.stdout.golden | 14 +- ...t-create-server-simple-gp1xs.cassette.yaml | 857 +++--- ...ate-server-simple-image-uuid.cassette.yaml | 509 +++- ...st-create-server-simple-tags.cassette.yaml | 763 +++--- ...erver-simple-with-bootscript.cassette.yaml | 863 +++--- ...eate-server-simple-with-name.cassette.yaml | 847 +++--- ...ate-server-simple-with-start.cassette.yaml | 2157 ++++++--------- ...lid-additional-block-volumes.cassette.yaml | 1803 ++++++------- ...s-valid-double-local-volumes.cassette.yaml | 1774 ++++++------- ...es-valid-single-local-volume.cassette.yaml | 1729 ++++++------ .../test-create-volume-simple.cassette.yaml | 20 +- .../test-get-server-simple.cassette.yaml | 845 +++--- .../test-get-server-simple.stdout.golden | 16 +- .../test-list-server-simple.cassette.yaml | 408 ++- .../test-list-server-simple.stdout.golden | 14 +- ...ve-ip-from-server-without-ip.cassette.yaml | 545 +++- ...erver-ip-from-server-with-ip.cassette.yaml | 719 +++-- ...er-ip-from-server-without-ip.cassette.yaml | 575 +++- ...rver-with-placement-group-id.cassette.yaml | 619 ++++- ...ent-group-id=.cassette.yaml | 589 ++++- ...acement-group-id=.cassette.yaml | 619 ++++- ...oup&-placement-group-id=none.cassette.yaml | 575 +++- ...t-group&-placement-group-id=.cassette.yaml | 545 +++- ...nt-group-id=.cassette.yaml | 599 ++++- ...ent-group-id=.cassette.yaml | 513 +++- ...lid,-but-non-existing-pg-id>.cassette.yaml | 516 +++- ...oup&-placement-group-id=none.cassette.yaml | 535 +++- .../test-server-update-simple.cassette.yaml | 525 +++- .../test-server-update-simple.stdout.golden | 14 +- 60 files changed, 23935 insertions(+), 17212 deletions(-) create mode 100644 internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.cassette.yaml create mode 100644 internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.stderr.golden diff --git a/internal/namespaces/instance/v1/custom_server_create.go b/internal/namespaces/instance/v1/custom_server_create.go index c9325218b9..424a673793 100644 --- a/internal/namespaces/instance/v1/custom_server_create.go +++ b/internal/namespaces/instance/v1/custom_server_create.go @@ -166,6 +166,22 @@ func instanceServerCreateRun(ctx context.Context, argsI interface{}) (i interfac apiMarketplace := marketplace.NewAPI(client) apiInstance := instance.NewAPI(client) + // + // Server Type + // + serverType := (*instance.ServerType)(nil) + serverTypesRes, err := apiInstance.ListServersTypes(&instance.ListServersTypesRequest{ + Zone: serverReq.Zone, + }) + if err != nil { + logger.Warningf("cannot get server types: %s", err) + } else { + serverType, _ = serverTypesRes.Servers[serverReq.CommercialType] + if serverType == nil { + logger.Warningf("unrecognized server type: %s", serverReq.CommercialType) + } + } + // // Image. // @@ -189,6 +205,21 @@ func instanceServerCreateRun(ctx context.Context, argsI interface{}) (i interfac serverReq.Image = args.Image } + getImageResponse, err := apiInstance.GetImage(&instance.GetImageRequest{ + Zone: args.Zone, + ImageID: serverReq.Image, + }) + if err != nil { + logger.Warningf("cannot get image %s: %s", serverReq.Image, err) + } + + // + // Check Image / Server-Type compatibility + // + if err := validateImageServerTypeCompatibility(getImageResponse, serverType, serverReq.CommercialType); err != nil { + return nil, err + } + // // IP. // @@ -241,12 +272,12 @@ func instanceServerCreateRun(ctx context.Context, argsI interface{}) (i interfac } // Validate root volume type and size. - if err := validateRootVolume(apiInstance, args.Zone, serverReq.Image, volumes["0"]); err != nil { + if err := validateRootVolume(getImageResponse, volumes["0"]); err != nil { return nil, err } // Validate total local volume sizes. - if err := validateLocalVolumeSizes(apiInstance, volumes, args.Zone, serverReq.CommercialType); err != nil { + if err := validateLocalVolumeSizes(volumes, serverType, serverReq.CommercialType); err != nil { return nil, err } @@ -453,8 +484,32 @@ func buildVolumeTemplateFromUUID(api *instance.API, zone scw.Zone, volumeUUID st }, nil } +func validateImageServerTypeCompatibility(getImageResponse *instance.GetImageResponse, serverType *instance.ServerType, CommercialType string) error { + if serverType == nil || getImageResponse == nil { + logger.Warningf("skipping image server-type compatibility validation") + return nil + } + + if /*getImageResponse.Image.RootVolume.Size < serverType.VolumesConstraint.MinSize || */ getImageResponse.Image.RootVolume.Size > serverType.VolumesConstraint.MaxSize { + return fmt.Errorf("image %s requires %s on root volume, but root volume for %s is constraigned between %s and %s", + getImageResponse.Image.ID, + getImageResponse.Image.RootVolume.Size, + CommercialType, + serverType.VolumesConstraint.MinSize, + serverType.VolumesConstraint.MaxSize, + ) + } + + return nil +} + // validateLocalVolumeSizes validates the total size of local volumes. -func validateLocalVolumeSizes(api *instance.API, volumes map[string]*instance.VolumeTemplate, zone scw.Zone, commercialType string) error { +func validateLocalVolumeSizes(volumes map[string]*instance.VolumeTemplate, serverType *instance.ServerType, commercialType string) error { + if serverType == nil { + logger.Warningf("skip local volume size validation") + return nil + } + // Calculate local volume total size. var localVolumeTotalSize scw.Size for _, volume := range volumes { @@ -463,44 +518,27 @@ func validateLocalVolumeSizes(api *instance.API, volumes map[string]*instance.Vo } } - // Get server types. - serverTypesRes, err := api.ListServersTypes(&instance.ListServersTypesRequest{ - Zone: zone, - }) - if err != nil { - // Ignore root volume size check. - logger.Warningf("cannot get server types: %s", err) - logger.Warningf("skip local volume size validation") - return nil - } + volumeConstraint := serverType.VolumesConstraint - // Validate total size. - if serverType, exists := serverTypesRes.Servers[commercialType]; exists { - volumeConstraint := serverType.VolumesConstraint + // If no root volume provided, count the default root volume size added by the API. + if rootVolume := volumes["0"]; rootVolume == nil { + localVolumeTotalSize += volumeConstraint.MinSize + } - // If no root volume provided, count the default root volume size added by the API. - if rootVolume := volumes["0"]; rootVolume == nil { - localVolumeTotalSize += volumeConstraint.MinSize + if localVolumeTotalSize < volumeConstraint.MinSize || localVolumeTotalSize > volumeConstraint.MaxSize { + min := humanize.Bytes(uint64(volumeConstraint.MinSize)) + if volumeConstraint.MinSize == volumeConstraint.MaxSize { + return fmt.Errorf("%s total local volume size must be equal to %s", commercialType, min) } - if localVolumeTotalSize < volumeConstraint.MinSize || localVolumeTotalSize > volumeConstraint.MaxSize { - min := humanize.Bytes(uint64(volumeConstraint.MinSize)) - if volumeConstraint.MinSize == volumeConstraint.MaxSize { - return fmt.Errorf("%s total local volume size must be equal to %s", commercialType, min) - } - - max := humanize.Bytes(uint64(volumeConstraint.MaxSize)) - return fmt.Errorf("%s total local volume size must be between %s and %s", commercialType, min, max) - } - } else { - logger.Warningf("unrecognized server type: %s", commercialType) - logger.Warningf("skip local volume size validation") + max := humanize.Bytes(uint64(volumeConstraint.MaxSize)) + return fmt.Errorf("%s total local volume size must be between %s and %s", commercialType, min, max) } return nil } -func validateRootVolume(api *instance.API, zone scw.Zone, image string, rootVolume *instance.VolumeTemplate) error { +func validateRootVolume(getImageResponse *instance.GetImageResponse, rootVolume *instance.VolumeTemplate) error { if rootVolume == nil { return nil } @@ -512,21 +550,12 @@ func validateRootVolume(api *instance.API, zone scw.Zone, image string, rootVolu if rootVolume.ID != "" { return &core.CliError{ Err: fmt.Errorf("you cannot use an existing volume as a root volume"), - Details: "You must create an image of this volume and use its ID in the 'image' argument.", + Details: "You must create an imageID of this volume and use its ID in the 'imageID' argument.", } } - res, err := api.GetImage(&instance.GetImageRequest{ - Zone: zone, - ImageID: image, - }) - if err != nil { - logger.Warningf("cannot get image %s: %s", image, err) - logger.Warningf("skip root volume size validation") - } - - if rootVolume.Size < res.Image.RootVolume.Size { - return fmt.Errorf("first volume size must be at least %s for this image", humanize.Bytes(uint64(res.Image.RootVolume.Size))) + if rootVolume.Size < getImageResponse.Image.RootVolume.Size { + return fmt.Errorf("first volume size must be at least %s for this imageID", humanize.Bytes(uint64(getImageResponse.Image.RootVolume.Size))) } return nil diff --git a/internal/namespaces/instance/v1/custom_server_create_test.go b/internal/namespaces/instance/v1/custom_server_create_test.go index fdba919c9e..c36e36c326 100644 --- a/internal/namespaces/instance/v1/custom_server_create_test.go +++ b/internal/namespaces/instance/v1/custom_server_create_test.go @@ -444,4 +444,13 @@ func Test_CreateServerErrors(t *testing.T) { core.TestCheckExitCode(1), ), })) + + t.Run("Error: image size is incompatible with instance type", core.Test(&core.TestConfig{ + Commands: GetCommands(), + Cmd: "scw instance server create image=d4067cdc-dc9d-4810-8a26-0dae51d7df42 type=DEV1-S", + Check: core.TestCheckCombine( + core.TestCheckGolden(), + core.TestCheckExitCode(1), + ), + })) } diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-already-attached-additional-volume-id.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-already-attached-additional-volume-id.cassette.yaml index 4a83d1f105..d52e8534f4 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-already-attached-additional-volume-id.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-already-attached-additional-volume-id.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:01 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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": "2019-03-26T14:00:49.712120+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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": - "2019-03-26T14:00:52.355447+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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": "2019-08-27T17:02:20.002067+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:01 GMT Link: - ; rel="last" Server: @@ -841,21 +971,105 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:01 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "173" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:02 GMT + Location: + - https://cp-par1.scaleway.com/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"name":"cli-test","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","volumes":{"0":{"size":10000000000},"1":{"name":"cli-test-1","size":10000000000,"volume_type":"l_ssd","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}},"public_ip":"7f7e5c46-ed0a-425f-8d43-d0cfd77386dc","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d - method: GET + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: - body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": - {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], + "state_detail": "", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", + "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": @@ -865,18 +1079,44 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}}' + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:02.693719+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "a1e63090-8657-420e-a380-d0d78ad3b0ca", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:03.014013+00:00", + "enable_ipv6": false, "hostname": "cli-test", "state": "stopped", "bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": + "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": + [], "compute_cluster": null, "name": "cli-test", "protected": false, "volumes": + {"0": {"size": 10000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:55:03.000468+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:02.693719+00:00", "id": + "320cbb7a-ba02-44cd-b453-cc47bc3c845d", "volume_type": "l_ssd", "server": {"id": + "a1e63090-8657-420e-a380-d0d78ad3b0ca", "name": "cli-test"}}, "1": {"size": + 10000000000, "state": "available", "name": "cli-test-1", "modification_date": + "2020-02-11T13:55:03.000508+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:02.693719+00:00", "id": + "61566b3d-8573-4e9f-a58a-102ea97a0cc5", "volume_type": "l_ssd", "server": {"id": + "a1e63090-8657-420e-a380-d0d78ad3b0ca", "name": "cli-test"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "1004" + - "3218" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:02 GMT + Location: + - https://cp-par1.scaleway.com/servers/a1e63090-8657-420e-a380-d0d78ad3b0ca Server: - scaleway_api Strict-Transport-Security: @@ -885,15 +1125,15 @@ interactions: - nosniff X-Frame-Options: - DENY - status: 200 OK - code: 200 + status: 201 Created + code: 201 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers method: GET response: @@ -948,15 +1188,15 @@ interactions: "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": {"monthly_price": - 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", "volumes_constraint": - {"min_size": 20000000000, "max_size": 20000000000}, "network": {"interfaces": - [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, {"internal_bandwidth": - null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": 104857600, - "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, @@ -1002,7 +1242,7 @@ interactions: {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": - ["bootscript", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": @@ -1055,8 +1295,8 @@ interactions: {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": - 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], - "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, @@ -1064,18 +1304,18 @@ interactions: "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": {"monthly_price": - 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", "volumes_constraint": - {"min_size": 50000000000, "max_size": 50000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": - 0.008, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": @@ -1109,15 +1349,15 @@ interactions: "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": {"monthly_price": - 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", "volumes_constraint": - {"min_size": 300000000000, "max_size": 300000000000}, "network": {"interfaces": - [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, {"internal_bandwidth": - null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": 104857600, - "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, @@ -1154,46 +1394,47 @@ interactions: "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": {"monthly_price": - 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", "volumes_constraint": - {"min_size": 500000000000, "max_size": 1000000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 1073741824, "ipv6_support": true}, "hourly_price": - 0.36, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}, "ARM64-16GB": {"monthly_price": 34.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 16, - "ram": 17179869184, "arch": "arm64", "volumes_constraint": {"min_size": 200000000000, - "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": {"monthly_price": - 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", "volumes_constraint": - {"min_size": 400000000000, "max_size": 700000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 1073741824, "ipv6_support": true}, "hourly_price": - 0.18, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}}}' + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' headers: Cache-Control: - no-cache Content-Length: - - "23636" + - "23699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:02 GMT Link: - ; rel="last" Server: @@ -1209,122 +1450,12 @@ interactions: status: 200 OK code: 200 duration: "" -- request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips - method: POST - response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "4ff500c6-163a-4079-aff7-923bc2dee5db", "server": null, "address": - "51.158.103.52"}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "171" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Jan 2020 16:09:57 GMT - Location: - - https://cp-par1.scaleway.com/ips/4ff500c6-163a-4079-aff7-923bc2dee5db - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 201 Created - code: 201 - duration: "" -- request: - body: '{"name":"cli-test","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","volumes":{"0":{"size":10000000000},"1":{"name":"cli-test-1","size":10000000000,"volume_type":"l_ssd","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}},"public_ip":"4ff500c6-163a-4079-aff7-923bc2dee5db","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], - "state_detail": "", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-16T16:09:57.953134+00:00", - "public_ip": {"dynamic": false, "id": "4ff500c6-163a-4079-aff7-923bc2dee5db", - "address": "51.158.103.52"}, "private_ip": null, "id": "6476532d-b52c-402a-84b3-e8c917ff2d46", - "dynamic_ip_required": false, "modification_date": "2020-01-16T16:09:58.287908+00:00", - "enable_ipv6": false, "hostname": "cli-test", "state": "stopped", "bootscript": - {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-test", "protected": false, "volumes": - {"0": {"size": 10000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-16T16:09:58.224210+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-16T16:09:57.953134+00:00", "id": - "61cc5c7f-ca0b-4adb-b70a-698a2b52bac2", "volume_type": "l_ssd", "server": {"id": - "6476532d-b52c-402a-84b3-e8c917ff2d46", "name": "cli-test"}}, "1": {"size": - 10000000000, "state": "available", "name": "cli-test-1", "modification_date": - "2020-01-16T16:09:58.224271+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-16T16:09:57.953134+00:00", "id": - "6777e8ef-a2db-4c0e-83f4-ee8ea0bf121d", "volume_type": "l_ssd", "server": {"id": - "6476532d-b52c-402a-84b3-e8c917ff2d46", "name": "cli-test"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "3216" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Jan 2020 16:09:58 GMT - Location: - - https://cp-par1.scaleway.com/servers/6476532d-b52c-402a-84b3-e8c917ff2d46 - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 201 Created - code: 201 - duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -1357,62 +1488,53 @@ interactions: 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": "2019-03-26T14:00:49.712120+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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": - "2019-03-26T14:00:52.355447+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -1470,21 +1592,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -1536,24 +1643,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -1586,38 +1681,26 @@ interactions: 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": "2019-08-27T17:02:20.002067+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -1641,60 +1724,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -1749,24 +1783,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -1785,18 +1807,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -1838,24 +1848,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -1965,18 +1963,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -1996,18 +1982,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -2027,30 +2001,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -2102,23 +2052,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -2141,13 +2080,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:58 GMT + - Tue, 11 Feb 2020 13:55:03 GMT Link: - ; rel="last" Server: @@ -2159,7 +2098,50 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:03 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" @@ -2168,15 +2150,15 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6777e8ef-a2db-4c0e-83f4-ee8ea0bf121d + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/61566b3d-8573-4e9f-a58a-102ea97a0cc5 method: GET response: body: '{"volume": {"size": 10000000000, "state": "available", "name": "cli-test-1", - "modification_date": "2020-01-16T16:09:58.224271+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-16T16:09:57.953134+00:00", "id": - "6777e8ef-a2db-4c0e-83f4-ee8ea0bf121d", "volume_type": "l_ssd", "server": {"id": - "6476532d-b52c-402a-84b3-e8c917ff2d46", "name": "cli-test"}}}' + "modification_date": "2020-02-11T13:55:03.000508+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:02.693719+00:00", "id": + "61566b3d-8573-4e9f-a58a-102ea97a0cc5", "volume_type": "l_ssd", "server": {"id": + "a1e63090-8657-420e-a380-d0d78ad3b0ca", "name": "cli-test"}}}' headers: Cache-Control: - no-cache @@ -2187,7 +2169,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:58 GMT + - Tue, 11 Feb 2020 13:55:03 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2204,8 +2186,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6476532d-b52c-402a-84b3-e8c917ff2d46 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e63090-8657-420e-a380-d0d78ad3b0ca method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -2220,10 +2202,10 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-16T16:09:57.953134+00:00", - "public_ip": {"dynamic": false, "id": "4ff500c6-163a-4079-aff7-923bc2dee5db", - "address": "51.158.103.52"}, "private_ip": null, "id": "6476532d-b52c-402a-84b3-e8c917ff2d46", - "dynamic_ip_required": false, "modification_date": "2020-01-16T16:09:58.287908+00:00", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:02.693719+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "a1e63090-8657-420e-a380-d0d78ad3b0ca", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:03.014013+00:00", "enable_ipv6": false, "hostname": "cli-test", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": @@ -2234,28 +2216,28 @@ interactions: "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": "cli-test", "protected": false, "volumes": {"0": {"size": 10000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-16T16:09:58.224210+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-16T16:09:57.953134+00:00", "id": - "61cc5c7f-ca0b-4adb-b70a-698a2b52bac2", "volume_type": "l_ssd", "server": {"id": - "6476532d-b52c-402a-84b3-e8c917ff2d46", "name": "cli-test"}}, "1": {"size": + "modification_date": "2020-02-11T13:55:03.000468+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:02.693719+00:00", "id": + "320cbb7a-ba02-44cd-b453-cc47bc3c845d", "volume_type": "l_ssd", "server": {"id": + "a1e63090-8657-420e-a380-d0d78ad3b0ca", "name": "cli-test"}}, "1": {"size": 10000000000, "state": "available", "name": "cli-test-1", "modification_date": - "2020-01-16T16:09:58.224271+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-16T16:09:57.953134+00:00", "id": - "6777e8ef-a2db-4c0e-83f4-ee8ea0bf121d", "volume_type": "l_ssd", "server": {"id": - "6476532d-b52c-402a-84b3-e8c917ff2d46", "name": "cli-test"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "2020-02-11T13:55:03.000508+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:02.693719+00:00", "id": + "61566b3d-8573-4e9f-a58a-102ea97a0cc5", "volume_type": "l_ssd", "server": {"id": + "a1e63090-8657-420e-a380-d0d78ad3b0ca", "name": "cli-test"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3216" + - "3218" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:58 GMT + - Tue, 11 Feb 2020 13:55:03 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2272,8 +2254,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6476532d-b52c-402a-84b3-e8c917ff2d46 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e63090-8657-420e-a380-d0d78ad3b0ca method: DELETE response: body: "" @@ -2285,7 +2267,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:58 GMT + - Tue, 11 Feb 2020 13:55:03 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2302,8 +2284,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4ff500c6-163a-4079-aff7-923bc2dee5db + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc method: DELETE response: body: "" @@ -2315,7 +2297,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:58 GMT + - Tue, 11 Feb 2020 13:55:03 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2332,8 +2314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/61cc5c7f-ca0b-4adb-b70a-698a2b52bac2 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/320cbb7a-ba02-44cd-b453-cc47bc3c845d method: DELETE response: body: "" @@ -2345,7 +2327,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:58 GMT + - Tue, 11 Feb 2020 13:55:03 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2362,8 +2344,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6777e8ef-a2db-4c0e-83f4-ee8ea0bf121d + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/61566b3d-8573-4e9f-a58a-102ea97a0cc5 method: DELETE response: body: "" @@ -2375,7 +2357,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:59 GMT + - Tue, 11 Feb 2020 13:55:03 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-already-attached-additional-volume-id.stderr.golden b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-already-attached-additional-volume-id.stderr.golden index 77b0cd38b1..f20607a80d 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-already-attached-additional-volume-id.stderr.golden +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-already-attached-additional-volume-id.stderr.golden @@ -1 +1 @@ -Volume 6777e8ef-a2db-4c0e-83f4-ee8ea0bf121d is already attached to 6476532d-b52c-402a-84b3-e8c917ff2d46 server +Volume 61566b3d-8573-4e9f-a58a-102ea97a0cc5 is already attached to a1e63090-8657-420e-a380-d0d78ad3b0ca server diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-disallow-existing-root-volume-id.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-disallow-existing-root-volume-id.cassette.yaml index d25390bce4..23ce5726f1 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-disallow-existing-root-volume-id.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-disallow-existing-root-volume-id.cassette.yaml @@ -2,20 +2,20 @@ version: 1 interactions: - request: - body: '{"name":"cli-test","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f","volume_type":"l_ssd","size":20000000000}' + body: '{"name":"cli-test","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd","volume_type":"l_ssd","size":20000000000}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes method: POST response: body: '{"volume": {"size": 20000000000, "state": "available", "name": "cli-test", - "modification_date": "2020-01-16T16:09:57.419907+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-16T16:09:57.419907+00:00", "id": - "51403f54-06bd-4cb3-84a0-9bb764beecc8", "volume_type": "l_ssd", "server": null}}' + "modification_date": "2020-02-11T13:55:01.090527+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:01.090527+00:00", "id": + "d1b888fc-db09-456e-8bcf-a25042fc87d3", "volume_type": "l_ssd", "server": null}}' headers: Cache-Control: - no-cache @@ -26,9 +26,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:00 GMT Location: - - https://cp-par1.scaleway.com/volumes/51403f54-06bd-4cb3-84a0-9bb764beecc8 + - https://cp-par1.scaleway.com/volumes/d1b888fc-db09-456e-8bcf-a25042fc87d3 Server: - scaleway_api Strict-Transport-Security: @@ -45,7 +45,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:00 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -78,62 +400,53 @@ interactions: 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": "2019-03-26T14:00:49.712120+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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": - "2019-03-26T14:00:52.355447+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -191,21 +504,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -257,24 +555,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -307,38 +593,26 @@ interactions: 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": "2019-08-27T17:02:20.002067+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -362,60 +636,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -470,24 +695,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -506,18 +719,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -559,24 +760,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -686,18 +875,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -717,18 +894,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -748,30 +913,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -823,23 +964,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -862,13 +992,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:01 GMT Link: - ; rel="last" Server: @@ -880,7 +1010,50 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:01 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" @@ -889,14 +1062,14 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/51403f54-06bd-4cb3-84a0-9bb764beecc8 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d1b888fc-db09-456e-8bcf-a25042fc87d3 method: GET response: body: '{"volume": {"size": 20000000000, "state": "available", "name": "cli-test", - "modification_date": "2020-01-16T16:09:57.419907+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-16T16:09:57.419907+00:00", "id": - "51403f54-06bd-4cb3-84a0-9bb764beecc8", "volume_type": "l_ssd", "server": null}}' + "modification_date": "2020-02-11T13:55:01.090527+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:01.090527+00:00", "id": + "d1b888fc-db09-456e-8bcf-a25042fc87d3", "volume_type": "l_ssd", "server": null}}' headers: Cache-Control: - no-cache @@ -907,7 +1080,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:01 GMT Server: - scaleway_api Strict-Transport-Security: @@ -924,8 +1097,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/51403f54-06bd-4cb3-84a0-9bb764beecc8 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d1b888fc-db09-456e-8bcf-a25042fc87d3 method: DELETE response: body: "" @@ -937,7 +1110,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:01 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-disallow-existing-root-volume-id.stderr.golden b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-disallow-existing-root-volume-id.stderr.golden index 1f5e958978..ef0bcf2147 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-disallow-existing-root-volume-id.stderr.golden +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-disallow-existing-root-volume-id.stderr.golden @@ -1,4 +1,4 @@ You cannot use an existing volume as a root volume Details: -You must create an image of this volume and use its ID in the 'image' argument. +You must create an imageID of this volume and use its ID in the 'imageID' argument. diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-forbidden-ip.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-forbidden-ip.cassette.yaml index c991c789da..9a80b47885 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-forbidden-ip.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-forbidden-ip.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:04 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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-17T09:25:30.577144+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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-17T10:50:34.084671+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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-17T10:46:52.315571+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 14:48:29 GMT + - Tue, 11 Feb 2020 13:55:04 GMT Link: - ; rel="last" Server: @@ -841,7 +971,50 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:04 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" @@ -850,7 +1023,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.242.82 method: GET response: @@ -863,7 +1036,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 14:48:29 GMT + - Tue, 11 Feb 2020 13:55:04 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.cassette.yaml new file mode 100644 index 0000000000..9c0a056a18 --- /dev/null +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.cassette.yaml @@ -0,0 +1,368 @@ +--- +version: 1 +interactions: +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:05 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d4067cdc-dc9d-4810-8a26-0dae51d7df42 + method: GET + response: + body: '{"image": {"creation_date": "2018-08-31T12:09:48.318542+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "d4067cdc-dc9d-4810-8a26-0dae51d7df42", + "root_volume": {"size": 50000000000, "id": "6fb4094d-f6e2-4b6e-b659-dc62258e9dad", + "volume_type": "l_ssd", "name": "snapshot-e845ae67-2e67-4ec0-8955-3293a851b092-2018-08-31_12:09"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2018-08-31T17:20:05.687183+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:05 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 200 OK + code: 200 + duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.stderr.golden b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.stderr.golden new file mode 100644 index 0000000000..a14ae416bf --- /dev/null +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.stderr.golden @@ -0,0 +1 @@ +Image d4067cdc-dc9d-4810-8a26-0dae51d7df42 requires 50000000000 on root volume, but root volume for DEV1-S is constraigned between 20000000000 and 20000000000 diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-label.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-label.cassette.yaml index 2cd6089bc0..6bb252bccf 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-label.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-label.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:54:57 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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": "2019-03-26T14:00:49.712120+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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": - "2019-03-26T14:00:52.355447+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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": "2019-08-27T17:02:20.002067+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:54:57 GMT Link: - ; rel="last" Server: @@ -841,7 +971,7 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-uuid.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-uuid.cassette.yaml index dfd5bc847b..290c933ae4 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-uuid.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-uuid.cassette.yaml @@ -2,32 +2,385 @@ version: 1 interactions: - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:54:57 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/7a892c1a-bbdc-491f-9974-4008e3708664 + method: GET + response: + body: '{"message": "\"7a892c1a-bbdc-491f-9974-4008e3708664\" not found", "type": + "unknown_resource"}' + headers: + Content-Length: + - "93" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:54:57 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 404 Not Found + code: 404 + duration: "" +- request: + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "64f12779-5d07-465b-8276-0c0db3b621d0", "server": null, "address": - "51.158.114.1"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' headers: Cache-Control: - no-cache Content-Length: - - "170" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:54:57 GMT Location: - - https://cp-par1.scaleway.com/ips/64f12779-5d07-465b-8276-0c0db3b621d0 + - https://cp-par1.scaleway.com/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc Server: - scaleway_api Strict-Transport-Security: @@ -40,13 +393,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-great-goldstine","commercial_type":"DEV1-S","image":"7a892c1a-bbdc-491f-9974-4008e3708664","public_ip":"64f12779-5d07-465b-8276-0c0db3b621d0","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-clever-roentgen","commercial_type":"DEV1-S","image":"7a892c1a-bbdc-491f-9974-4008e3708664","public_ip":"7f7e5c46-ed0a-425f-8d43-d0cfd77386dc","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -60,7 +413,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:58 GMT + - Tue, 11 Feb 2020 13:54:58 GMT Server: - scaleway_api Strict-Transport-Security: @@ -77,8 +430,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/64f12779-5d07-465b-8276-0c0db3b621d0 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc method: DELETE response: body: "" @@ -90,7 +443,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:58 GMT + - Tue, 11 Feb 2020 13:54:58 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-uuid.stderr.golden b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-uuid.stderr.golden index 6e157e8efb..0498fbd4fc 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-uuid.stderr.golden +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-uuid.stderr.golden @@ -1 +1,3 @@ +WARNING: 2019/12/09 16:04:07 cannot get image 7a892c1a-bbdc-491f-9974-4008e3708664: scaleway-sdk-go: http error 404 Not Found: "7a892c1a-bbdc-491f-9974-4008e3708664" not found +WARNING: 2019/12/09 16:04:07 skipping image server-type compatibility validation Cannot create the server: scaleway-sdk-go: http error 404 Not Found: "7a892c1a-bbdc-491f-9974-4008e3708664" not found diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-ip.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-ip.cassette.yaml index 304ca1b727..964d1bf822 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-ip.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-ip.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:04 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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-17T09:25:30.577144+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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-17T10:50:34.084671+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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-17T10:46:52.315571+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 14:48:33 GMT + - Tue, 11 Feb 2020 13:55:05 GMT Link: - ; rel="last" Server: @@ -841,7 +971,50 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:05 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-format.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-format.cassette.yaml index 2cd6089bc0..e18f5f0327 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-format.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-format.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:03 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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": "2019-03-26T14:00:49.712120+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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": - "2019-03-26T14:00:52.355447+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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": "2019-08-27T17:02:20.002067+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:03 GMT Link: - ; rel="last" Server: @@ -841,7 +971,50 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:03 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-id.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-id.cassette.yaml index 003a3a4ffc..225138e73b 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-id.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-id.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:01 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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": "2019-03-26T14:00:49.712120+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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": - "2019-03-26T14:00:52.355447+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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": "2019-08-27T17:02:20.002067+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:01 GMT Link: - ; rel="last" Server: @@ -841,7 +971,50 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:01 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" @@ -850,7 +1023,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29da9ad9-e759-4a56-82c8-f0607f93055c method: GET response: @@ -864,7 +1037,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:01 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-size.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-size.cassette.yaml index a3274b754f..a6a92ec5d9 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-size.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-size.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:00 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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": "2019-03-26T14:00:49.712120+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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": - "2019-03-26T14:00:52.355447+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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": "2019-08-27T17:02:20.002067+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:00 GMT Link: - ; rel="last" Server: @@ -841,7 +971,7 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" status: 200 OK code: 200 duration: "" @@ -850,7 +980,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d method: GET response: @@ -876,7 +1006,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:00 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-size.stderr.golden b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-size.stderr.golden index 6dde2b6a59..6cfe1418fe 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-size.stderr.golden +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-size.stderr.golden @@ -1 +1 @@ -First volume size must be at least 10 GB for this image +First volume size must be at least 10 GB for this imageID diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-type.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-type.cassette.yaml index 2cd6089bc0..a6a92ec5d9 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-type.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-type.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:00 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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": "2019-03-26T14:00:49.712120+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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": - "2019-03-26T14:00:52.355447+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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": "2019-08-27T17:02:20.002067+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:00 GMT Link: - ; rel="last" Server: @@ -841,7 +971,50 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:00 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high1.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high1.cassette.yaml index 2e117fd844..c98d900fea 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high1.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high1.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:54:59 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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": "2019-03-26T14:00:49.712120+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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": - "2019-03-26T14:00:52.355447+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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": "2019-08-27T17:02:20.002067+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,60 +953,15 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:54:59 GMT Link: - - ; rel="last" - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Total-Count: - - "46" - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d - method: GET - response: - body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": - {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "1004" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - ; rel="last" Server: - scaleway_api Strict-Transport-Security: @@ -885,6 +970,8 @@ interactions: - nosniff X-Frame-Options: - DENY + X-Total-Count: + - "30" status: 200 OK code: 200 duration: "" @@ -893,309 +980,33 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; 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.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d method: GET response: - body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, - "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": - 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, - "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": - {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", - "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, - "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": - 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, - "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": - 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": - 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, - "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": - 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": - 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": - 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, - "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": - {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, - "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": {"monthly_price": - 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", "volumes_constraint": - {"min_size": 20000000000, "max_size": 20000000000}, "network": {"interfaces": - [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, {"internal_bandwidth": - null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": 104857600, - "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": - 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, - "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, - "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": - 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": - {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": - true, "block_storage": true, "default_boot_type": "local", "private_network": - 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, - "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, - "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": - 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], - "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "default_boot_type": - "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": - 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": - {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": - [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": - 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": - 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], - "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": - 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, - "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": - {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", - "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": - {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], - "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": - true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": - ["bootscript", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": - true, "block_storage": false, "default_boot_type": "bootscript", "private_network": - 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": - 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, - "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": - 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "default_boot_type": - "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": - 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": - {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": - [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": - 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": - 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], - "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": - 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, - "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], - "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": - {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", - "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, - "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": - 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], - "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": - true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": - ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": - false, "block_storage": false, "default_boot_type": "bootscript", "private_network": - 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": - 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, - "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": - 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, - "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, - "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": - 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": - {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": - 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], - "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, - "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, - "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": {"monthly_price": - 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", "volumes_constraint": - {"min_size": 50000000000, "max_size": 50000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": - 0.008, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": - 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, - "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": - {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", - "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, - "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": - 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, - "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": - 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, - "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "default_boot_type": - "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": - {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", - "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, - "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": {"monthly_price": - 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", "volumes_constraint": - {"min_size": 300000000000, "max_size": 300000000000}, "network": {"interfaces": - [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, {"internal_bandwidth": - null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": 104857600, - "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": - 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": - 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, - "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": - {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", - "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, - "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": - {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, - "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": - {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", - "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, - "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": {"monthly_price": - 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", "volumes_constraint": - {"min_size": 500000000000, "max_size": 1000000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 1073741824, "ipv6_support": true}, "hourly_price": - 0.36, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}, "ARM64-16GB": {"monthly_price": 34.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 16, - "ram": 17179869184, "arch": "arm64", "volumes_constraint": {"min_size": 200000000000, - "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": {"monthly_price": - 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", "volumes_constraint": - {"min_size": 400000000000, "max_size": 700000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 1073741824, "ipv6_support": true}, "hourly_price": - 0.18, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}}}' + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' headers: Cache-Control: - no-cache Content-Length: - - "23636" + - "1004" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT - Link: - - ; rel="last" + - Tue, 11 Feb 2020 13:54:59 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1204,8 +1015,6 @@ interactions: - nosniff X-Frame-Options: - DENY - X-Total-Count: - - "32" status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high2.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high2.cassette.yaml index 6d660fa49c..c98d900fea 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high2.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high2.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:54:59 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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": "2019-03-26T14:00:49.712120+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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": - "2019-03-26T14:00:52.355447+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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": "2019-08-27T17:02:20.002067+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:54:59 GMT Link: - ; rel="last" Server: @@ -841,7 +971,7 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" status: 200 OK code: 200 duration: "" @@ -850,309 +980,33 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; 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.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d method: GET response: - body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, - "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": - 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, - "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": - {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", - "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, - "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": - 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, - "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": - 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": - 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, - "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": - 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": - 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": - 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, - "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": - {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, - "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": {"monthly_price": - 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", "volumes_constraint": - {"min_size": 20000000000, "max_size": 20000000000}, "network": {"interfaces": - [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, {"internal_bandwidth": - null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": 104857600, - "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": - 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, - "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, - "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": - 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": - {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": - true, "block_storage": true, "default_boot_type": "local", "private_network": - 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, - "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, - "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": - 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], - "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "default_boot_type": - "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": - 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": - {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": - [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": - 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": - 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], - "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": - 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, - "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": - {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", - "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": - {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], - "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": - true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": - ["bootscript", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": - true, "block_storage": false, "default_boot_type": "bootscript", "private_network": - 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": - 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, - "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": - 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "default_boot_type": - "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": - 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": - {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": - [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": - 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": - 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], - "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": - 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, - "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], - "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": - {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", - "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, - "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": - 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], - "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": - true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": - ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": - false, "block_storage": false, "default_boot_type": "bootscript", "private_network": - 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": - 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, - "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": - 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, - "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, - "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": - 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": - {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": - 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], - "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, - "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, - "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": {"monthly_price": - 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", "volumes_constraint": - {"min_size": 50000000000, "max_size": 50000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": - 0.008, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": - 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, - "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": - {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", - "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, - "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": - 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, - "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": - 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, - "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "default_boot_type": - "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": - {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", - "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, - "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": {"monthly_price": - 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", "volumes_constraint": - {"min_size": 300000000000, "max_size": 300000000000}, "network": {"interfaces": - [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, {"internal_bandwidth": - null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": 104857600, - "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": - 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": - 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, - "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": - {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", - "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, - "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": - {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, - "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": - {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", - "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, - "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": {"monthly_price": - 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", "volumes_constraint": - {"min_size": 500000000000, "max_size": 1000000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 1073741824, "ipv6_support": true}, "hourly_price": - 0.36, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}, "ARM64-16GB": {"monthly_price": 34.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 16, - "ram": 17179869184, "arch": "arm64", "volumes_constraint": {"min_size": 200000000000, - "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": {"monthly_price": - 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", "volumes_constraint": - {"min_size": 400000000000, "max_size": 700000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 1073741824, "ipv6_support": true}, "hourly_price": - 0.18, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}}}' + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' headers: Cache-Control: - no-cache Content-Length: - - "23636" + - "1004" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT - Link: - - ; rel="last" + - Tue, 11 Feb 2020 13:54:59 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1161,8 +1015,6 @@ interactions: - nosniff X-Frame-Options: - DENY - X-Total-Count: - - "32" status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.cassette.yaml index f4b5ef348a..acf928b3d8 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.cassette.yaml @@ -2,20 +2,20 @@ version: 1 interactions: - request: - body: '{"name":"cli-test","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f","volume_type":"l_ssd","size":20000000000}' + body: '{"name":"cli-test","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd","volume_type":"l_ssd","size":20000000000}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes method: POST response: body: '{"volume": {"size": 20000000000, "state": "available", "name": "cli-test", - "modification_date": "2020-01-16T16:09:57.110020+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-16T16:09:57.110020+00:00", "id": - "511edcd6-f6d5-42bf-a0fc-47d437cc0bac", "volume_type": "l_ssd", "server": null}}' + "modification_date": "2020-02-11T13:55:00.043208+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:00.043208+00:00", "id": + "685406de-e4a8-4168-9a67-177cdc90729b", "volume_type": "l_ssd", "server": null}}' headers: Cache-Control: - no-cache @@ -26,9 +26,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:54:59 GMT Location: - - https://cp-par1.scaleway.com/volumes/511edcd6-f6d5-42bf-a0fc-47d437cc0bac + - https://cp-par1.scaleway.com/volumes/685406de-e4a8-4168-9a67-177cdc90729b Server: - scaleway_api Strict-Transport-Security: @@ -45,7 +45,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:54:59 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -78,62 +400,53 @@ interactions: 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": "2019-03-26T14:00:49.712120+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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": - "2019-03-26T14:00:52.355447+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -191,21 +504,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -257,24 +555,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -307,38 +593,26 @@ interactions: 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": "2019-08-27T17:02:20.002067+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -362,60 +636,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -470,24 +695,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -506,18 +719,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -559,24 +760,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -686,18 +875,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -717,18 +894,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -748,30 +913,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -823,23 +964,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -862,13 +992,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:00 GMT Link: - ; rel="last" Server: @@ -880,7 +1010,50 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:00 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" @@ -889,14 +1062,14 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/511edcd6-f6d5-42bf-a0fc-47d437cc0bac + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/685406de-e4a8-4168-9a67-177cdc90729b method: GET response: body: '{"volume": {"size": 20000000000, "state": "available", "name": "cli-test", - "modification_date": "2020-01-16T16:09:57.110020+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-16T16:09:57.110020+00:00", "id": - "511edcd6-f6d5-42bf-a0fc-47d437cc0bac", "volume_type": "l_ssd", "server": null}}' + "modification_date": "2020-02-11T13:55:00.043208+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:00.043208+00:00", "id": + "685406de-e4a8-4168-9a67-177cdc90729b", "volume_type": "l_ssd", "server": null}}' headers: Cache-Control: - no-cache @@ -907,7 +1080,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:00 GMT Server: - scaleway_api Strict-Transport-Security: @@ -924,8 +1097,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/511edcd6-f6d5-42bf-a0fc-47d437cc0bac + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/685406de-e4a8-4168-9a67-177cdc90729b method: DELETE response: body: "" @@ -937,7 +1110,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:55:00 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.stderr.golden b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.stderr.golden index 1f5e958978..ef0bcf2147 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.stderr.golden +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.stderr.golden @@ -1,4 +1,4 @@ You cannot use an existing volume as a root volume Details: -You must create an image of this volume and use its ID in the 'image' argument. +You must create an imageID of this volume and use its ID in the 'imageID' argument. diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-low1.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-low1.cassette.yaml index 2e117fd844..04fc2ec568 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-low1.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-low1.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:54:58 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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": "2019-03-26T14:00:49.712120+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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": - "2019-03-26T14:00:52.355447+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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": "2019-08-27T17:02:20.002067+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,60 +953,15 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:54:58 GMT Link: - - ; rel="last" - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Total-Count: - - "46" - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d - method: GET - response: - body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": - {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "1004" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - ; rel="last" Server: - scaleway_api Strict-Transport-Security: @@ -885,6 +970,8 @@ interactions: - nosniff X-Frame-Options: - DENY + X-Total-Count: + - "30" status: 200 OK code: 200 duration: "" @@ -893,309 +980,33 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; 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.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d method: GET response: - body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, - "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": - 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, - "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": - {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", - "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, - "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": - 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, - "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": - 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": - 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, - "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": - 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": - 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": - 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, - "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": - {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, - "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": {"monthly_price": - 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", "volumes_constraint": - {"min_size": 20000000000, "max_size": 20000000000}, "network": {"interfaces": - [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, {"internal_bandwidth": - null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": 104857600, - "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": - 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, - "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, - "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": - 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": - {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": - true, "block_storage": true, "default_boot_type": "local", "private_network": - 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, - "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, - "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": - 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], - "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "default_boot_type": - "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": - 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": - {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": - [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": - 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": - 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], - "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": - 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, - "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": - {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", - "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": - {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], - "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": - true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": - ["bootscript", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": - true, "block_storage": false, "default_boot_type": "bootscript", "private_network": - 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": - 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, - "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": - 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "default_boot_type": - "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": - 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": - {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": - [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": - 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": - 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], - "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": - 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, - "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], - "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": - {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", - "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, - "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": - 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], - "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": - true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": - ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": - false, "block_storage": false, "default_boot_type": "bootscript", "private_network": - 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": - 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, - "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": - 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, - "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, - "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": - 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": - {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": - 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], - "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, - "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, - "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": {"monthly_price": - 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", "volumes_constraint": - {"min_size": 50000000000, "max_size": 50000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": - 0.008, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": - 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, - "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": - {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", - "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, - "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": - 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, - "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": - 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, - "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "default_boot_type": - "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": - {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", - "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, - "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": {"monthly_price": - 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", "volumes_constraint": - {"min_size": 300000000000, "max_size": 300000000000}, "network": {"interfaces": - [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, {"internal_bandwidth": - null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": 104857600, - "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": - 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": - 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, - "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": - {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", - "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, - "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": - {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, - "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": - {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", - "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, - "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": {"monthly_price": - 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", "volumes_constraint": - {"min_size": 500000000000, "max_size": 1000000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 1073741824, "ipv6_support": true}, "hourly_price": - 0.36, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}, "ARM64-16GB": {"monthly_price": 34.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 16, - "ram": 17179869184, "arch": "arm64", "volumes_constraint": {"min_size": 200000000000, - "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": {"monthly_price": - 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", "volumes_constraint": - {"min_size": 400000000000, "max_size": 700000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 1073741824, "ipv6_support": true}, "hourly_price": - 0.18, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}}}' + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' headers: Cache-Control: - no-cache Content-Length: - - "23636" + - "1004" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT - Link: - - ; rel="last" + - Tue, 11 Feb 2020 13:54:58 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1204,8 +1015,6 @@ interactions: - nosniff X-Frame-Options: - DENY - X-Total-Count: - - "32" status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-low2.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-low2.cassette.yaml index 2e117fd844..c98d900fea 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-low2.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-low2.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:54:59 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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": "2019-03-26T14:00:49.712120+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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": - "2019-03-26T14:00:52.355447+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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": "2019-08-27T17:02:20.002067+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,60 +953,15 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - Tue, 11 Feb 2020 13:54:59 GMT Link: - - ; rel="last" - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Total-Count: - - "46" - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d - method: GET - response: - body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": - {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "1004" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Jan 2020 16:09:57 GMT + - ; rel="last" Server: - scaleway_api Strict-Transport-Security: @@ -885,6 +970,8 @@ interactions: - nosniff X-Frame-Options: - DENY + X-Total-Count: + - "30" status: 200 OK code: 200 duration: "" @@ -893,309 +980,33 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; 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.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d method: GET response: - body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, - "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": - 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, - "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": - {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", - "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, - "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": - 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, - "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": - 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": - 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, - "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": - 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": - 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": - 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, - "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": - {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, - "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": {"monthly_price": - 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", "volumes_constraint": - {"min_size": 20000000000, "max_size": 20000000000}, "network": {"interfaces": - [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, {"internal_bandwidth": - null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": 104857600, - "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": - 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, - "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, - "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": - 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": - {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": - true, "block_storage": true, "default_boot_type": "local", "private_network": - 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, - "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, - "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": - 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], - "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "default_boot_type": - "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": - 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": - {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": - [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": - 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": - 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], - "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": - 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, - "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": - {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", - "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": - {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], - "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": - true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": - ["bootscript", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": - true, "block_storage": false, "default_boot_type": "bootscript", "private_network": - 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": - 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, - "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": - 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "default_boot_type": - "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": - 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": - {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": - [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": - 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": - 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], - "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": - 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, - "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], - "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": - {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", - "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, - "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": - 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], - "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": - true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": - ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": - false, "block_storage": false, "default_boot_type": "bootscript", "private_network": - 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": - 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, - "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": - 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, - "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, - "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": - 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": - {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": - 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], - "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, - "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, - "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": {"monthly_price": - 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", "volumes_constraint": - {"min_size": 50000000000, "max_size": 50000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": - 0.008, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": - 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, - "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": - {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", - "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, - "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": - 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": - 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, - "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": - 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, - "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": - 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "default_boot_type": - "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": - {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", - "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, - "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": {"monthly_price": - 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", "volumes_constraint": - {"min_size": 300000000000, "max_size": 300000000000}, "network": {"interfaces": - [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, {"internal_bandwidth": - null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": 104857600, - "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": - 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, - "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": - 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, - "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": - {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", - "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, - "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": - {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", - "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, - "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "default_boot_type": - "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": - {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", - "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, - "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": - 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, - "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": {"monthly_price": - 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", "volumes_constraint": - {"min_size": 500000000000, "max_size": 1000000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 1073741824, "ipv6_support": true}, "hourly_price": - 0.36, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}, "ARM64-16GB": {"monthly_price": 34.99, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 16, - "ram": 17179869184, "arch": "arm64", "volumes_constraint": {"min_size": 200000000000, - "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": - null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": - 524288000, "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": - {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": true, - "placement_groups": true, "block_storage": false, "default_boot_type": "bootscript", - "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": {"monthly_price": - 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", "volumes_constraint": - {"min_size": 400000000000, "max_size": 700000000000}, "network": {"interfaces": - [{"internal_bandwidth": null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 1073741824, "ipv6_support": true}, "hourly_price": - 0.18, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", - "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": - false, "gpu": null}}}' + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' headers: Cache-Control: - no-cache Content-Length: - - "23636" + - "1004" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Jan 2020 16:09:57 GMT - Link: - - ; rel="last" + - Tue, 11 Feb 2020 13:54:59 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1204,8 +1015,6 @@ interactions: - nosniff X-Frame-Options: - DENY - X-Total-Count: - - "32" status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-not-found-ipid.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-not-found-ipid.cassette.yaml index f5196270cd..29e75895b9 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-not-found-ipid.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-not-found-ipid.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:03 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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-17T09:25:30.577144+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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-17T10:50:34.084671+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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-17T10:46:52.315571+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 14:48:21 GMT + - Tue, 11 Feb 2020 13:55:04 GMT Link: - ; rel="last" Server: @@ -841,18 +971,61 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:04 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" - request: - body: '{"name":"cli-srv-zealous-lalande","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"23165951-13fd-4a3b-84ed-22c2e96658f2","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-nostalgic-saha","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"23165951-13fd-4a3b-84ed-22c2e96658f2","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -866,7 +1039,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 14:48:21 GMT + - Tue, 11 Feb 2020 13:55:04 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-ips-existing-ip.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-ips-existing-ip.cassette.yaml index 65ffc1fab6..ddfdd94d61 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-ips-existing-ip.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-ips-existing-ip.cassette.yaml @@ -2,32 +2,32 @@ version: 1 interactions: - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", "server": null, "address": - "51.158.72.139"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' headers: Cache-Control: - no-cache Content-Length: - - "171" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:10 GMT + - Tue, 11 Feb 2020 13:53:30 GMT Location: - - https://cp-par1.scaleway.com/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - https://cp-par1.scaleway.com/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc Server: - scaleway_api Strict-Transport-Security: @@ -44,7 +44,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:53:30 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -99,18 +421,6 @@ interactions: "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": "Ubuntu is the ideal distribution for scale-out - computing, Ubuntu Server helps you make the most of your infrastructure.", "creation_date": - "2016-03-05T14:51:48.354036+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "id": "c2292eda-bb2a-4399-a226-91f82525b75f", "categories": ["distribution"], - "name": "Ubuntu Trusty", "modification_date": "2019-03-26T14:00:52.034055+00:00", - "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", "modification_date": - "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "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", @@ -193,21 +503,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -259,24 +554,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -328,19 +611,7 @@ interactions: "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": "Discourse - is an open source Internet forum software application.", "creation_date": "2016-03-07T21:08:17.200172+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", "id": - "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], "name": - "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", "versions": - [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + 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", @@ -364,60 +635,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -472,24 +694,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -508,18 +718,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -561,24 +759,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -688,18 +874,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -719,18 +893,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -750,30 +912,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -825,23 +963,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -864,13 +991,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69538" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:11 GMT + - Tue, 11 Feb 2020 13:53:30 GMT Link: - ; rel="last" Server: @@ -882,7 +1009,50 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:53:30 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" @@ -891,24 +1061,24 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.158.72.139 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/163.172.182.243 method: GET response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", "server": null, "address": - "51.158.72.139"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' headers: Cache-Control: - no-cache Content-Length: - - "171" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:11 GMT + - Tue, 11 Feb 2020 13:53:30 GMT Server: - scaleway_api Strict-Transport-Security: @@ -921,13 +1091,13 @@ interactions: code: 200 duration: "" - request: - body: '{"name":"cli-srv-happy-mayer","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"2c453330-0286-4986-ab36-a7f9aee549fd","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-elated-tharp","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"7f7e5c46-ed0a-425f-8d43-d0cfd77386dc","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -943,11 +1113,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T12:56:11.597110+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "1f146b06-15ac-4d55-8ce7-7bf8d1a2a396", - "dynamic_ip_required": false, "modification_date": "2020-01-24T12:56:11.919021+00:00", - "enable_ipv6": false, "hostname": "cli-srv-happy-mayer", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:30.817883+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "73485fd2-7e08-48a9-bae1-39910ef4520c", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:53:31.035445+00:00", + "enable_ipv6": false, "hostname": "cli-srv-elated-tharp", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -955,27 +1125,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-happy-mayer", "protected": false, + [], "compute_cluster": null, "name": "cli-srv-elated-tharp", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-24T12:56:11.853903+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T12:56:11.597110+00:00", "id": - "f295f79c-1c0e-4f05-a669-7df9b7a7733d", "volume_type": "l_ssd", "server": {"id": - "1f146b06-15ac-4d55-8ce7-7bf8d1a2a396", "name": "cli-srv-happy-mayer"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:53:31.019570+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:30.817883+00:00", "id": + "85cc4eb2-be8a-41f4-af47-31b51a4e56bf", "volume_type": "l_ssd", "server": {"id": + "73485fd2-7e08-48a9-bae1-39910ef4520c", "name": "cli-srv-elated-tharp"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2843" + - "2848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:11 GMT + - Tue, 11 Feb 2020 13:53:30 GMT Location: - - https://cp-par1.scaleway.com/servers/1f146b06-15ac-4d55-8ce7-7bf8d1a2a396 + - https://cp-par1.scaleway.com/servers/73485fd2-7e08-48a9-bae1-39910ef4520c Server: - scaleway_api Strict-Transport-Security: @@ -992,8 +1162,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f146b06-15ac-4d55-8ce7-7bf8d1a2a396 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/73485fd2-7e08-48a9-bae1-39910ef4520c method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1008,11 +1178,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T12:56:11.597110+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "1f146b06-15ac-4d55-8ce7-7bf8d1a2a396", - "dynamic_ip_required": false, "modification_date": "2020-01-24T12:56:11.919021+00:00", - "enable_ipv6": false, "hostname": "cli-srv-happy-mayer", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:30.817883+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "73485fd2-7e08-48a9-bae1-39910ef4520c", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:53:31.035445+00:00", + "enable_ipv6": false, "hostname": "cli-srv-elated-tharp", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1020,25 +1190,25 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-happy-mayer", "protected": false, + [], "compute_cluster": null, "name": "cli-srv-elated-tharp", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-24T12:56:11.853903+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T12:56:11.597110+00:00", "id": - "f295f79c-1c0e-4f05-a669-7df9b7a7733d", "volume_type": "l_ssd", "server": {"id": - "1f146b06-15ac-4d55-8ce7-7bf8d1a2a396", "name": "cli-srv-happy-mayer"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:53:31.019570+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:30.817883+00:00", "id": + "85cc4eb2-be8a-41f4-af47-31b51a4e56bf", "volume_type": "l_ssd", "server": {"id": + "73485fd2-7e08-48a9-bae1-39910ef4520c", "name": "cli-srv-elated-tharp"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2843" + - "2848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:11 GMT + - Tue, 11 Feb 2020 13:53:31 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1055,8 +1225,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f146b06-15ac-4d55-8ce7-7bf8d1a2a396 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/73485fd2-7e08-48a9-bae1-39910ef4520c method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1071,11 +1241,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T12:56:11.597110+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "1f146b06-15ac-4d55-8ce7-7bf8d1a2a396", - "dynamic_ip_required": false, "modification_date": "2020-01-24T12:56:11.919021+00:00", - "enable_ipv6": false, "hostname": "cli-srv-happy-mayer", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:30.817883+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "73485fd2-7e08-48a9-bae1-39910ef4520c", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:53:31.035445+00:00", + "enable_ipv6": false, "hostname": "cli-srv-elated-tharp", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1083,25 +1253,25 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-happy-mayer", "protected": false, + [], "compute_cluster": null, "name": "cli-srv-elated-tharp", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-24T12:56:11.853903+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T12:56:11.597110+00:00", "id": - "f295f79c-1c0e-4f05-a669-7df9b7a7733d", "volume_type": "l_ssd", "server": {"id": - "1f146b06-15ac-4d55-8ce7-7bf8d1a2a396", "name": "cli-srv-happy-mayer"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:53:31.019570+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:30.817883+00:00", "id": + "85cc4eb2-be8a-41f4-af47-31b51a4e56bf", "volume_type": "l_ssd", "server": {"id": + "73485fd2-7e08-48a9-bae1-39910ef4520c", "name": "cli-srv-elated-tharp"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2843" + - "2848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:12 GMT + - Tue, 11 Feb 2020 13:53:31 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1118,8 +1288,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f146b06-15ac-4d55-8ce7-7bf8d1a2a396 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/73485fd2-7e08-48a9-bae1-39910ef4520c method: DELETE response: body: "" @@ -1131,7 +1301,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:12 GMT + - Tue, 11 Feb 2020 13:53:31 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1148,8 +1318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc method: DELETE response: body: "" @@ -1161,7 +1331,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:12 GMT + - Tue, 11 Feb 2020 13:53:31 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1178,8 +1348,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f295f79c-1c0e-4f05-a669-7df9b7a7733d + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/85cc4eb2-be8a-41f4-af47-31b51a4e56bf method: DELETE response: body: "" @@ -1191,7 +1361,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:12 GMT + - Tue, 11 Feb 2020 13:53:31 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-ips-existing-ipid.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-ips-existing-ipid.cassette.yaml index ff2dbc15c4..5942600e19 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-ips-existing-ipid.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-ips-existing-ipid.cassette.yaml @@ -2,32 +2,32 @@ version: 1 interactions: - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", "server": null, "address": - "51.158.72.139"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' headers: Cache-Control: - no-cache Content-Length: - - "171" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:27 GMT + - Tue, 11 Feb 2020 13:53:31 GMT Location: - - https://cp-par1.scaleway.com/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - https://cp-par1.scaleway.com/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc Server: - scaleway_api Strict-Transport-Security: @@ -44,7 +44,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:53:31 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -99,18 +421,6 @@ interactions: "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": "Ubuntu is the ideal distribution for scale-out - computing, Ubuntu Server helps you make the most of your infrastructure.", "creation_date": - "2016-03-05T14:51:48.354036+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "id": "c2292eda-bb2a-4399-a226-91f82525b75f", "categories": ["distribution"], - "name": "Ubuntu Trusty", "modification_date": "2019-03-26T14:00:52.034055+00:00", - "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", "modification_date": - "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "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", @@ -193,21 +503,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -259,24 +554,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -328,19 +611,7 @@ interactions: "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": "Discourse - is an open source Internet forum software application.", "creation_date": "2016-03-07T21:08:17.200172+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", "id": - "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], "name": - "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", "versions": - [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + 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", @@ -364,60 +635,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -472,24 +694,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -508,18 +718,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -561,24 +759,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -688,18 +874,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -719,18 +893,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -750,30 +912,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -825,23 +963,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -864,13 +991,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69538" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:27 GMT + - Tue, 11 Feb 2020 13:53:31 GMT Link: - ; rel="last" Server: @@ -882,18 +1009,61 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:53:31 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" - request: - body: '{"name":"cli-srv-determined-curran","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"2c453330-0286-4986-ab36-a7f9aee549fd","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-eager-wright","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"7f7e5c46-ed0a-425f-8d43-d0cfd77386dc","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -909,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T12:56:28.538023+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "3a04f59e-61f5-45d5-ba75-7ed4a616eae4", - "dynamic_ip_required": false, "modification_date": "2020-01-24T12:56:29.164617+00:00", - "enable_ipv6": false, "hostname": "cli-srv-determined-curran", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:32.429148+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "8f703123-85a8-4453-96e1-2b67f8f1e26c", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:53:32.640205+00:00", + "enable_ipv6": false, "hostname": "cli-srv-eager-wright", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -921,29 +1091,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-determined-curran", "protected": - false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T12:56:29.092819+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T12:56:28.538023+00:00", "id": - "4fd20572-c4cd-4f76-91da-1ba03e9e8069", "volume_type": "l_ssd", "server": {"id": - "3a04f59e-61f5-45d5-ba75-7ed4a616eae4", "name": "cli-srv-determined-curran"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' + [], "compute_cluster": null, "name": "cli-srv-eager-wright", "protected": false, + "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:53:32.629577+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:32.429148+00:00", "id": + "0da47c88-adc0-4102-902d-88a10c27ed13", "volume_type": "l_ssd", "server": {"id": + "8f703123-85a8-4453-96e1-2b67f8f1e26c", "name": "cli-srv-eager-wright"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2861" + - "2848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:28 GMT + - Tue, 11 Feb 2020 13:53:32 GMT Location: - - https://cp-par1.scaleway.com/servers/3a04f59e-61f5-45d5-ba75-7ed4a616eae4 + - https://cp-par1.scaleway.com/servers/8f703123-85a8-4453-96e1-2b67f8f1e26c Server: - scaleway_api Strict-Transport-Security: @@ -960,8 +1128,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3a04f59e-61f5-45d5-ba75-7ed4a616eae4 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f703123-85a8-4453-96e1-2b67f8f1e26c method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -976,11 +1144,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T12:56:28.538023+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "3a04f59e-61f5-45d5-ba75-7ed4a616eae4", - "dynamic_ip_required": false, "modification_date": "2020-01-24T12:56:29.164617+00:00", - "enable_ipv6": false, "hostname": "cli-srv-determined-curran", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:32.429148+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "8f703123-85a8-4453-96e1-2b67f8f1e26c", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:53:32.640205+00:00", + "enable_ipv6": false, "hostname": "cli-srv-eager-wright", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -988,27 +1156,25 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-determined-curran", "protected": - false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T12:56:29.092819+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T12:56:28.538023+00:00", "id": - "4fd20572-c4cd-4f76-91da-1ba03e9e8069", "volume_type": "l_ssd", "server": {"id": - "3a04f59e-61f5-45d5-ba75-7ed4a616eae4", "name": "cli-srv-determined-curran"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' + [], "compute_cluster": null, "name": "cli-srv-eager-wright", "protected": false, + "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:53:32.629577+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:32.429148+00:00", "id": + "0da47c88-adc0-4102-902d-88a10c27ed13", "volume_type": "l_ssd", "server": {"id": + "8f703123-85a8-4453-96e1-2b67f8f1e26c", "name": "cli-srv-eager-wright"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2861" + - "2848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:28 GMT + - Tue, 11 Feb 2020 13:53:32 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1025,8 +1191,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3a04f59e-61f5-45d5-ba75-7ed4a616eae4 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f703123-85a8-4453-96e1-2b67f8f1e26c method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1041,11 +1207,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T12:56:28.538023+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "3a04f59e-61f5-45d5-ba75-7ed4a616eae4", - "dynamic_ip_required": false, "modification_date": "2020-01-24T12:56:29.164617+00:00", - "enable_ipv6": false, "hostname": "cli-srv-determined-curran", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:32.429148+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "8f703123-85a8-4453-96e1-2b67f8f1e26c", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:53:32.640205+00:00", + "enable_ipv6": false, "hostname": "cli-srv-eager-wright", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1053,27 +1219,25 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-determined-curran", "protected": - false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T12:56:29.092819+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T12:56:28.538023+00:00", "id": - "4fd20572-c4cd-4f76-91da-1ba03e9e8069", "volume_type": "l_ssd", "server": {"id": - "3a04f59e-61f5-45d5-ba75-7ed4a616eae4", "name": "cli-srv-determined-curran"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' + [], "compute_cluster": null, "name": "cli-srv-eager-wright", "protected": false, + "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:53:32.629577+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:32.429148+00:00", "id": + "0da47c88-adc0-4102-902d-88a10c27ed13", "volume_type": "l_ssd", "server": {"id": + "8f703123-85a8-4453-96e1-2b67f8f1e26c", "name": "cli-srv-eager-wright"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2861" + - "2848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:28 GMT + - Tue, 11 Feb 2020 13:53:32 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1090,8 +1254,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3a04f59e-61f5-45d5-ba75-7ed4a616eae4 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f703123-85a8-4453-96e1-2b67f8f1e26c method: DELETE response: body: "" @@ -1103,7 +1267,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:29 GMT + - Tue, 11 Feb 2020 13:53:32 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1120,8 +1284,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc method: DELETE response: body: "" @@ -1133,7 +1297,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:29 GMT + - Tue, 11 Feb 2020 13:53:32 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1150,8 +1314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4fd20572-c4cd-4f76-91da-1ba03e9e8069 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0da47c88-adc0-4102-902d-88a10c27ed13 method: DELETE response: body: "" @@ -1163,7 +1327,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:56:29 GMT + - Tue, 11 Feb 2020 13:53:32 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-ips-explicit-new-ip.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-ips-explicit-new-ip.cassette.yaml index 9e3a79ac25..b5bf832aa8 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-ips-explicit-new-ip.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-ips-explicit-new-ip.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:52:09 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -61,18 +383,6 @@ interactions: "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": "Ubuntu is the ideal distribution for scale-out - computing, Ubuntu Server helps you make the most of your infrastructure.", "creation_date": - "2016-03-05T14:51:48.354036+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "id": "c2292eda-bb2a-4399-a226-91f82525b75f", "categories": ["distribution"], - "name": "Ubuntu Trusty", "modification_date": "2019-03-26T14:00:52.034055+00:00", - "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", "modification_date": - "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "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", @@ -155,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -221,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -290,19 +573,7 @@ interactions: "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": "Discourse - is an open source Internet forum software application.", "creation_date": "2016-03-07T21:08:17.200172+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", "id": - "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], "name": - "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", "versions": - [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + 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", @@ -326,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -434,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -470,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -523,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -650,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -681,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -712,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -787,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -826,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69538" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:03:35 GMT + - Tue, 11 Feb 2020 13:52:09 GMT Link: - ; rel="last" Server: @@ -844,37 +971,80 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:52:09 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", "server": null, "address": - "51.158.72.139"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' headers: Cache-Control: - no-cache Content-Length: - - "171" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:03:35 GMT + - Tue, 11 Feb 2020 13:52:09 GMT Location: - - https://cp-par1.scaleway.com/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - https://cp-par1.scaleway.com/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc Server: - scaleway_api Strict-Transport-Security: @@ -887,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-wonderful-gagarin","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"2c453330-0286-4986-ab36-a7f9aee549fd","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-great-panini","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"7f7e5c46-ed0a-425f-8d43-d0cfd77386dc","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -909,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T12:03:35.925457+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "88b6a828-c228-4112-b1fa-65fe167c54e4", - "dynamic_ip_required": false, "modification_date": "2020-01-24T12:03:36.209712+00:00", - "enable_ipv6": false, "hostname": "cli-srv-wonderful-gagarin", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:10.254762+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "57ed8409-aab3-42e2-9744-7c9f8b453671", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:10.549649+00:00", + "enable_ipv6": false, "hostname": "cli-srv-great-panini", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -921,29 +1091,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-wonderful-gagarin", "protected": - false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T12:03:36.143850+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T12:03:35.925457+00:00", "id": - "726ca414-432a-4d76-9822-8ed095eb0966", "volume_type": "l_ssd", "server": {"id": - "88b6a828-c228-4112-b1fa-65fe167c54e4", "name": "cli-srv-wonderful-gagarin"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' + [], "compute_cluster": null, "name": "cli-srv-great-panini", "protected": false, + "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:52:10.524559+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:10.254762+00:00", "id": + "8af9c5a6-736e-4e57-a9c0-90b466c268f0", "volume_type": "l_ssd", "server": {"id": + "57ed8409-aab3-42e2-9744-7c9f8b453671", "name": "cli-srv-great-panini"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2861" + - "2848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:03:36 GMT + - Tue, 11 Feb 2020 13:52:10 GMT Location: - - https://cp-par1.scaleway.com/servers/88b6a828-c228-4112-b1fa-65fe167c54e4 + - https://cp-par1.scaleway.com/servers/57ed8409-aab3-42e2-9744-7c9f8b453671 Server: - scaleway_api Strict-Transport-Security: @@ -960,8 +1128,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/88b6a828-c228-4112-b1fa-65fe167c54e4 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57ed8409-aab3-42e2-9744-7c9f8b453671 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -976,11 +1144,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T12:03:35.925457+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "88b6a828-c228-4112-b1fa-65fe167c54e4", - "dynamic_ip_required": false, "modification_date": "2020-01-24T12:03:36.209712+00:00", - "enable_ipv6": false, "hostname": "cli-srv-wonderful-gagarin", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:10.254762+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "57ed8409-aab3-42e2-9744-7c9f8b453671", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:10.549649+00:00", + "enable_ipv6": false, "hostname": "cli-srv-great-panini", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -988,27 +1156,25 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-wonderful-gagarin", "protected": - false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T12:03:36.143850+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T12:03:35.925457+00:00", "id": - "726ca414-432a-4d76-9822-8ed095eb0966", "volume_type": "l_ssd", "server": {"id": - "88b6a828-c228-4112-b1fa-65fe167c54e4", "name": "cli-srv-wonderful-gagarin"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' + [], "compute_cluster": null, "name": "cli-srv-great-panini", "protected": false, + "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:52:10.524559+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:10.254762+00:00", "id": + "8af9c5a6-736e-4e57-a9c0-90b466c268f0", "volume_type": "l_ssd", "server": {"id": + "57ed8409-aab3-42e2-9744-7c9f8b453671", "name": "cli-srv-great-panini"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2861" + - "2848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:03:36 GMT + - Tue, 11 Feb 2020 13:52:10 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1025,8 +1191,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/88b6a828-c228-4112-b1fa-65fe167c54e4 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57ed8409-aab3-42e2-9744-7c9f8b453671 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1041,11 +1207,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T12:03:35.925457+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "88b6a828-c228-4112-b1fa-65fe167c54e4", - "dynamic_ip_required": false, "modification_date": "2020-01-24T12:03:36.209712+00:00", - "enable_ipv6": false, "hostname": "cli-srv-wonderful-gagarin", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:10.254762+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "57ed8409-aab3-42e2-9744-7c9f8b453671", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:10.549649+00:00", + "enable_ipv6": false, "hostname": "cli-srv-great-panini", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1053,27 +1219,25 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-wonderful-gagarin", "protected": - false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T12:03:36.143850+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T12:03:35.925457+00:00", "id": - "726ca414-432a-4d76-9822-8ed095eb0966", "volume_type": "l_ssd", "server": {"id": - "88b6a828-c228-4112-b1fa-65fe167c54e4", "name": "cli-srv-wonderful-gagarin"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' + [], "compute_cluster": null, "name": "cli-srv-great-panini", "protected": false, + "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:52:10.524559+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:10.254762+00:00", "id": + "8af9c5a6-736e-4e57-a9c0-90b466c268f0", "volume_type": "l_ssd", "server": {"id": + "57ed8409-aab3-42e2-9744-7c9f8b453671", "name": "cli-srv-great-panini"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2861" + - "2848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:03:36 GMT + - Tue, 11 Feb 2020 13:52:10 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1090,8 +1254,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/88b6a828-c228-4112-b1fa-65fe167c54e4 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57ed8409-aab3-42e2-9744-7c9f8b453671 method: DELETE response: body: "" @@ -1103,7 +1267,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:03:36 GMT + - Tue, 11 Feb 2020 13:52:10 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1120,8 +1284,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc method: DELETE response: body: "" @@ -1133,7 +1297,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:03:36 GMT + - Tue, 11 Feb 2020 13:52:11 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1150,8 +1314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/726ca414-432a-4d76-9822-8ed095eb0966 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8af9c5a6-736e-4e57-a9c0-90b466c268f0 method: DELETE response: body: "" @@ -1163,7 +1327,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 12:03:36 GMT + - Tue, 11 Feb 2020 13:52:11 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-ips-run-with-dynamic-ip.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-ips-run-with-dynamic-ip.cassette.yaml index 3a3d96154d..975fa0ef99 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-ips-run-with-dynamic-ip.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-ips-run-with-dynamic-ip.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:52:11 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -637,7 +959,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:01:28 GMT + - Tue, 11 Feb 2020 13:52:11 GMT Link: - ; rel="last" Server: @@ -654,19 +976,16 @@ interactions: code: 200 duration: "" - request: - body: '{"name":"cli-srv-bold-hawking","dynamic_ip_required":true,"commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET response: - body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], - "state_detail": "", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": @@ -676,38 +995,18 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": null, "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:01:28.652598+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopped", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-bold-hawking", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "extra_volumes": {}, "public": true}}' headers: Cache-Control: - no-cache Content-Length: - - "2757" + - "1004" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:01:28 GMT - Location: - - https://cp-par1.scaleway.com/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - Tue, 11 Feb 2020 13:52:11 GMT Server: - scaleway_api Strict-Transport-Security: @@ -716,57 +1015,22 @@ interactions: - nosniff X-Frame-Options: - DENY - status: 201 Created - code: 201 + status: 200 OK + code: 200 duration: "" - request: - body: '{"action":"poweron"}' + body: '{"name":"cli-srv-laughing-khorana","dynamic_ip_required":true,"commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5/action + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: - body: '{"task": {"status": "pending", "description": "server_batch_poweron", "href_result": - "/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "terminated_at": null, "href_from": - "/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5/action", "started_at": "2020-02-07T17:01:28.937887+00:00", - "id": "8928d301-cdb7-4ec9-9b1e-45b254d5fced"}}' - headers: - Content-Length: - - "322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:01:28 GMT - Location: - - https://p10-compute.pv.ocshq.com/tasks/8928d301-cdb7-4ec9-9b1e-45b254d5fced - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 202 Accepted - code: 202 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "allocating node", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", + body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], + "state_detail": "", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -777,10 +1041,10 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": null, "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:01:28.701468+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": null, "private_ip": null, "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:12.089805+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -788,25 +1052,29 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-bold-hawking", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + [], "compute_cluster": null, "name": "cli-srv-laughing-khorana", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2779" + - "2769" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:01:28 GMT + - Tue, 11 Feb 2020 13:52:11 GMT + Location: + - https://cp-par1.scaleway.com/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d Server: - scaleway_api Strict-Transport-Security: @@ -815,128 +1083,35 @@ interactions: - nosniff X-Frame-Options: - DENY - status: 200 OK - code: 200 + status: 201 Created + code: 201 duration: "" - request: - body: "" + body: '{"action":"poweron"}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "provisioning node", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:01:28.701468+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "starting", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2976" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Fri, 07 Feb 2020 17:01:34 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d/action + method: POST response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "provisioning node", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:01:28.701468+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "starting", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + body: '{"task": {"status": "pending", "description": "server_batch_poweron", "href_result": + "/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d", "terminated_at": null, "href_from": + "/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d/action", "started_at": "2020-02-11T13:52:12.478457+00:00", + "id": "450a98c5-1eb3-4a45-a473-590b38a3e30f"}}' headers: - Cache-Control: - - no-cache Content-Length: - - "2976" + - "322" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:01:40 GMT + - Tue, 11 Feb 2020 13:52:12 GMT + Location: + - https://p10-compute.pv.ocshq.com/tasks/450a98c5-1eb3-4a45-a473-590b38a3e30f Server: - scaleway_api Strict-Transport-Security: @@ -945,20 +1120,20 @@ interactions: - nosniff X-Frame-Options: - DENY - status: 200 OK - code: 200 + status: 202 Accepted + code: 202 duration: "" - request: body: "" form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "provisioning node", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", + [], "state_detail": "allocating node", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -969,39 +1144,38 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:01:28.701468+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": null, "private_ip": null, "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:12.196458+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "starting", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": + "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": + [], "compute_cluster": null, "name": "cli-srv-laughing-khorana", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2976" + - "2791" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:01:45 GMT + - Tue, 11 Feb 2020 13:52:12 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1018,8 +1192,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -1034,39 +1208,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:01:28.701468+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": {"dynamic": true, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:12.196458+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "starting", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2976" + - "2989" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:01:50 GMT + - Tue, 11 Feb 2020 13:52:17 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1083,8 +1258,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -1099,39 +1274,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:01:28.701468+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": {"dynamic": true, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:12.196458+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "starting", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2976" + - "2989" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:01:56 GMT + - Tue, 11 Feb 2020 13:52:22 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1148,8 +1324,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -1164,39 +1340,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:01:28.701468+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": {"dynamic": true, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:12.196458+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "starting", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2976" + - "2989" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:02:01 GMT + - Tue, 11 Feb 2020 13:52:27 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1213,13 +1390,13 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "provisioning node", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + body: '{"server": {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": + "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": @@ -1229,39 +1406,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:01:28.701468+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": {"dynamic": true, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:31.779654+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "running", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2976" + - "3020" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:02:06 GMT + - Tue, 11 Feb 2020 13:52:32 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1278,13 +1456,13 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "provisioning node", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + body: '{"server": {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": + "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": @@ -1294,39 +1472,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:01:28.701468+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": {"dynamic": true, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:31.779654+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "running", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2976" + - "3020" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:02:11 GMT + - Tue, 11 Feb 2020 13:52:32 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1343,13 +1522,13 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "provisioning node", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + body: '{"server": {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": + "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": @@ -1359,39 +1538,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:01:28.701468+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": {"dynamic": true, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:31.779654+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "running", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2976" + - "3020" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:02:16 GMT + - Tue, 11 Feb 2020 13:52:32 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1404,356 +1584,31 @@ interactions: code: 200 duration: "" - request: - body: "" + body: '{"action":"poweroff"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d/action + method: POST response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "provisioning node", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:01:28.701468+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "starting", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + body: '{"task": {"status": "pending", "description": "server_poweroff", "href_result": + "/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d", "terminated_at": null, "href_from": + "/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d/action", "started_at": "2020-02-11T13:52:33.468357+00:00", + "id": "5fdef72f-eae9-47c0-9fb7-1a5820d5ed1b"}}' headers: - Cache-Control: - - no-cache Content-Length: - - "2976" + - "317" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:02:21 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "provisioning node", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:01:28.701468+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "starting", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2976" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:02:26 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", - "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": - "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:27.811626+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "running", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "3007" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:02:31 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", - "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": - "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:27.811626+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "running", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "3007" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:02:31 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", - "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": - "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:27.811626+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "running", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "3007" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:02:32 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"action":"poweroff"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5/action - method: POST - response: - body: '{"task": {"status": "pending", "description": "server_poweroff", "href_result": - "/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "terminated_at": null, "href_from": - "/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5/action", "started_at": "2020-02-07T17:02:32.681809+00:00", - "id": "0f69d52e-cf5a-492d-8611-9b0efe47aed0"}}' - headers: - Content-Length: - - "317" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:02:32 GMT - Location: - - https://p10-compute.pv.ocshq.com/tasks/0f69d52e-cf5a-492d-8611-9b0efe47aed0 + - Tue, 11 Feb 2020 13:52:33 GMT + Location: + - https://p10-compute.pv.ocshq.com/tasks/5fdef72f-eae9-47c0-9fb7-1a5820d5ed1b Server: - scaleway_api Strict-Transport-Security: @@ -1770,718 +1625,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "launching poweroff task", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2982" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:02:32 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "launching poweroff task", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2982" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:02:37 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "launching poweroff task", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2982" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:02:42 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "launching poweroff task", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2982" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:02:47 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "launching poweroff task", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2982" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:02:52 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "launching poweroff task", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": {"dynamic": true, "id": "13116dbf-0ae9-4328-8b0f-4defc3ee2728", - "address": "163.172.175.37"}, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2982" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:02:58 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "stopping", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2879" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:03:03 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "stopping", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2879" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:03:08 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "stopping", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2879" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:03:13 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "stopping", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2879" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:03:18 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "stopping", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2879" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 07 Feb 2020 17:03:23 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2496,38 +1641,39 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": null, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:33.231592+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2879" + - "2891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:03:28 GMT + - Tue, 11 Feb 2020 13:52:33 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2544,8 +1690,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2560,38 +1706,39 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": null, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:33.231592+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2879" + - "2891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:03:33 GMT + - Tue, 11 Feb 2020 13:52:38 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2608,8 +1755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2624,38 +1771,39 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": null, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:33.231592+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2879" + - "2891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:03:38 GMT + - Tue, 11 Feb 2020 13:52:43 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2672,8 +1820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2688,38 +1836,39 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": null, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:33.231592+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2879" + - "2891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:03:44 GMT + - Tue, 11 Feb 2020 13:52:48 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2736,8 +1885,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2752,38 +1901,39 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": null, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:33.231592+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2879" + - "2891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:03:49 GMT + - Tue, 11 Feb 2020 13:52:53 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2800,8 +1950,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2816,38 +1966,39 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": null, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:33.231592+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2879" + - "2891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:03:54 GMT + - Tue, 11 Feb 2020 13:52:58 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2864,8 +2015,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2880,38 +2031,39 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": null, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:33.231592+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2879" + - "2891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:03:59 GMT + - Tue, 11 Feb 2020 13:53:04 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2928,8 +2080,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2944,38 +2096,39 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": null, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:33.231592+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2879" + - "2891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:04:04 GMT + - Tue, 11 Feb 2020 13:53:09 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2992,8 +2145,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -3008,38 +2161,39 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": null, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:33.231592+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2879" + - "2891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:04:09 GMT + - Tue, 11 Feb 2020 13:53:14 GMT Server: - scaleway_api Strict-Transport-Security: @@ -3056,8 +2210,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -3072,38 +2226,39 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": null, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:33.231592+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2879" + - "2891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:04:15 GMT + - Tue, 11 Feb 2020 13:53:19 GMT Server: - scaleway_api Strict-Transport-Security: @@ -3120,8 +2275,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -3136,38 +2291,39 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": "10.64.54.57", "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:02:32.379319+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": null, "private_ip": "10.68.12.103", "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:52:33.231592+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1402", - "node_id": "29", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "401", + "node_id": "52", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-bold-hawking", "protected": false, "volumes": {"0": {"size": 20000000000, + "cli-srv-laughing-khorana", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2879" + - "2891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:04:20 GMT + - Tue, 11 Feb 2020 13:53:24 GMT Server: - scaleway_api Strict-Transport-Security: @@ -3184,8 +2340,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -3200,10 +2356,10 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:01:28.402978+00:00", - "public_ip": null, "private_ip": null, "id": "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", - "dynamic_ip_required": true, "modification_date": "2020-02-07T17:04:21.974897+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-hawking", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:11.863390+00:00", + "public_ip": null, "private_ip": null, "id": "892447b0-d894-45b8-aa88-9017e6fd1f3d", + "dynamic_ip_required": true, "modification_date": "2020-02-11T13:53:28.123766+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-khorana", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -3211,25 +2367,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-bold-hawking", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:01:28.585053+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:01:28.402978+00:00", "id": - "bb590299-5049-4556-9fcb-529d15a96309", "volume_type": "l_ssd", "server": {"id": - "cdbace0c-44c4-45c6-bcbe-8e521f653aa5", "name": "cli-srv-bold-hawking"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + [], "compute_cluster": null, "name": "cli-srv-laughing-khorana", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:52:12.076058+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:11.863390+00:00", "id": + "f62771c5-f157-41e6-a7e9-034a922be894", "volume_type": "l_ssd", "server": {"id": + "892447b0-d894-45b8-aa88-9017e6fd1f3d", "name": "cli-srv-laughing-khorana"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2757" + - "2769" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:04:25 GMT + - Tue, 11 Feb 2020 13:53:29 GMT Server: - scaleway_api Strict-Transport-Security: @@ -3246,8 +2404,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cdbace0c-44c4-45c6-bcbe-8e521f653aa5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/892447b0-d894-45b8-aa88-9017e6fd1f3d method: DELETE response: body: "" @@ -3259,7 +2417,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:04:25 GMT + - Tue, 11 Feb 2020 13:53:29 GMT Server: - scaleway_api Strict-Transport-Security: @@ -3276,8 +2434,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bb590299-5049-4556-9fcb-529d15a96309 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f62771c5-f157-41e6-a7e9-034a922be894 method: DELETE response: body: "" @@ -3289,7 +2447,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:04:25 GMT + - Tue, 11 Feb 2020 13:53:29 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-ips-with-ipv6.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-ips-with-ipv6.cassette.yaml index db58e50b36..cb1468180d 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-ips-with-ipv6.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-ips-with-ipv6.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:53:32 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -61,18 +383,6 @@ interactions: "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": "Ubuntu is the ideal distribution for scale-out - computing, Ubuntu Server helps you make the most of your infrastructure.", "creation_date": - "2016-03-05T14:51:48.354036+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "id": "c2292eda-bb2a-4399-a226-91f82525b75f", "categories": ["distribution"], - "name": "Ubuntu Trusty", "modification_date": "2019-03-26T14:00:52.034055+00:00", - "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", "modification_date": - "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "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", @@ -155,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -221,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -290,19 +573,7 @@ interactions: "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": "Discourse - is an open source Internet forum software application.", "creation_date": "2016-03-07T21:08:17.200172+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", "id": - "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], "name": - "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", "versions": - [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + 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", @@ -326,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -434,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -470,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -523,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -650,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -681,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -712,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -787,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -826,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69538" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:05:41 GMT + - Tue, 11 Feb 2020 13:53:33 GMT Link: - ; rel="last" Server: @@ -844,37 +971,80 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:53:33 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "902dae7f-302d-4be3-a821-f361b652f308", "server": null, "address": - "51.15.134.93"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' headers: Cache-Control: - no-cache Content-Length: - - "170" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:05:41 GMT + - Tue, 11 Feb 2020 13:53:33 GMT Location: - - https://cp-par1.scaleway.com/ips/902dae7f-302d-4be3-a821-f361b652f308 + - https://cp-par1.scaleway.com/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc Server: - scaleway_api Strict-Transport-Security: @@ -887,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-unruffled-pare","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","enable_ipv6":true,"public_ip":"902dae7f-302d-4be3-a821-f361b652f308","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-xenodochial-haibt","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","enable_ipv6":true,"public_ip":"7f7e5c46-ed0a-425f-8d43-d0cfd77386dc","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -909,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:05:42.874742+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:53:34.225661+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -921,29 +1091,29 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", "protected": + [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2850" + - "2862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:05:42 GMT + - Tue, 11 Feb 2020 13:53:34 GMT Location: - - https://cp-par1.scaleway.com/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - https://cp-par1.scaleway.com/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 Server: - scaleway_api Strict-Transport-Security: @@ -962,14 +1132,14 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9/action + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654/action method: POST response: body: '{"task": {"status": "pending", "description": "server_batch_poweron", "href_result": - "/servers/6a792271-687e-4b26-b2c9-d793fac685c9", "terminated_at": null, "href_from": - "/servers/6a792271-687e-4b26-b2c9-d793fac685c9/action", "started_at": "2020-01-24T13:05:43.380089+00:00", - "id": "e3b3a11c-543f-45a6-b22d-6e1cb947b689"}}' + "/servers/1f7d0907-5822-4a89-a4b8-61315e16a654", "terminated_at": null, "href_from": + "/servers/1f7d0907-5822-4a89-a4b8-61315e16a654/action", "started_at": "2020-02-11T13:53:34.605381+00:00", + "id": "4ed16855-1fee-4d82-bc7a-7f8a4237385a"}}' headers: Content-Length: - "322" @@ -978,9 +1148,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:05:43 GMT + - Tue, 11 Feb 2020 13:53:34 GMT Location: - - https://p10-compute.pv.ocshq.com/tasks/e3b3a11c-543f-45a6-b22d-6e1cb947b689 + - https://p10-compute.pv.ocshq.com/tasks/4ed16855-1fee-4d82-bc7a-7f8a4237385a Server: - scaleway_api Strict-Transport-Security: @@ -997,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -1013,11 +1183,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:05:43.017084+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:53:34.363422+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "starting", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1025,27 +1195,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", "protected": + [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2872" + - "2884" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:05:43 GMT + - Tue, 11 Feb 2020 13:53:34 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1062,8 +1232,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -1078,41 +1248,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:05:43.017084+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:53:34.363422+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "starting", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3061" + - "3078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:05:48 GMT + - Tue, 11 Feb 2020 13:53:39 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1129,8 +1299,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -1145,41 +1315,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:05:43.017084+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:53:34.363422+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "starting", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3061" + - "3078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:05:53 GMT + - Tue, 11 Feb 2020 13:53:44 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1196,8 +1366,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -1212,41 +1382,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:05:43.017084+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:53:34.363422+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "starting", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3061" + - "3078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:05:58 GMT + - Tue, 11 Feb 2020 13:53:49 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1263,8 +1433,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -1279,41 +1449,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:05:43.017084+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:53:34.363422+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "starting", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3061" + - "3078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:06:03 GMT + - Tue, 11 Feb 2020 13:53:54 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1330,8 +1500,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", @@ -1346,41 +1516,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:03.977428+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "running", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:53:56.386212+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "running", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3092" + - "3109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:06:08 GMT + - Tue, 11 Feb 2020 13:54:00 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1397,8 +1567,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", @@ -1413,41 +1583,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:03.977428+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "running", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:53:56.386212+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "running", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3092" + - "3109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:06:08 GMT + - Tue, 11 Feb 2020 13:54:00 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1464,8 +1634,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", @@ -1480,41 +1650,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:03.977428+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "running", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:53:56.386212+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "running", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3092" + - "3109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:06:08 GMT + - Tue, 11 Feb 2020 13:54:00 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1533,14 +1703,14 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9/action + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654/action method: POST response: body: '{"task": {"status": "pending", "description": "server_poweroff", "href_result": - "/servers/6a792271-687e-4b26-b2c9-d793fac685c9", "terminated_at": null, "href_from": - "/servers/6a792271-687e-4b26-b2c9-d793fac685c9/action", "started_at": "2020-01-24T13:06:09.696852+00:00", - "id": "00bff543-8eca-4602-972b-c0610f2a96a8"}}' + "/servers/1f7d0907-5822-4a89-a4b8-61315e16a654", "terminated_at": null, "href_from": + "/servers/1f7d0907-5822-4a89-a4b8-61315e16a654/action", "started_at": "2020-02-11T13:54:00.785115+00:00", + "id": "201f9b53-c396-47ac-8c89-c199fb2d0b5e"}}' headers: Content-Length: - "317" @@ -1549,9 +1719,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:06:09 GMT + - Tue, 11 Feb 2020 13:54:00 GMT Location: - - https://p10-compute.pv.ocshq.com/tasks/00bff543-8eca-4602-972b-c0610f2a96a8 + - https://p10-compute.pv.ocshq.com/tasks/201f9b53-c396-47ac-8c89-c199fb2d0b5e Server: - scaleway_api Strict-Transport-Security: @@ -1568,142 +1738,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "launching poweroff task", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, - "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", - "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "3067" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2020 13:06:09 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "launching poweroff task", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, - "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", - "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "3067" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2020 13:06:14 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -1718,242 +1754,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, - "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", - "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "3067" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2020 13:06:19 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "launching poweroff task", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, - "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", - "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "3067" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2020 13:06:24 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "stopping", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, - "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", - "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", - "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "3052" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2020 13:06:29 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "stopping", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:54:00.540240+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3052" + - "3084" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:06:34 GMT + - Tue, 11 Feb 2020 13:54:00 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1970,8 +1805,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -1986,41 +1821,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:54:00.540240+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3052" + - "3069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:06:40 GMT + - Tue, 11 Feb 2020 13:54:05 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2037,8 +1872,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2053,41 +1888,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:54:00.540240+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3052" + - "3069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:06:45 GMT + - Tue, 11 Feb 2020 13:54:10 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2104,8 +1939,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2120,41 +1955,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:54:00.540240+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3052" + - "3069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:06:50 GMT + - Tue, 11 Feb 2020 13:54:16 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2171,8 +2006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2187,41 +2022,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:54:00.540240+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3052" + - "3069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:06:55 GMT + - Tue, 11 Feb 2020 13:54:21 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2238,8 +2073,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2254,41 +2089,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:54:00.540240+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3052" + - "3069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:07:00 GMT + - Tue, 11 Feb 2020 13:54:26 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2305,8 +2140,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2321,41 +2156,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:54:00.540240+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3052" + - "3069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:07:05 GMT + - Tue, 11 Feb 2020 13:54:31 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2372,8 +2207,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2388,41 +2223,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:54:00.540240+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3052" + - "3069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:07:10 GMT + - Tue, 11 Feb 2020 13:54:36 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2439,8 +2274,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2455,41 +2290,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:54:00.540240+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3052" + - "3069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:07:15 GMT + - Tue, 11 Feb 2020 13:54:41 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2506,8 +2341,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2522,41 +2357,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:54:00.540240+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3052" + - "3069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:07:20 GMT + - Tue, 11 Feb 2020 13:54:46 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2573,8 +2408,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2589,41 +2424,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.188.31", "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:06:09.325204+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.65.26.157", "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:54:00.540240+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "801", - "node_id": "16", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:608:e0f::", "address": "2001:bc8:608:e0f::1"}, + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "79", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:154e::", "address": "2001:bc8:47ac:154e::1"}, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3052" + - "3069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:07:26 GMT + - Tue, 11 Feb 2020 13:54:51 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2640,8 +2475,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -2656,11 +2491,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:05:42.373411+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "6a792271-687e-4b26-b2c9-d793fac685c9", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:07:30.982844+00:00", - "enable_ipv6": true, "hostname": "cli-srv-unruffled-pare", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:53:34.001271+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "1f7d0907-5822-4a89-a4b8-61315e16a654", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:54:56.481817+00:00", + "enable_ipv6": true, "hostname": "cli-srv-xenodochial-haibt", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -2668,27 +2503,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-unruffled-pare", "protected": + [], "compute_cluster": null, "name": "cli-srv-xenodochial-haibt", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T13:05:42.815438+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:05:42.373411+00:00", "id": - "3a381170-057c-41fb-9d04-ee561c45c585", "volume_type": "l_ssd", "server": {"id": - "6a792271-687e-4b26-b2c9-d793fac685c9", "name": "cli-srv-unruffled-pare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:53:34.215773+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:53:34.001271+00:00", "id": + "54d04829-c91a-4b95-b987-1d66592b364f", "volume_type": "l_ssd", "server": {"id": + "1f7d0907-5822-4a89-a4b8-61315e16a654", "name": "cli-srv-xenodochial-haibt"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2850" + - "2862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:07:31 GMT + - Tue, 11 Feb 2020 13:54:56 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2705,8 +2540,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6a792271-687e-4b26-b2c9-d793fac685c9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1f7d0907-5822-4a89-a4b8-61315e16a654 method: DELETE response: body: "" @@ -2718,7 +2553,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:07:31 GMT + - Tue, 11 Feb 2020 13:54:56 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2735,8 +2570,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/902dae7f-302d-4be3-a821-f361b652f308 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc method: DELETE response: body: "" @@ -2748,7 +2583,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:07:31 GMT + - Tue, 11 Feb 2020 13:54:57 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2765,8 +2600,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a381170-057c-41fb-9d04-ee561c45c585 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54d04829-c91a-4b95-b987-1d66592b364f method: DELETE response: body: "" @@ -2778,7 +2613,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:07:31 GMT + - Tue, 11 Feb 2020 13:54:57 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-simple-default.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-simple-default.cassette.yaml index e847eb1155..9d3d8a10cb 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-simple-default.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-simple-default.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:50:33 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -61,18 +383,6 @@ interactions: "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": "Ubuntu is the ideal distribution for scale-out - computing, Ubuntu Server helps you make the most of your infrastructure.", "creation_date": - "2016-03-05T14:51:48.354036+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "id": "c2292eda-bb2a-4399-a226-91f82525b75f", "categories": ["distribution"], - "name": "Ubuntu Trusty", "modification_date": "2019-03-26T14:00:52.034055+00:00", - "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", "modification_date": - "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "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", @@ -155,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -221,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -290,19 +573,7 @@ interactions: "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": "Discourse - is an open source Internet forum software application.", "creation_date": "2016-03-07T21:08:17.200172+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", "id": - "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], "name": - "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", "versions": - [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + 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", @@ -326,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -434,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -470,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -523,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -650,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -681,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -712,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -787,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -826,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69538" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 23 Jan 2020 15:08:42 GMT + - Tue, 11 Feb 2020 13:50:33 GMT Link: - ; rel="last" Server: @@ -844,37 +971,80 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:50:33 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", "server": null, "address": - "51.158.72.139"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "75588e7a-1e08-4e82-960b-c2be7ca13b39", "server": null, "address": + "163.172.140.16"}}' headers: Cache-Control: - no-cache Content-Length: - - "171" + - "172" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 23 Jan 2020 15:08:42 GMT + - Tue, 11 Feb 2020 13:50:34 GMT Location: - - https://cp-par1.scaleway.com/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - https://cp-par1.scaleway.com/ips/75588e7a-1e08-4e82-960b-c2be7ca13b39 Server: - scaleway_api Strict-Transport-Security: @@ -887,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-sweet-grothendieck","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"2c453330-0286-4986-ab36-a7f9aee549fd","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-condescending-buck","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"75588e7a-1e08-4e82-960b-c2be7ca13b39","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -909,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-23T15:08:43.613649+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "048f7ade-d68e-41a1-abf6-ca36517ec1ba", - "dynamic_ip_required": false, "modification_date": "2020-01-23T15:08:43.963246+00:00", - "enable_ipv6": false, "hostname": "cli-srv-sweet-grothendieck", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:34.652432+00:00", + "public_ip": {"dynamic": false, "id": "75588e7a-1e08-4e82-960b-c2be7ca13b39", + "address": "163.172.140.16"}, "private_ip": null, "id": "94de5a1b-173e-4add-8229-b228ce85979b", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:34.900090+00:00", + "enable_ipv6": false, "hostname": "cli-srv-condescending-buck", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -921,29 +1091,29 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-sweet-grothendieck", "protected": + [], "compute_cluster": null, "name": "cli-srv-condescending-buck", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-23T15:08:43.872850+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-23T15:08:43.613649+00:00", "id": - "09c10de9-9221-4455-b5d3-6d46d00d85fd", "volume_type": "l_ssd", "server": {"id": - "048f7ade-d68e-41a1-abf6-ca36517ec1ba", "name": "cli-srv-sweet-grothendieck"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:50:34.877070+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:34.652432+00:00", "id": + "eb531917-8f28-4d09-8bf8-a17b170ed564", "volume_type": "l_ssd", "server": {"id": + "94de5a1b-173e-4add-8229-b228ce85979b", "name": "cli-srv-condescending-buck"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2864" + - "2865" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 23 Jan 2020 15:08:43 GMT + - Tue, 11 Feb 2020 13:50:34 GMT Location: - - https://cp-par1.scaleway.com/servers/048f7ade-d68e-41a1-abf6-ca36517ec1ba + - https://cp-par1.scaleway.com/servers/94de5a1b-173e-4add-8229-b228ce85979b Server: - scaleway_api Strict-Transport-Security: @@ -960,8 +1130,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/048f7ade-d68e-41a1-abf6-ca36517ec1ba + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/94de5a1b-173e-4add-8229-b228ce85979b method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -976,11 +1146,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-23T15:08:43.613649+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "048f7ade-d68e-41a1-abf6-ca36517ec1ba", - "dynamic_ip_required": false, "modification_date": "2020-01-23T15:08:43.963246+00:00", - "enable_ipv6": false, "hostname": "cli-srv-sweet-grothendieck", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:34.652432+00:00", + "public_ip": {"dynamic": false, "id": "75588e7a-1e08-4e82-960b-c2be7ca13b39", + "address": "163.172.140.16"}, "private_ip": null, "id": "94de5a1b-173e-4add-8229-b228ce85979b", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:34.900090+00:00", + "enable_ipv6": false, "hostname": "cli-srv-condescending-buck", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -988,27 +1158,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-sweet-grothendieck", "protected": + [], "compute_cluster": null, "name": "cli-srv-condescending-buck", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-23T15:08:43.872850+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-23T15:08:43.613649+00:00", "id": - "09c10de9-9221-4455-b5d3-6d46d00d85fd", "volume_type": "l_ssd", "server": {"id": - "048f7ade-d68e-41a1-abf6-ca36517ec1ba", "name": "cli-srv-sweet-grothendieck"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:50:34.877070+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:34.652432+00:00", "id": + "eb531917-8f28-4d09-8bf8-a17b170ed564", "volume_type": "l_ssd", "server": {"id": + "94de5a1b-173e-4add-8229-b228ce85979b", "name": "cli-srv-condescending-buck"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2864" + - "2865" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 23 Jan 2020 15:08:43 GMT + - Tue, 11 Feb 2020 13:50:35 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1025,8 +1195,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/048f7ade-d68e-41a1-abf6-ca36517ec1ba + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/94de5a1b-173e-4add-8229-b228ce85979b method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1041,11 +1211,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-23T15:08:43.613649+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "048f7ade-d68e-41a1-abf6-ca36517ec1ba", - "dynamic_ip_required": false, "modification_date": "2020-01-23T15:08:43.963246+00:00", - "enable_ipv6": false, "hostname": "cli-srv-sweet-grothendieck", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:34.652432+00:00", + "public_ip": {"dynamic": false, "id": "75588e7a-1e08-4e82-960b-c2be7ca13b39", + "address": "163.172.140.16"}, "private_ip": null, "id": "94de5a1b-173e-4add-8229-b228ce85979b", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:34.900090+00:00", + "enable_ipv6": false, "hostname": "cli-srv-condescending-buck", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1053,27 +1223,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-sweet-grothendieck", "protected": + [], "compute_cluster": null, "name": "cli-srv-condescending-buck", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-23T15:08:43.872850+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-23T15:08:43.613649+00:00", "id": - "09c10de9-9221-4455-b5d3-6d46d00d85fd", "volume_type": "l_ssd", "server": {"id": - "048f7ade-d68e-41a1-abf6-ca36517ec1ba", "name": "cli-srv-sweet-grothendieck"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:50:34.877070+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:34.652432+00:00", "id": + "eb531917-8f28-4d09-8bf8-a17b170ed564", "volume_type": "l_ssd", "server": {"id": + "94de5a1b-173e-4add-8229-b228ce85979b", "name": "cli-srv-condescending-buck"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2864" + - "2865" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 23 Jan 2020 15:08:43 GMT + - Tue, 11 Feb 2020 13:50:35 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1090,8 +1260,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/048f7ade-d68e-41a1-abf6-ca36517ec1ba + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/94de5a1b-173e-4add-8229-b228ce85979b method: DELETE response: body: "" @@ -1103,7 +1273,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 23 Jan 2020 15:08:43 GMT + - Tue, 11 Feb 2020 13:50:35 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1120,8 +1290,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/75588e7a-1e08-4e82-960b-c2be7ca13b39 method: DELETE response: body: "" @@ -1133,7 +1303,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 23 Jan 2020 15:08:44 GMT + - Tue, 11 Feb 2020 13:50:35 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1150,8 +1320,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/09c10de9-9221-4455-b5d3-6d46d00d85fd + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb531917-8f28-4d09-8bf8-a17b170ed564 method: DELETE response: body: "" @@ -1163,7 +1333,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 23 Jan 2020 15:08:44 GMT + - Tue, 11 Feb 2020 13:50:35 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-simple-default.stdout.golden b/internal/namespaces/instance/v1/testdata/test-create-server-simple-default.stdout.golden index 260220dea3..a3faeb5dad 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-simple-default.stdout.golden +++ b/internal/namespaces/instance/v1/testdata/test-create-server-simple-default.stdout.golden @@ -1,13 +1,13 @@ -id 048f7ade-d68e-41a1-abf6-ca36517ec1ba -name cli-srv-sweet-grothendieck -organization b2593aa3-d0e8-4366-89c3-6e666abe1f6f +id 94de5a1b-173e-4add-8229-b228ce85979b +name cli-srv-condescending-buck +organization aba2d0d0-b01d-4d88-b322-935edc96d0fd allowed-actions.0 poweron allowed-actions.1 backup commercial-type DEV1-S creation-date few seconds ago dynamic-ip-required false enable-ipv6 false -hostname cli-srv-sweet-grothendieck +hostname cli-srv-condescending-buck image.id f974feac-abae-4365-b988-8ec7d1cec10d image.name Ubuntu Bionic Beaver image.arch x86_64 @@ -21,15 +21,15 @@ image.public true image.root-volume dd5f5c10-23b1-4c9c-8445-eb6740957c84 image.state available protected false -public-ip.id 2c453330-0286-4986-ab36-a7f9aee549fd -public-ip.address 51.158.72.139 +public-ip.id 75588e7a-1e08-4e82-960b-c2be7ca13b39 +public-ip.address 163.172.140.16 public-ip.dynamic false modification-date few seconds ago state archived bootscript x86_64 mainline 4.9.93 rev1 boot-type local volumes 1 -security-group.id 980142a3-a959-4aee-8325-91a6ba787439 +security-group.id 49822f6c-1d32-465c-a017-720691d159b2 security-group.name Default security group state-detail arch x86_64 diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-simple-gp1xs.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-simple-gp1xs.cassette.yaml index 1324a2e00d..3508a1b6e2 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-simple-gp1xs.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-simple-gp1xs.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:50:35 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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-17T09:25:30.577144+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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-17T10:50:34.084671+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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-17T10:46:52.315571+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:22 GMT + - Tue, 11 Feb 2020 13:50:35 GMT Link: - ; rel="last" Server: @@ -841,24 +971,67 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:50:35 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "4ff500c6-163a-4079-aff7-923bc2dee5db", "server": null, "address": - "51.158.103.52"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "f9419cd7-b5a1-4b0b-b78a-58d0465b0c72", "server": null, "address": + "51.15.228.107"}}' headers: Cache-Control: - no-cache @@ -869,9 +1042,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:22 GMT + - Tue, 11 Feb 2020 13:50:36 GMT Location: - - https://cp-par1.scaleway.com/ips/4ff500c6-163a-4079-aff7-923bc2dee5db + - https://cp-par1.scaleway.com/ips/f9419cd7-b5a1-4b0b-b78a-58d0465b0c72 Server: - scaleway_api Strict-Transport-Security: @@ -884,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-intelligent-euler","commercial_type":"GP1-XS","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"4ff500c6-163a-4079-aff7-923bc2dee5db","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-compassionate-jepsen","commercial_type":"GP1-XS","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"f9419cd7-b5a1-4b0b-b78a-58d0465b0c72","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -906,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T15:16:23.345486+00:00", - "public_ip": {"dynamic": false, "id": "4ff500c6-163a-4079-aff7-923bc2dee5db", - "address": "51.158.103.52"}, "private_ip": null, "id": "f018721d-0f0b-4229-a0a7-ef00cb91d1e8", - "dynamic_ip_required": false, "modification_date": "2020-01-17T15:16:23.752845+00:00", - "enable_ipv6": false, "hostname": "cli-srv-intelligent-euler", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:36.380063+00:00", + "public_ip": {"dynamic": false, "id": "f9419cd7-b5a1-4b0b-b78a-58d0465b0c72", + "address": "51.15.228.107"}, "private_ip": null, "id": "26604729-8783-40e8-871e-1a39764dd863", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:36.617587+00:00", + "enable_ipv6": false, "hostname": "cli-srv-compassionate-jepsen", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -918,29 +1091,29 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "GP1-XS", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-intelligent-euler", "protected": + [], "compute_cluster": null, "name": "cli-srv-compassionate-jepsen", "protected": false, "volumes": {"0": {"size": 150000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-17T15:16:23.682070+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T15:16:23.345486+00:00", "id": - "97ab98a0-6c0d-4825-bad1-0d785157dbbd", "volume_type": "l_ssd", "server": {"id": - "f018721d-0f0b-4229-a0a7-ef00cb91d1e8", "name": "cli-srv-intelligent-euler"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:50:36.606684+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:36.380063+00:00", "id": + "6cf272de-41aa-47f7-b1ed-e1c991376250", "volume_type": "l_ssd", "server": {"id": + "26604729-8783-40e8-871e-1a39764dd863", "name": "cli-srv-compassionate-jepsen"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2862" + - "2871" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:23 GMT + - Tue, 11 Feb 2020 13:50:36 GMT Location: - - https://cp-par1.scaleway.com/servers/f018721d-0f0b-4229-a0a7-ef00cb91d1e8 + - https://cp-par1.scaleway.com/servers/26604729-8783-40e8-871e-1a39764dd863 Server: - scaleway_api Strict-Transport-Security: @@ -957,8 +1130,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f018721d-0f0b-4229-a0a7-ef00cb91d1e8 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/26604729-8783-40e8-871e-1a39764dd863 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -973,11 +1146,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T15:16:23.345486+00:00", - "public_ip": {"dynamic": false, "id": "4ff500c6-163a-4079-aff7-923bc2dee5db", - "address": "51.158.103.52"}, "private_ip": null, "id": "f018721d-0f0b-4229-a0a7-ef00cb91d1e8", - "dynamic_ip_required": false, "modification_date": "2020-01-17T15:16:23.752845+00:00", - "enable_ipv6": false, "hostname": "cli-srv-intelligent-euler", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:36.380063+00:00", + "public_ip": {"dynamic": false, "id": "f9419cd7-b5a1-4b0b-b78a-58d0465b0c72", + "address": "51.15.228.107"}, "private_ip": null, "id": "26604729-8783-40e8-871e-1a39764dd863", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:36.617587+00:00", + "enable_ipv6": false, "hostname": "cli-srv-compassionate-jepsen", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -985,27 +1158,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "GP1-XS", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-intelligent-euler", "protected": + [], "compute_cluster": null, "name": "cli-srv-compassionate-jepsen", "protected": false, "volumes": {"0": {"size": 150000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-17T15:16:23.682070+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T15:16:23.345486+00:00", "id": - "97ab98a0-6c0d-4825-bad1-0d785157dbbd", "volume_type": "l_ssd", "server": {"id": - "f018721d-0f0b-4229-a0a7-ef00cb91d1e8", "name": "cli-srv-intelligent-euler"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:50:36.606684+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:36.380063+00:00", "id": + "6cf272de-41aa-47f7-b1ed-e1c991376250", "volume_type": "l_ssd", "server": {"id": + "26604729-8783-40e8-871e-1a39764dd863", "name": "cli-srv-compassionate-jepsen"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2862" + - "2871" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:23 GMT + - Tue, 11 Feb 2020 13:50:36 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1022,8 +1195,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f018721d-0f0b-4229-a0a7-ef00cb91d1e8 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/26604729-8783-40e8-871e-1a39764dd863 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1038,11 +1211,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T15:16:23.345486+00:00", - "public_ip": {"dynamic": false, "id": "4ff500c6-163a-4079-aff7-923bc2dee5db", - "address": "51.158.103.52"}, "private_ip": null, "id": "f018721d-0f0b-4229-a0a7-ef00cb91d1e8", - "dynamic_ip_required": false, "modification_date": "2020-01-17T15:16:23.752845+00:00", - "enable_ipv6": false, "hostname": "cli-srv-intelligent-euler", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:36.380063+00:00", + "public_ip": {"dynamic": false, "id": "f9419cd7-b5a1-4b0b-b78a-58d0465b0c72", + "address": "51.15.228.107"}, "private_ip": null, "id": "26604729-8783-40e8-871e-1a39764dd863", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:36.617587+00:00", + "enable_ipv6": false, "hostname": "cli-srv-compassionate-jepsen", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1050,27 +1223,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "GP1-XS", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-intelligent-euler", "protected": + [], "compute_cluster": null, "name": "cli-srv-compassionate-jepsen", "protected": false, "volumes": {"0": {"size": 150000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-17T15:16:23.682070+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T15:16:23.345486+00:00", "id": - "97ab98a0-6c0d-4825-bad1-0d785157dbbd", "volume_type": "l_ssd", "server": {"id": - "f018721d-0f0b-4229-a0a7-ef00cb91d1e8", "name": "cli-srv-intelligent-euler"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:50:36.606684+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:36.380063+00:00", "id": + "6cf272de-41aa-47f7-b1ed-e1c991376250", "volume_type": "l_ssd", "server": {"id": + "26604729-8783-40e8-871e-1a39764dd863", "name": "cli-srv-compassionate-jepsen"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2862" + - "2871" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:23 GMT + - Tue, 11 Feb 2020 13:50:36 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1087,8 +1260,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f018721d-0f0b-4229-a0a7-ef00cb91d1e8 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/26604729-8783-40e8-871e-1a39764dd863 method: DELETE response: body: "" @@ -1100,7 +1273,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:24 GMT + - Tue, 11 Feb 2020 13:50:36 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1117,8 +1290,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4ff500c6-163a-4079-aff7-923bc2dee5db + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f9419cd7-b5a1-4b0b-b78a-58d0465b0c72 method: DELETE response: body: "" @@ -1130,7 +1303,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:24 GMT + - Tue, 11 Feb 2020 13:50:36 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1147,8 +1320,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/97ab98a0-6c0d-4825-bad1-0d785157dbbd + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6cf272de-41aa-47f7-b1ed-e1c991376250 method: DELETE response: body: "" @@ -1160,7 +1333,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:24 GMT + - Tue, 11 Feb 2020 13:50:37 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-simple-image-uuid.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-simple-image-uuid.cassette.yaml index 7117fb1628..2ae06feb3b 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-simple-image-uuid.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-simple-image-uuid.cassette.yaml @@ -2,32 +2,397 @@ version: 1 interactions: - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:52:00 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:52:00 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "902dae7f-302d-4be3-a821-f361b652f308", "server": null, "address": - "51.15.134.93"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' headers: Cache-Control: - no-cache Content-Length: - - "170" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:12:29 GMT + - Tue, 11 Feb 2020 13:52:00 GMT Location: - - https://cp-par1.scaleway.com/ips/902dae7f-302d-4be3-a821-f361b652f308 + - https://cp-par1.scaleway.com/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc Server: - scaleway_api Strict-Transport-Security: @@ -40,13 +405,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-kind-jones","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"902dae7f-302d-4be3-a821-f361b652f308","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-interesting-murdock","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"7f7e5c46-ed0a-425f-8d43-d0cfd77386dc","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -62,11 +427,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:12:29.669872+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "17fe77d4-bb58-4a96-abee-b3d4d87d5a44", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:12:30.013385+00:00", - "enable_ipv6": false, "hostname": "cli-srv-kind-jones", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:01.324219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "aea54d7d-2244-4fcc-afd0-097096e6fba1", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:01.576573+00:00", + "enable_ipv6": false, "hostname": "cli-srv-interesting-murdock", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -74,27 +439,29 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-kind-jones", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-24T13:12:29.943744+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:12:29.669872+00:00", "id": - "06f9d7d6-613d-44bc-89a1-c12965bbbcab", "volume_type": "l_ssd", "server": {"id": - "17fe77d4-bb58-4a96-abee-b3d4d87d5a44", "name": "cli-srv-kind-jones"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + [], "compute_cluster": null, "name": "cli-srv-interesting-murdock", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:52:01.565254+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:01.324219+00:00", "id": + "5e1f14d9-7e70-4746-bdfb-3cdaab79299d", "volume_type": "l_ssd", "server": {"id": + "aea54d7d-2244-4fcc-afd0-097096e6fba1", "name": "cli-srv-interesting-murdock"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2839" + - "2869" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:12:29 GMT + - Tue, 11 Feb 2020 13:52:01 GMT Location: - - https://cp-par1.scaleway.com/servers/17fe77d4-bb58-4a96-abee-b3d4d87d5a44 + - https://cp-par1.scaleway.com/servers/aea54d7d-2244-4fcc-afd0-097096e6fba1 Server: - scaleway_api Strict-Transport-Security: @@ -111,8 +478,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/17fe77d4-bb58-4a96-abee-b3d4d87d5a44 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aea54d7d-2244-4fcc-afd0-097096e6fba1 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -127,11 +494,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:12:29.669872+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "17fe77d4-bb58-4a96-abee-b3d4d87d5a44", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:12:30.013385+00:00", - "enable_ipv6": false, "hostname": "cli-srv-kind-jones", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:01.324219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "aea54d7d-2244-4fcc-afd0-097096e6fba1", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:01.576573+00:00", + "enable_ipv6": false, "hostname": "cli-srv-interesting-murdock", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -139,25 +506,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-kind-jones", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-24T13:12:29.943744+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:12:29.669872+00:00", "id": - "06f9d7d6-613d-44bc-89a1-c12965bbbcab", "volume_type": "l_ssd", "server": {"id": - "17fe77d4-bb58-4a96-abee-b3d4d87d5a44", "name": "cli-srv-kind-jones"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + [], "compute_cluster": null, "name": "cli-srv-interesting-murdock", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:52:01.565254+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:01.324219+00:00", "id": + "5e1f14d9-7e70-4746-bdfb-3cdaab79299d", "volume_type": "l_ssd", "server": {"id": + "aea54d7d-2244-4fcc-afd0-097096e6fba1", "name": "cli-srv-interesting-murdock"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2839" + - "2869" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:12:30 GMT + - Tue, 11 Feb 2020 13:52:01 GMT Server: - scaleway_api Strict-Transport-Security: @@ -174,8 +543,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/17fe77d4-bb58-4a96-abee-b3d4d87d5a44 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aea54d7d-2244-4fcc-afd0-097096e6fba1 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -190,11 +559,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T13:12:29.669872+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "17fe77d4-bb58-4a96-abee-b3d4d87d5a44", - "dynamic_ip_required": false, "modification_date": "2020-01-24T13:12:30.013385+00:00", - "enable_ipv6": false, "hostname": "cli-srv-kind-jones", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:01.324219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "aea54d7d-2244-4fcc-afd0-097096e6fba1", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:01.576573+00:00", + "enable_ipv6": false, "hostname": "cli-srv-interesting-murdock", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -202,25 +571,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-kind-jones", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-24T13:12:29.943744+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T13:12:29.669872+00:00", "id": - "06f9d7d6-613d-44bc-89a1-c12965bbbcab", "volume_type": "l_ssd", "server": {"id": - "17fe77d4-bb58-4a96-abee-b3d4d87d5a44", "name": "cli-srv-kind-jones"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + [], "compute_cluster": null, "name": "cli-srv-interesting-murdock", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:52:01.565254+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:01.324219+00:00", "id": + "5e1f14d9-7e70-4746-bdfb-3cdaab79299d", "volume_type": "l_ssd", "server": {"id": + "aea54d7d-2244-4fcc-afd0-097096e6fba1", "name": "cli-srv-interesting-murdock"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2839" + - "2869" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:12:30 GMT + - Tue, 11 Feb 2020 13:52:01 GMT Server: - scaleway_api Strict-Transport-Security: @@ -237,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/17fe77d4-bb58-4a96-abee-b3d4d87d5a44 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aea54d7d-2244-4fcc-afd0-097096e6fba1 method: DELETE response: body: "" @@ -250,7 +621,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:12:30 GMT + - Tue, 11 Feb 2020 13:52:01 GMT Server: - scaleway_api Strict-Transport-Security: @@ -267,8 +638,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/902dae7f-302d-4be3-a821-f361b652f308 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc method: DELETE response: body: "" @@ -280,7 +651,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:12:30 GMT + - Tue, 11 Feb 2020 13:52:01 GMT Server: - scaleway_api Strict-Transport-Security: @@ -297,8 +668,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/06f9d7d6-613d-44bc-89a1-c12965bbbcab + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5e1f14d9-7e70-4746-bdfb-3cdaab79299d method: DELETE response: body: "" @@ -310,7 +681,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 13:12:30 GMT + - Tue, 11 Feb 2020 13:52:01 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-simple-tags.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-simple-tags.cassette.yaml index cb0aaff6ca..33ca37524c 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-simple-tags.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-simple-tags.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:52:02 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -61,18 +383,6 @@ interactions: "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": "Ubuntu is the ideal distribution for scale-out - computing, Ubuntu Server helps you make the most of your infrastructure.", "creation_date": - "2016-03-05T14:51:48.354036+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "id": "c2292eda-bb2a-4399-a226-91f82525b75f", "categories": ["distribution"], - "name": "Ubuntu Trusty", "modification_date": "2019-03-26T14:00:52.034055+00:00", - "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", "modification_date": - "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "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", @@ -155,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -221,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -290,19 +573,7 @@ interactions: "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": "Discourse - is an open source Internet forum software application.", "creation_date": "2016-03-07T21:08:17.200172+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", "id": - "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], "name": - "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", "versions": - [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + 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", @@ -326,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -434,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -470,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -523,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -650,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -681,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -712,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -787,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -826,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69538" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:55:54 GMT + - Tue, 11 Feb 2020 13:52:02 GMT Link: - ; rel="last" Server: @@ -844,37 +971,80 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:52:02 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", "server": null, "address": - "51.158.72.139"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' headers: Cache-Control: - no-cache Content-Length: - - "171" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:55:54 GMT + - Tue, 11 Feb 2020 13:52:02 GMT Location: - - https://cp-par1.scaleway.com/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - https://cp-par1.scaleway.com/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc Server: - scaleway_api Strict-Transport-Security: @@ -887,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-silly-yalow","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"2c453330-0286-4986-ab36-a7f9aee549fd","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f","tags":["prod","blue"]}' + body: '{"name":"cli-srv-thirsty-torvalds","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"7f7e5c46-ed0a-425f-8d43-d0cfd77386dc","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd","tags":["prod","blue"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -909,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T10:55:55.241596+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "22108ab1-36d9-4d1b-b7e0-3aeef925af7f", - "dynamic_ip_required": false, "modification_date": "2020-01-24T10:55:55.576255+00:00", - "enable_ipv6": false, "hostname": "cli-srv-silly-yalow", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:02.967116+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "90214a09-6618-4422-abef-9cdc10e8448d", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:03.255171+00:00", + "enable_ipv6": false, "hostname": "cli-srv-thirsty-torvalds", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -921,28 +1091,29 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": ["prod", "blue"], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-silly-yalow", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-thirsty-torvalds", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T10:55:55.512209+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:55:55.241596+00:00", "id": - "d738df03-3cf8-40ed-9981-0ecfec94150c", "volume_type": "l_ssd", "server": {"id": - "22108ab1-36d9-4d1b-b7e0-3aeef925af7f", "name": "cli-srv-silly-yalow"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "2020-02-11T13:52:03.242525+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:02.967116+00:00", "id": + "392faeb9-be4b-4ef3-bff0-c75dbde29e05", "volume_type": "l_ssd", "server": {"id": + "90214a09-6618-4422-abef-9cdc10e8448d", "name": "cli-srv-thirsty-torvalds"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2857" + - "2874" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:55:55 GMT + - Tue, 11 Feb 2020 13:52:03 GMT Location: - - https://cp-par1.scaleway.com/servers/22108ab1-36d9-4d1b-b7e0-3aeef925af7f + - https://cp-par1.scaleway.com/servers/90214a09-6618-4422-abef-9cdc10e8448d Server: - scaleway_api Strict-Transport-Security: @@ -959,8 +1130,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22108ab1-36d9-4d1b-b7e0-3aeef925af7f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/90214a09-6618-4422-abef-9cdc10e8448d method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -975,11 +1146,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T10:55:55.241596+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "22108ab1-36d9-4d1b-b7e0-3aeef925af7f", - "dynamic_ip_required": false, "modification_date": "2020-01-24T10:55:55.576255+00:00", - "enable_ipv6": false, "hostname": "cli-srv-silly-yalow", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:02.967116+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "90214a09-6618-4422-abef-9cdc10e8448d", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:03.255171+00:00", + "enable_ipv6": false, "hostname": "cli-srv-thirsty-torvalds", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -987,26 +1158,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": ["prod", "blue"], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-silly-yalow", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-thirsty-torvalds", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T10:55:55.512209+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:55:55.241596+00:00", "id": - "d738df03-3cf8-40ed-9981-0ecfec94150c", "volume_type": "l_ssd", "server": {"id": - "22108ab1-36d9-4d1b-b7e0-3aeef925af7f", "name": "cli-srv-silly-yalow"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "2020-02-11T13:52:03.242525+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:02.967116+00:00", "id": + "392faeb9-be4b-4ef3-bff0-c75dbde29e05", "volume_type": "l_ssd", "server": {"id": + "90214a09-6618-4422-abef-9cdc10e8448d", "name": "cli-srv-thirsty-torvalds"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2857" + - "2874" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:55:55 GMT + - Tue, 11 Feb 2020 13:52:03 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1023,8 +1195,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22108ab1-36d9-4d1b-b7e0-3aeef925af7f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/90214a09-6618-4422-abef-9cdc10e8448d method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1039,11 +1211,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T10:55:55.241596+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "22108ab1-36d9-4d1b-b7e0-3aeef925af7f", - "dynamic_ip_required": false, "modification_date": "2020-01-24T10:55:55.576255+00:00", - "enable_ipv6": false, "hostname": "cli-srv-silly-yalow", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:02.967116+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "90214a09-6618-4422-abef-9cdc10e8448d", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:03.255171+00:00", + "enable_ipv6": false, "hostname": "cli-srv-thirsty-torvalds", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1051,26 +1223,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": ["prod", "blue"], "arch": "x86_64", - "extra_networks": [], "compute_cluster": null, "name": "cli-srv-silly-yalow", + "extra_networks": [], "compute_cluster": null, "name": "cli-srv-thirsty-torvalds", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T10:55:55.512209+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:55:55.241596+00:00", "id": - "d738df03-3cf8-40ed-9981-0ecfec94150c", "volume_type": "l_ssd", "server": {"id": - "22108ab1-36d9-4d1b-b7e0-3aeef925af7f", "name": "cli-srv-silly-yalow"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "2020-02-11T13:52:03.242525+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:02.967116+00:00", "id": + "392faeb9-be4b-4ef3-bff0-c75dbde29e05", "volume_type": "l_ssd", "server": {"id": + "90214a09-6618-4422-abef-9cdc10e8448d", "name": "cli-srv-thirsty-torvalds"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2857" + - "2874" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:55:55 GMT + - Tue, 11 Feb 2020 13:52:03 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1087,8 +1260,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22108ab1-36d9-4d1b-b7e0-3aeef925af7f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/90214a09-6618-4422-abef-9cdc10e8448d method: DELETE response: body: "" @@ -1100,7 +1273,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:55:55 GMT + - Tue, 11 Feb 2020 13:52:03 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1117,8 +1290,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc method: DELETE response: body: "" @@ -1130,7 +1303,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:55:55 GMT + - Tue, 11 Feb 2020 13:52:03 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1147,8 +1320,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d738df03-3cf8-40ed-9981-0ecfec94150c + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/392faeb9-be4b-4ef3-bff0-c75dbde29e05 method: DELETE response: body: "" @@ -1160,7 +1333,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:55:55 GMT + - Tue, 11 Feb 2020 13:52:03 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-simple-with-bootscript.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-simple-with-bootscript.cassette.yaml index 41d5e1569f..630f976473 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-simple-with-bootscript.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-simple-with-bootscript.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:51:58 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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-17T09:25:30.577144+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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-17T10:50:34.084671+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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-17T10:46:52.315571+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:26 GMT + - Tue, 11 Feb 2020 13:51:59 GMT Link: - ; rel="last" Server: @@ -841,7 +971,50 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:51:59 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" @@ -850,7 +1023,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/bootscripts/eb760e3c-30d8-49a3-b3ad-ad10c3aa440b method: GET response: @@ -870,7 +1043,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:26 GMT + - Tue, 11 Feb 2020 13:51:59 GMT Server: - scaleway_api Strict-Transport-Security: @@ -883,32 +1056,32 @@ interactions: code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "4ff500c6-163a-4079-aff7-923bc2dee5db", "server": null, "address": - "51.158.103.52"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' headers: Cache-Control: - no-cache Content-Length: - - "171" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:26 GMT + - Tue, 11 Feb 2020 13:51:59 GMT Location: - - https://cp-par1.scaleway.com/ips/4ff500c6-163a-4079-aff7-923bc2dee5db + - https://cp-par1.scaleway.com/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc Server: - scaleway_api Strict-Transport-Security: @@ -921,13 +1094,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-strange-varahamihira","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"4ff500c6-163a-4079-aff7-923bc2dee5db","boot_type":"local","bootscript":"eb760e3c-30d8-49a3-b3ad-ad10c3aa440b","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-laughing-agnesi","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"7f7e5c46-ed0a-425f-8d43-d0cfd77386dc","boot_type":"local","bootscript":"eb760e3c-30d8-49a3-b3ad-ad10c3aa440b","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -943,11 +1116,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T15:16:26.836862+00:00", - "public_ip": {"dynamic": false, "id": "4ff500c6-163a-4079-aff7-923bc2dee5db", - "address": "51.158.103.52"}, "private_ip": null, "id": "b8a78bb2-0d32-4350-8293-9a4f0fa872ae", - "dynamic_ip_required": false, "modification_date": "2020-01-17T15:16:27.142775+00:00", - "enable_ipv6": false, "hostname": "cli-srv-strange-varahamihira", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:51:59.909256+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "c10df408-0677-40ed-9d35-0debc673eb0f", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:00.158731+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-agnesi", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.14-latest/vmlinuz", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -955,29 +1128,29 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "eb760e3c-30d8-49a3-b3ad-ad10c3aa440b", "public": true}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-strange-varahamihira", "protected": + [], "compute_cluster": null, "name": "cli-srv-laughing-agnesi", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-17T15:16:27.068565+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T15:16:26.836862+00:00", "id": - "9744769e-7263-4284-acff-26306e9e4748", "volume_type": "l_ssd", "server": {"id": - "b8a78bb2-0d32-4350-8293-9a4f0fa872ae", "name": "cli-srv-strange-varahamihira"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:52:00.143590+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:51:59.909256+00:00", "id": + "39b5a0a1-1d91-4166-bed8-6ce885c44034", "volume_type": "l_ssd", "server": {"id": + "c10df408-0677-40ed-9d35-0debc673eb0f", "name": "cli-srv-laughing-agnesi"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2858" + - "2845" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:26 GMT + - Tue, 11 Feb 2020 13:51:59 GMT Location: - - https://cp-par1.scaleway.com/servers/b8a78bb2-0d32-4350-8293-9a4f0fa872ae + - https://cp-par1.scaleway.com/servers/c10df408-0677-40ed-9d35-0debc673eb0f Server: - scaleway_api Strict-Transport-Security: @@ -994,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8a78bb2-0d32-4350-8293-9a4f0fa872ae + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c10df408-0677-40ed-9d35-0debc673eb0f method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1010,11 +1183,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T15:16:26.836862+00:00", - "public_ip": {"dynamic": false, "id": "4ff500c6-163a-4079-aff7-923bc2dee5db", - "address": "51.158.103.52"}, "private_ip": null, "id": "b8a78bb2-0d32-4350-8293-9a4f0fa872ae", - "dynamic_ip_required": false, "modification_date": "2020-01-17T15:16:27.142775+00:00", - "enable_ipv6": false, "hostname": "cli-srv-strange-varahamihira", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:51:59.909256+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "c10df408-0677-40ed-9d35-0debc673eb0f", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:00.158731+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-agnesi", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.14-latest/vmlinuz", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1022,27 +1195,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "eb760e3c-30d8-49a3-b3ad-ad10c3aa440b", "public": true}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-strange-varahamihira", "protected": + [], "compute_cluster": null, "name": "cli-srv-laughing-agnesi", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-17T15:16:27.068565+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T15:16:26.836862+00:00", "id": - "9744769e-7263-4284-acff-26306e9e4748", "volume_type": "l_ssd", "server": {"id": - "b8a78bb2-0d32-4350-8293-9a4f0fa872ae", "name": "cli-srv-strange-varahamihira"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:52:00.143590+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:51:59.909256+00:00", "id": + "39b5a0a1-1d91-4166-bed8-6ce885c44034", "volume_type": "l_ssd", "server": {"id": + "c10df408-0677-40ed-9d35-0debc673eb0f", "name": "cli-srv-laughing-agnesi"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2858" + - "2845" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:27 GMT + - Tue, 11 Feb 2020 13:52:00 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1059,8 +1232,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8a78bb2-0d32-4350-8293-9a4f0fa872ae + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c10df408-0677-40ed-9d35-0debc673eb0f method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1075,11 +1248,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T15:16:26.836862+00:00", - "public_ip": {"dynamic": false, "id": "4ff500c6-163a-4079-aff7-923bc2dee5db", - "address": "51.158.103.52"}, "private_ip": null, "id": "b8a78bb2-0d32-4350-8293-9a4f0fa872ae", - "dynamic_ip_required": false, "modification_date": "2020-01-17T15:16:27.142775+00:00", - "enable_ipv6": false, "hostname": "cli-srv-strange-varahamihira", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:51:59.909256+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "c10df408-0677-40ed-9d35-0debc673eb0f", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:00.158731+00:00", + "enable_ipv6": false, "hostname": "cli-srv-laughing-agnesi", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.14-latest/vmlinuz", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1087,27 +1260,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "eb760e3c-30d8-49a3-b3ad-ad10c3aa440b", "public": true}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-strange-varahamihira", "protected": + [], "compute_cluster": null, "name": "cli-srv-laughing-agnesi", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-17T15:16:27.068565+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T15:16:26.836862+00:00", "id": - "9744769e-7263-4284-acff-26306e9e4748", "volume_type": "l_ssd", "server": {"id": - "b8a78bb2-0d32-4350-8293-9a4f0fa872ae", "name": "cli-srv-strange-varahamihira"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:52:00.143590+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:51:59.909256+00:00", "id": + "39b5a0a1-1d91-4166-bed8-6ce885c44034", "volume_type": "l_ssd", "server": {"id": + "c10df408-0677-40ed-9d35-0debc673eb0f", "name": "cli-srv-laughing-agnesi"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2858" + - "2845" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:27 GMT + - Tue, 11 Feb 2020 13:52:00 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1124,8 +1297,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8a78bb2-0d32-4350-8293-9a4f0fa872ae + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c10df408-0677-40ed-9d35-0debc673eb0f method: DELETE response: body: "" @@ -1137,7 +1310,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:27 GMT + - Tue, 11 Feb 2020 13:52:00 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1154,8 +1327,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4ff500c6-163a-4079-aff7-923bc2dee5db + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc method: DELETE response: body: "" @@ -1167,7 +1340,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:27 GMT + - Tue, 11 Feb 2020 13:52:00 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1184,8 +1357,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9744769e-7263-4284-acff-26306e9e4748 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/39b5a0a1-1d91-4166-bed8-6ce885c44034 method: DELETE response: body: "" @@ -1197,7 +1370,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:27 GMT + - Tue, 11 Feb 2020 13:52:00 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-simple-with-name.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-simple-with-name.cassette.yaml index 2fb4f353a0..060ff429e7 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-simple-with-name.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-simple-with-name.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:50:37 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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-17T09:25:30.577144+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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-17T10:50:34.084671+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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-17T10:46:52.315571+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:24 GMT + - Tue, 11 Feb 2020 13:50:37 GMT Link: - ; rel="last" Server: @@ -841,37 +971,80 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:50:37 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "4ff500c6-163a-4079-aff7-923bc2dee5db", "server": null, "address": - "51.158.103.52"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "8b315b0b-fa55-487e-8342-b5ad1f9456e8", "server": null, "address": + "51.158.99.40"}}' headers: Cache-Control: - no-cache Content-Length: - - "171" + - "170" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:24 GMT + - Tue, 11 Feb 2020 13:50:37 GMT Location: - - https://cp-par1.scaleway.com/ips/4ff500c6-163a-4079-aff7-923bc2dee5db + - https://cp-par1.scaleway.com/ips/8b315b0b-fa55-487e-8342-b5ad1f9456e8 Server: - scaleway_api Strict-Transport-Security: @@ -884,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"yo","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"4ff500c6-163a-4079-aff7-923bc2dee5db","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"yo","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"8b315b0b-fa55-487e-8342-b5ad1f9456e8","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -906,10 +1079,10 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T15:16:25.264034+00:00", - "public_ip": {"dynamic": false, "id": "4ff500c6-163a-4079-aff7-923bc2dee5db", - "address": "51.158.103.52"}, "private_ip": null, "id": "6427d42e-e84f-4db0-bd6f-952dfc3171c4", - "dynamic_ip_required": false, "modification_date": "2020-01-17T15:16:25.541169+00:00", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:37.971828+00:00", + "public_ip": {"dynamic": false, "id": "8b315b0b-fa55-487e-8342-b5ad1f9456e8", + "address": "51.158.99.40"}, "private_ip": null, "id": "00484c39-9fc2-45d6-be46-ff1b46b77510", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:38.210462+00:00", "enable_ipv6": false, "hostname": "yo", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": @@ -920,25 +1093,25 @@ interactions: "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": "yo", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T15:16:25.477504+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T15:16:25.264034+00:00", "id": - "c9e99e45-539e-41bc-bac1-51f22422445c", "volume_type": "l_ssd", "server": {"id": - "6427d42e-e84f-4db0-bd6f-952dfc3171c4", "name": "yo"}}}, "security_group": {"id": - "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:50:38.199830+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:37.971828+00:00", "id": + "0d2b28bc-c1ce-484b-aa15-efec27cb90ba", "volume_type": "l_ssd", "server": {"id": + "00484c39-9fc2-45d6-be46-ff1b46b77510", "name": "yo"}}}, "security_group": {"id": + "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, "organization": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2792" + - "2791" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:25 GMT + - Tue, 11 Feb 2020 13:50:38 GMT Location: - - https://cp-par1.scaleway.com/servers/6427d42e-e84f-4db0-bd6f-952dfc3171c4 + - https://cp-par1.scaleway.com/servers/00484c39-9fc2-45d6-be46-ff1b46b77510 Server: - scaleway_api Strict-Transport-Security: @@ -955,8 +1128,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6427d42e-e84f-4db0-bd6f-952dfc3171c4 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/00484c39-9fc2-45d6-be46-ff1b46b77510 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -971,10 +1144,10 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T15:16:25.264034+00:00", - "public_ip": {"dynamic": false, "id": "4ff500c6-163a-4079-aff7-923bc2dee5db", - "address": "51.158.103.52"}, "private_ip": null, "id": "6427d42e-e84f-4db0-bd6f-952dfc3171c4", - "dynamic_ip_required": false, "modification_date": "2020-01-17T15:16:25.541169+00:00", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:37.971828+00:00", + "public_ip": {"dynamic": false, "id": "8b315b0b-fa55-487e-8342-b5ad1f9456e8", + "address": "51.158.99.40"}, "private_ip": null, "id": "00484c39-9fc2-45d6-be46-ff1b46b77510", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:38.210462+00:00", "enable_ipv6": false, "hostname": "yo", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": @@ -985,23 +1158,23 @@ interactions: "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": "yo", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T15:16:25.477504+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T15:16:25.264034+00:00", "id": - "c9e99e45-539e-41bc-bac1-51f22422445c", "volume_type": "l_ssd", "server": {"id": - "6427d42e-e84f-4db0-bd6f-952dfc3171c4", "name": "yo"}}}, "security_group": {"id": - "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:50:38.199830+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:37.971828+00:00", "id": + "0d2b28bc-c1ce-484b-aa15-efec27cb90ba", "volume_type": "l_ssd", "server": {"id": + "00484c39-9fc2-45d6-be46-ff1b46b77510", "name": "yo"}}}, "security_group": {"id": + "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, "organization": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2792" + - "2791" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:25 GMT + - Tue, 11 Feb 2020 13:50:38 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1018,8 +1191,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6427d42e-e84f-4db0-bd6f-952dfc3171c4 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/00484c39-9fc2-45d6-be46-ff1b46b77510 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1034,10 +1207,10 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T15:16:25.264034+00:00", - "public_ip": {"dynamic": false, "id": "4ff500c6-163a-4079-aff7-923bc2dee5db", - "address": "51.158.103.52"}, "private_ip": null, "id": "6427d42e-e84f-4db0-bd6f-952dfc3171c4", - "dynamic_ip_required": false, "modification_date": "2020-01-17T15:16:25.541169+00:00", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:37.971828+00:00", + "public_ip": {"dynamic": false, "id": "8b315b0b-fa55-487e-8342-b5ad1f9456e8", + "address": "51.158.99.40"}, "private_ip": null, "id": "00484c39-9fc2-45d6-be46-ff1b46b77510", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:38.210462+00:00", "enable_ipv6": false, "hostname": "yo", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": @@ -1048,23 +1221,23 @@ interactions: "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": "yo", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T15:16:25.477504+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T15:16:25.264034+00:00", "id": - "c9e99e45-539e-41bc-bac1-51f22422445c", "volume_type": "l_ssd", "server": {"id": - "6427d42e-e84f-4db0-bd6f-952dfc3171c4", "name": "yo"}}}, "security_group": {"id": - "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:50:38.199830+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:37.971828+00:00", "id": + "0d2b28bc-c1ce-484b-aa15-efec27cb90ba", "volume_type": "l_ssd", "server": {"id": + "00484c39-9fc2-45d6-be46-ff1b46b77510", "name": "yo"}}}, "security_group": {"id": + "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, "organization": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2792" + - "2791" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:25 GMT + - Tue, 11 Feb 2020 13:50:38 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1081,8 +1254,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6427d42e-e84f-4db0-bd6f-952dfc3171c4 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/00484c39-9fc2-45d6-be46-ff1b46b77510 method: DELETE response: body: "" @@ -1094,7 +1267,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:25 GMT + - Tue, 11 Feb 2020 13:50:38 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1111,8 +1284,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4ff500c6-163a-4079-aff7-923bc2dee5db + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8b315b0b-fa55-487e-8342-b5ad1f9456e8 method: DELETE response: body: "" @@ -1124,7 +1297,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:25 GMT + - Tue, 11 Feb 2020 13:50:38 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1141,8 +1314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c9e99e45-539e-41bc-bac1-51f22422445c + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0d2b28bc-c1ce-484b-aa15-efec27cb90ba method: DELETE response: body: "" @@ -1154,7 +1327,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 15:16:25 GMT + - Tue, 11 Feb 2020 13:50:38 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-simple-with-start.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-simple-with-start.cassette.yaml index 9d3e32545d..d45fa2f952 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-simple-with-start.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-simple-with-start.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:50:38 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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-17T09:25:30.577144+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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-17T10:50:34.084671+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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-17T10:46:52.315571+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:12:49 GMT + - Tue, 11 Feb 2020 13:50:38 GMT Link: - ; rel="last" Server: @@ -841,37 +971,80 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:50:38 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "902dae7f-302d-4be3-a821-f361b652f308", "server": null, "address": - "51.15.134.93"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' headers: Cache-Control: - no-cache Content-Length: - - "170" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:12:49 GMT + - Tue, 11 Feb 2020 13:50:39 GMT Location: - - https://cp-par1.scaleway.com/ips/902dae7f-302d-4be3-a821-f361b652f308 + - https://cp-par1.scaleway.com/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc Server: - scaleway_api Strict-Transport-Security: @@ -884,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-condescending-raman","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"902dae7f-302d-4be3-a821-f361b652f308","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-quirky-elgamal","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"7f7e5c46-ed0a-425f-8d43-d0cfd77386dc","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -906,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:12:50.563482+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:39.917814+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -918,29 +1091,29 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-condescending-raman", "protected": + [], "compute_cluster": null, "name": "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2866" + - "2854" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:12:50 GMT + - Tue, 11 Feb 2020 13:50:39 GMT Location: - - https://cp-par1.scaleway.com/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - https://cp-par1.scaleway.com/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 Server: - scaleway_api Strict-Transport-Security: @@ -959,25 +1132,25 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f/action + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0/action method: POST response: body: '{"task": {"status": "pending", "description": "server_batch_poweron", "href_result": - "/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "terminated_at": null, "href_from": - "/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f/action", "progress": 0, "started_at": - "2020-01-17T16:12:51.157326+00:00", "id": "fad26bfd-d3f6-4328-818f-c140cc08bf64"}}' + "/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0", "terminated_at": null, "href_from": + "/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0/action", "started_at": "2020-02-11T13:50:41.472383+00:00", + "id": "02628c2d-4578-4aea-a7bb-2f3db5f5202e"}}' headers: Content-Length: - - "337" + - "322" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:12:50 GMT + - Tue, 11 Feb 2020 13:50:41 GMT Location: - - https://p10-compute.pv.ocshq.com/tasks/fad26bfd-d3f6-4328-818f-c140cc08bf64 + - https://p10-compute.pv.ocshq.com/tasks/02628c2d-4578-4aea-a7bb-2f3db5f5202e Server: - scaleway_api Strict-Transport-Security: @@ -994,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -1010,11 +1183,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:12:50.688694+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:39.962323+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "starting", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1022,27 +1195,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-condescending-raman", "protected": + [], "compute_cluster": null, "name": "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2888" + - "2876" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:12:50 GMT + - Tue, 11 Feb 2020 13:50:41 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1059,8 +1232,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -1075,40 +1248,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:12:50.688694+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:39.962323+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "starting", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2998" + - "2983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:12:56 GMT + - Tue, 11 Feb 2020 13:50:46 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1125,8 +1298,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -1141,40 +1314,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:12:50.688694+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:39.962323+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "starting", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2998" + - "2983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:13:01 GMT + - Tue, 11 Feb 2020 13:50:51 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1191,8 +1364,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -1207,40 +1380,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:12:50.688694+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:39.962323+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "starting", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2998" + - "2983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:13:06 GMT + - Tue, 11 Feb 2020 13:50:56 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1257,13 +1430,13 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "provisioning node", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + body: '{"server": {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": + "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": @@ -1273,40 +1446,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:12:50.688694+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:58.664632+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "running", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2998" + - "3014" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:13:11 GMT + - Tue, 11 Feb 2020 13:51:02 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1323,13 +1496,13 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "provisioning node", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + body: '{"server": {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": + "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": @@ -1339,40 +1512,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:12:50.688694+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:58.664632+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "running", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2998" + - "3014" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:13:16 GMT + - Tue, 11 Feb 2020 13:51:02 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1389,13 +1562,13 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "provisioning node", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + body: '{"server": {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": + "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": @@ -1405,40 +1578,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:12:50.688694+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "starting", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:50:58.664632+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "running", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2998" + - "3014" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:13:22 GMT + - Tue, 11 Feb 2020 13:51:02 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1451,361 +1624,31 @@ interactions: code: 200 duration: "" - request: - body: "" + body: '{"action":"poweroff"}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "provisioning node", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:12:50.688694+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "starting", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2998" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Fri, 17 Jan 2020 16:13:27 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f - method: GET + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0/action + method: POST response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "provisioning node", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:12:50.688694+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "starting", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' + body: '{"task": {"status": "pending", "description": "server_poweroff", "href_result": + "/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0", "terminated_at": null, "href_from": + "/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0/action", "started_at": "2020-02-11T13:51:02.613761+00:00", + "id": "33c29dee-f28d-4c6a-a7df-bcc757429c0b"}}' headers: - Cache-Control: - - no-cache Content-Length: - - "2998" + - "317" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:13:32 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f - method: GET - response: - body: '{"server": {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", - "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": - "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:37.961524+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "running", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "3029" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 17 Jan 2020 16:13:37 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f - method: GET - response: - body: '{"server": {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", - "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": - "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:37.961524+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "running", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "3029" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 17 Jan 2020 16:13:37 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f - method: GET - response: - body: '{"server": {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", - "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": - "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:37.961524+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "running", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "3029" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 17 Jan 2020 16:13:37 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"action":"poweroff"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f/action - method: POST - response: - body: '{"task": {"status": "pending", "description": "server_poweroff", "href_result": - "/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "terminated_at": null, "href_from": - "/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f/action", "progress": 0, "started_at": - "2020-01-17T16:13:38.952250+00:00", "id": "61069cf9-3fec-4844-b0be-8d89dbdb0c6c"}}' - headers: - Content-Length: - - "332" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 17 Jan 2020 16:13:38 GMT - Location: - - https://p10-compute.pv.ocshq.com/tasks/61069cf9-3fec-4844-b0be-8d89dbdb0c6c + - Tue, 11 Feb 2020 13:51:02 GMT + Location: + - https://p10-compute.pv.ocshq.com/tasks/33c29dee-f28d-4c6a-a7df-bcc757429c0b Server: - scaleway_api Strict-Transport-Security: @@ -1822,272 +1665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "launching poweroff task", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:38.483054+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "3004" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 17 Jan 2020 16:13:38 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "stopping", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:38.483054+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2989" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 17 Jan 2020 16:13:43 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "stopping", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:38.483054+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2989" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 17 Jan 2020 16:13:48 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f - method: GET - response: - body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": - [], "state_detail": "stopping", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", - "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:38.483054+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopping", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", - "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2989" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 17 Jan 2020 16:13:53 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2102,40 +1681,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:38.483054+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:51:02.366734+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2989" + - "2974" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:13:59 GMT + - Tue, 11 Feb 2020 13:51:02 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2152,8 +1731,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2168,40 +1747,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:38.483054+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:51:02.366734+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2989" + - "2974" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:14:04 GMT + - Tue, 11 Feb 2020 13:51:07 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2218,8 +1797,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2234,40 +1813,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:38.483054+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:51:02.366734+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2989" + - "2974" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:14:09 GMT + - Tue, 11 Feb 2020 13:51:12 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2284,8 +1863,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2300,40 +1879,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:38.483054+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:51:02.366734+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2989" + - "2974" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:14:14 GMT + - Tue, 11 Feb 2020 13:51:17 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2350,8 +1929,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2366,40 +1945,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:38.483054+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:51:02.366734+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2989" + - "2974" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:14:19 GMT + - Tue, 11 Feb 2020 13:51:23 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2416,8 +1995,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2432,40 +2011,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:38.483054+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:51:02.366734+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2989" + - "2974" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:14:25 GMT + - Tue, 11 Feb 2020 13:51:28 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2482,8 +2061,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2498,40 +2077,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:38.483054+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:51:02.366734+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2989" + - "2974" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:14:30 GMT + - Tue, 11 Feb 2020 13:51:33 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2548,8 +2127,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2564,40 +2143,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:38.483054+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:51:02.366734+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2989" + - "2974" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:14:35 GMT + - Tue, 11 Feb 2020 13:51:38 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2614,8 +2193,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2630,40 +2209,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:38.483054+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:51:02.366734+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2989" + - "2974" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:14:40 GMT + - Tue, 11 Feb 2020 13:51:43 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2680,8 +2259,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2696,40 +2275,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:38.483054+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:51:02.366734+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2989" + - "2974" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:14:45 GMT + - Tue, 11 Feb 2020 13:51:48 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2746,8 +2325,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["stop_in_place", "backup"], "maintenances": @@ -2762,40 +2341,40 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": "10.68.202.41", "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:13:38.483054+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopping", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": "10.68.6.89", "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:51:02.366734+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "stopping", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", - "node_id": "21", "cluster_id": "37", "zone_id": "par1"}, "boot_type": "local", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "202", + "node_id": "45", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "cli-srv-condescending-raman", "protected": false, "volumes": {"0": {"size": - 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, + "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2989" + - "2974" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:14:50 GMT + - Tue, 11 Feb 2020 13:51:53 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2812,8 +2391,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -2828,11 +2407,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T16:12:50.285540+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", - "dynamic_ip_required": false, "modification_date": "2020-01-17T16:14:54.419759+00:00", - "enable_ipv6": false, "hostname": "cli-srv-condescending-raman", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:50:39.669219+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "81116541-0f94-4b19-abe7-74d9ee90f6a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:51:56.748939+00:00", + "enable_ipv6": false, "hostname": "cli-srv-quirky-elgamal", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -2840,27 +2419,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-condescending-raman", "protected": + [], "compute_cluster": null, "name": "cli-srv-quirky-elgamal", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-17T16:12:50.497085+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-17T16:12:50.285540+00:00", "id": - "052fabb6-b568-4949-a44a-aab5665f0fa6", "volume_type": "l_ssd", "server": {"id": - "edba54e9-ecd1-4c1a-9c65-f40fd7ba929f", "name": "cli-srv-condescending-raman"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:50:39.906266+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:50:39.669219+00:00", "id": + "e8a2890a-d236-4d3c-8421-7eff47f2b960", "volume_type": "l_ssd", "server": {"id": + "81116541-0f94-4b19-abe7-74d9ee90f6a0", "name": "cli-srv-quirky-elgamal"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2866" + - "2854" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:14:55 GMT + - Tue, 11 Feb 2020 13:51:58 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2877,8 +2456,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edba54e9-ecd1-4c1a-9c65-f40fd7ba929f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/81116541-0f94-4b19-abe7-74d9ee90f6a0 method: DELETE response: body: "" @@ -2890,7 +2469,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:14:56 GMT + - Tue, 11 Feb 2020 13:51:58 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2907,8 +2486,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/902dae7f-302d-4be3-a821-f361b652f308 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc method: DELETE response: body: "" @@ -2920,7 +2499,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:14:56 GMT + - Tue, 11 Feb 2020 13:51:58 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2937,8 +2516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/052fabb6-b568-4949-a44a-aab5665f0fa6 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e8a2890a-d236-4d3c-8421-7eff47f2b960 method: DELETE response: body: "" @@ -2950,7 +2529,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 16:14:56 GMT + - Tue, 11 Feb 2020 13:51:58 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-volumes-valid-additional-block-volumes.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-volumes-valid-additional-block-volumes.cassette.yaml index e92186f1d3..5865191758 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-volumes-valid-additional-block-volumes.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-volumes-valid-additional-block-volumes.cassette.yaml @@ -6,855 +6,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; 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": - ["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": "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": "Ubuntu is the ideal distribution for scale-out - computing, Ubuntu Server helps you make the most of your infrastructure.", "creation_date": - "2016-03-05T14:51:48.354036+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "id": "c2292eda-bb2a-4399-a226-91f82525b75f", "categories": ["distribution"], - "name": "Ubuntu Trusty", "modification_date": "2019-03-26T14:00:52.034055+00:00", - "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", "modification_date": - "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": "Discourse - is an open source Internet forum software application.", "creation_date": "2016-03-07T21:08:17.200172+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", "id": - "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], "name": - "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", "versions": - [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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 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": "2019-03-26T14:00:53.253241+00:00", - "versions": [{"creation_date": "2019-03-06T18:03:45.146468+00:00", "modification_date": - "2019-03-06T18:03:45.146468+00:00", "id": "47d58f71-8382-48d1-88cd-75e5f1ed7df6", - "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": "5f96d290-88cb-4262-845e-578d0aa63201", - "zone": "par1"}], "name": "2019-03-06T18:03:45.081159"}], "current_public_version": - "47d58f71-8382-48d1-88cd-75e5f1ed7df6", "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": "2019-03-26T14:00:50.353326+00:00", - "versions": [{"creation_date": "2019-03-06T18:05:49.119145+00:00", "modification_date": - "2019-03-06T18:05:49.119145+00:00", "id": "905865bf-e34c-46b0-b7e2-5e11922e6511", - "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": "6bd566a1-c5b6-4c59-be37-752e1491ce1f", - "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": - "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": - {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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"}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "69538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2020 10:36:47 GMT - Link: - - ; rel="last" - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Total-Count: - - "46" - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; 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.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers method: GET response: body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": @@ -1148,15 +301,667 @@ interactions: Cache-Control: - no-cache Content-Length: - - "23699" + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:52:07 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; 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": + ["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": "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 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": "2019-03-26T14:00:53.253241+00:00", + "versions": [{"creation_date": "2019-03-06T18:03:45.146468+00:00", "modification_date": + "2019-03-06T18:03:45.146468+00:00", "id": "47d58f71-8382-48d1-88cd-75e5f1ed7df6", + "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": "5f96d290-88cb-4262-845e-578d0aa63201", + "zone": "par1"}], "name": "2019-03-06T18:03:45.081159"}], "current_public_version": + "47d58f71-8382-48d1-88cd-75e5f1ed7df6", "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": "2019-03-26T14:00:50.353326+00:00", + "versions": [{"creation_date": "2019-03-06T18:05:49.119145+00:00", "modification_date": + "2019-03-06T18:05:49.119145+00:00", "id": "905865bf-e34c-46b0-b7e2-5e11922e6511", + "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": "6bd566a1-c5b6-4c59-be37-752e1491ce1f", + "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": + "905865bf-e34c-46b0-b7e2-5e11922e6511", "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"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:36:47 GMT + - Tue, 11 Feb 2020 13:52:07 GMT Link: - - ; rel="last" + - ; rel="last" Server: - scaleway_api Strict-Transport-Security: @@ -1166,37 +971,80 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "32" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:52:07 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", "server": null, "address": - "51.158.72.139"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' headers: Cache-Control: - no-cache Content-Length: - - "171" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:36:49 GMT + - Tue, 11 Feb 2020 13:52:07 GMT Location: - - https://cp-par1.scaleway.com/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - https://cp-par1.scaleway.com/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc Server: - scaleway_api Strict-Transport-Security: @@ -1209,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-friendly-joliot","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","volumes":{"1":{"name":"cli-srv-friendly-joliot-1","size":1000000000,"volume_type":"b_ssd","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"},"2":{"name":"cli-srv-friendly-joliot-2","size":5000000000,"volume_type":"b_ssd","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"},"3":{"name":"cli-srv-friendly-joliot-3","size":10000000000,"volume_type":"b_ssd","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}},"public_ip":"2c453330-0286-4986-ab36-a7f9aee549fd","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-goofy-perlman","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","volumes":{"1":{"name":"cli-srv-goofy-perlman-1","size":1000000000,"volume_type":"b_ssd","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"},"2":{"name":"cli-srv-goofy-perlman-2","size":5000000000,"volume_type":"b_ssd","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"},"3":{"name":"cli-srv-goofy-perlman-3","size":10000000000,"volume_type":"b_ssd","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}},"public_ip":"7f7e5c46-ed0a-425f-8d43-d0cfd77386dc","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -1231,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T10:36:49.872077+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "cb040bb8-d9b0-443f-b8a9-ac2f51356bd3", - "dynamic_ip_required": false, "modification_date": "2020-01-24T10:36:50.481043+00:00", - "enable_ipv6": false, "hostname": "cli-srv-friendly-joliot", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:08.074882+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "f3270c6f-e1c3-49a0-a524-19031c8067a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:08.514603+00:00", + "enable_ipv6": false, "hostname": "cli-srv-goofy-perlman", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1243,44 +1091,43 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-friendly-joliot", "protected": - false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T10:36:50.399978+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:36:49.872077+00:00", "id": - "242b5443-360e-4c0e-9906-6889a35019d7", "volume_type": "l_ssd", "server": {"id": - "cb040bb8-d9b0-443f-b8a9-ac2f51356bd3", "name": "cli-srv-friendly-joliot"}}, - "1": {"size": 1000000000, "state": "available", "name": "cli-srv-friendly-joliot-1", - "modification_date": "2020-01-24T10:36:50.400002+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:36:49.872077+00:00", "id": - "e6651be2-e50b-4b0b-8525-a5e5e700a9a5", "volume_type": "b_ssd", "server": {"id": - "cb040bb8-d9b0-443f-b8a9-ac2f51356bd3", "name": "cli-srv-friendly-joliot"}}, - "2": {"size": 5000000000, "state": "available", "name": "cli-srv-friendly-joliot-2", - "modification_date": "2020-01-24T10:36:50.399991+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:36:49.872077+00:00", "id": - "cbea0214-bd4b-4a45-b45b-265b5d87f635", "volume_type": "b_ssd", "server": {"id": - "cb040bb8-d9b0-443f-b8a9-ac2f51356bd3", "name": "cli-srv-friendly-joliot"}}, - "3": {"size": 10000000000, "state": "available", "name": "cli-srv-friendly-joliot-3", - "modification_date": "2020-01-24T10:36:50.399919+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:36:49.872077+00:00", "id": - "1a6d6769-4bf6-40c3-9e03-6bc745634ad7", "volume_type": "b_ssd", "server": {"id": - "cb040bb8-d9b0-443f-b8a9-ac2f51356bd3", "name": "cli-srv-friendly-joliot"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + [], "compute_cluster": null, "name": "cli-srv-goofy-perlman", "protected": false, + "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:52:08.495373+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:08.074882+00:00", "id": + "4e927093-f4d8-496e-8093-87fe732ab446", "volume_type": "l_ssd", "server": {"id": + "f3270c6f-e1c3-49a0-a524-19031c8067a0", "name": "cli-srv-goofy-perlman"}}, "1": + {"size": 1000000000, "state": "available", "name": "cli-srv-goofy-perlman-1", + "modification_date": "2020-02-11T13:52:08.495359+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:08.074882+00:00", "id": + "195464df-f6bf-43b4-a4f8-a24eb4ff674d", "volume_type": "b_ssd", "server": {"id": + "f3270c6f-e1c3-49a0-a524-19031c8067a0", "name": "cli-srv-goofy-perlman"}}, "2": + {"size": 5000000000, "state": "available", "name": "cli-srv-goofy-perlman-2", + "modification_date": "2020-02-11T13:52:08.495384+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:08.074882+00:00", "id": + "85ce34a9-40f8-4266-86cb-b190e451f127", "volume_type": "b_ssd", "server": {"id": + "f3270c6f-e1c3-49a0-a524-19031c8067a0", "name": "cli-srv-goofy-perlman"}}, "3": + {"size": 10000000000, "state": "available", "name": "cli-srv-goofy-perlman-3", + "modification_date": "2020-02-11T13:52:08.495320+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:08.074882+00:00", "id": + "115dd01f-67e3-4b9c-baa0-25243261f992", "volume_type": "b_ssd", "server": {"id": + "f3270c6f-e1c3-49a0-a524-19031c8067a0", "name": "cli-srv-goofy-perlman"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "4161" + - "4145" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:36:50 GMT + - Tue, 11 Feb 2020 13:52:08 GMT Location: - - https://cp-par1.scaleway.com/servers/cb040bb8-d9b0-443f-b8a9-ac2f51356bd3 + - https://cp-par1.scaleway.com/servers/f3270c6f-e1c3-49a0-a524-19031c8067a0 Server: - scaleway_api Strict-Transport-Security: @@ -1297,8 +1144,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb040bb8-d9b0-443f-b8a9-ac2f51356bd3 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f3270c6f-e1c3-49a0-a524-19031c8067a0 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1313,11 +1160,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T10:36:49.872077+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "cb040bb8-d9b0-443f-b8a9-ac2f51356bd3", - "dynamic_ip_required": false, "modification_date": "2020-01-24T10:36:50.481043+00:00", - "enable_ipv6": false, "hostname": "cli-srv-friendly-joliot", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:08.074882+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "f3270c6f-e1c3-49a0-a524-19031c8067a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:08.514603+00:00", + "enable_ipv6": false, "hostname": "cli-srv-goofy-perlman", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1325,42 +1172,41 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-friendly-joliot", "protected": - false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T10:36:50.399978+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:36:49.872077+00:00", "id": - "242b5443-360e-4c0e-9906-6889a35019d7", "volume_type": "l_ssd", "server": {"id": - "cb040bb8-d9b0-443f-b8a9-ac2f51356bd3", "name": "cli-srv-friendly-joliot"}}, - "1": {"size": 1000000000, "state": "available", "name": "cli-srv-friendly-joliot-1", - "modification_date": "2020-01-24T10:36:50.400002+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:36:49.872077+00:00", "id": - "e6651be2-e50b-4b0b-8525-a5e5e700a9a5", "volume_type": "b_ssd", "server": {"id": - "cb040bb8-d9b0-443f-b8a9-ac2f51356bd3", "name": "cli-srv-friendly-joliot"}}, - "2": {"size": 5000000000, "state": "available", "name": "cli-srv-friendly-joliot-2", - "modification_date": "2020-01-24T10:36:50.399991+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:36:49.872077+00:00", "id": - "cbea0214-bd4b-4a45-b45b-265b5d87f635", "volume_type": "b_ssd", "server": {"id": - "cb040bb8-d9b0-443f-b8a9-ac2f51356bd3", "name": "cli-srv-friendly-joliot"}}, - "3": {"size": 10000000000, "state": "available", "name": "cli-srv-friendly-joliot-3", - "modification_date": "2020-01-24T10:36:50.399919+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:36:49.872077+00:00", "id": - "1a6d6769-4bf6-40c3-9e03-6bc745634ad7", "volume_type": "b_ssd", "server": {"id": - "cb040bb8-d9b0-443f-b8a9-ac2f51356bd3", "name": "cli-srv-friendly-joliot"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + [], "compute_cluster": null, "name": "cli-srv-goofy-perlman", "protected": false, + "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:52:08.495373+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:08.074882+00:00", "id": + "4e927093-f4d8-496e-8093-87fe732ab446", "volume_type": "l_ssd", "server": {"id": + "f3270c6f-e1c3-49a0-a524-19031c8067a0", "name": "cli-srv-goofy-perlman"}}, "1": + {"size": 1000000000, "state": "available", "name": "cli-srv-goofy-perlman-1", + "modification_date": "2020-02-11T13:52:08.495359+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:08.074882+00:00", "id": + "195464df-f6bf-43b4-a4f8-a24eb4ff674d", "volume_type": "b_ssd", "server": {"id": + "f3270c6f-e1c3-49a0-a524-19031c8067a0", "name": "cli-srv-goofy-perlman"}}, "2": + {"size": 5000000000, "state": "available", "name": "cli-srv-goofy-perlman-2", + "modification_date": "2020-02-11T13:52:08.495384+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:08.074882+00:00", "id": + "85ce34a9-40f8-4266-86cb-b190e451f127", "volume_type": "b_ssd", "server": {"id": + "f3270c6f-e1c3-49a0-a524-19031c8067a0", "name": "cli-srv-goofy-perlman"}}, "3": + {"size": 10000000000, "state": "available", "name": "cli-srv-goofy-perlman-3", + "modification_date": "2020-02-11T13:52:08.495320+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:08.074882+00:00", "id": + "115dd01f-67e3-4b9c-baa0-25243261f992", "volume_type": "b_ssd", "server": {"id": + "f3270c6f-e1c3-49a0-a524-19031c8067a0", "name": "cli-srv-goofy-perlman"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "4161" + - "4145" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:36:50 GMT + - Tue, 11 Feb 2020 13:52:08 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1377,8 +1223,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb040bb8-d9b0-443f-b8a9-ac2f51356bd3 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f3270c6f-e1c3-49a0-a524-19031c8067a0 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1393,11 +1239,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T10:36:49.872077+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "cb040bb8-d9b0-443f-b8a9-ac2f51356bd3", - "dynamic_ip_required": false, "modification_date": "2020-01-24T10:36:50.481043+00:00", - "enable_ipv6": false, "hostname": "cli-srv-friendly-joliot", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:08.074882+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "f3270c6f-e1c3-49a0-a524-19031c8067a0", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:08.514603+00:00", + "enable_ipv6": false, "hostname": "cli-srv-goofy-perlman", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1405,42 +1251,41 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-friendly-joliot", "protected": - false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T10:36:50.399978+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:36:49.872077+00:00", "id": - "242b5443-360e-4c0e-9906-6889a35019d7", "volume_type": "l_ssd", "server": {"id": - "cb040bb8-d9b0-443f-b8a9-ac2f51356bd3", "name": "cli-srv-friendly-joliot"}}, - "1": {"size": 1000000000, "state": "available", "name": "cli-srv-friendly-joliot-1", - "modification_date": "2020-01-24T10:36:50.400002+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:36:49.872077+00:00", "id": - "e6651be2-e50b-4b0b-8525-a5e5e700a9a5", "volume_type": "b_ssd", "server": {"id": - "cb040bb8-d9b0-443f-b8a9-ac2f51356bd3", "name": "cli-srv-friendly-joliot"}}, - "2": {"size": 5000000000, "state": "available", "name": "cli-srv-friendly-joliot-2", - "modification_date": "2020-01-24T10:36:50.399991+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:36:49.872077+00:00", "id": - "cbea0214-bd4b-4a45-b45b-265b5d87f635", "volume_type": "b_ssd", "server": {"id": - "cb040bb8-d9b0-443f-b8a9-ac2f51356bd3", "name": "cli-srv-friendly-joliot"}}, - "3": {"size": 10000000000, "state": "available", "name": "cli-srv-friendly-joliot-3", - "modification_date": "2020-01-24T10:36:50.399919+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:36:49.872077+00:00", "id": - "1a6d6769-4bf6-40c3-9e03-6bc745634ad7", "volume_type": "b_ssd", "server": {"id": - "cb040bb8-d9b0-443f-b8a9-ac2f51356bd3", "name": "cli-srv-friendly-joliot"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + [], "compute_cluster": null, "name": "cli-srv-goofy-perlman", "protected": false, + "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:52:08.495373+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:08.074882+00:00", "id": + "4e927093-f4d8-496e-8093-87fe732ab446", "volume_type": "l_ssd", "server": {"id": + "f3270c6f-e1c3-49a0-a524-19031c8067a0", "name": "cli-srv-goofy-perlman"}}, "1": + {"size": 1000000000, "state": "available", "name": "cli-srv-goofy-perlman-1", + "modification_date": "2020-02-11T13:52:08.495359+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:08.074882+00:00", "id": + "195464df-f6bf-43b4-a4f8-a24eb4ff674d", "volume_type": "b_ssd", "server": {"id": + "f3270c6f-e1c3-49a0-a524-19031c8067a0", "name": "cli-srv-goofy-perlman"}}, "2": + {"size": 5000000000, "state": "available", "name": "cli-srv-goofy-perlman-2", + "modification_date": "2020-02-11T13:52:08.495384+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:08.074882+00:00", "id": + "85ce34a9-40f8-4266-86cb-b190e451f127", "volume_type": "b_ssd", "server": {"id": + "f3270c6f-e1c3-49a0-a524-19031c8067a0", "name": "cli-srv-goofy-perlman"}}, "3": + {"size": 10000000000, "state": "available", "name": "cli-srv-goofy-perlman-3", + "modification_date": "2020-02-11T13:52:08.495320+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:08.074882+00:00", "id": + "115dd01f-67e3-4b9c-baa0-25243261f992", "volume_type": "b_ssd", "server": {"id": + "f3270c6f-e1c3-49a0-a524-19031c8067a0", "name": "cli-srv-goofy-perlman"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "4161" + - "4145" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:36:50 GMT + - Tue, 11 Feb 2020 13:52:08 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1457,8 +1302,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb040bb8-d9b0-443f-b8a9-ac2f51356bd3 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f3270c6f-e1c3-49a0-a524-19031c8067a0 method: DELETE response: body: "" @@ -1470,7 +1315,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:36:50 GMT + - Tue, 11 Feb 2020 13:52:08 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1487,8 +1332,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc method: DELETE response: body: "" @@ -1500,7 +1345,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:36:50 GMT + - Tue, 11 Feb 2020 13:52:08 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1517,8 +1362,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cbea0214-bd4b-4a45-b45b-265b5d87f635 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4e927093-f4d8-496e-8093-87fe732ab446 method: DELETE response: body: "" @@ -1530,7 +1375,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:36:50 GMT + - Tue, 11 Feb 2020 13:52:08 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1547,8 +1392,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1a6d6769-4bf6-40c3-9e03-6bc745634ad7 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/195464df-f6bf-43b4-a4f8-a24eb4ff674d method: DELETE response: body: "" @@ -1560,7 +1405,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:36:50 GMT + - Tue, 11 Feb 2020 13:52:09 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1577,8 +1422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/242b5443-360e-4c0e-9906-6889a35019d7 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/85ce34a9-40f8-4266-86cb-b190e451f127 method: DELETE response: body: "" @@ -1590,7 +1435,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:36:50 GMT + - Tue, 11 Feb 2020 13:52:09 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1607,8 +1452,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e6651be2-e50b-4b0b-8525-a5e5e700a9a5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/115dd01f-67e3-4b9c-baa0-25243261f992 method: DELETE response: body: "" @@ -1620,7 +1465,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:36:51 GMT + - Tue, 11 Feb 2020 13:52:09 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-volumes-valid-double-local-volumes.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-volumes-valid-double-local-volumes.cassette.yaml index 6e91649c28..b9e2af4577 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-volumes-valid-double-local-volumes.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-volumes-valid-double-local-volumes.cassette.yaml @@ -6,898 +6,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; 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": - ["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": "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": "Ubuntu is the ideal distribution for scale-out - computing, Ubuntu Server helps you make the most of your infrastructure.", "creation_date": - "2016-03-05T14:51:48.354036+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "id": "c2292eda-bb2a-4399-a226-91f82525b75f", "categories": ["distribution"], - "name": "Ubuntu Trusty", "modification_date": "2019-03-26T14:00:52.034055+00:00", - "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", "modification_date": - "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": "Discourse - is an open source Internet forum software application.", "creation_date": "2016-03-07T21:08:17.200172+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", "id": - "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], "name": - "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", "versions": - [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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 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": "2019-03-26T14:00:53.253241+00:00", - "versions": [{"creation_date": "2019-03-06T18:03:45.146468+00:00", "modification_date": - "2019-03-06T18:03:45.146468+00:00", "id": "47d58f71-8382-48d1-88cd-75e5f1ed7df6", - "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": "5f96d290-88cb-4262-845e-578d0aa63201", - "zone": "par1"}], "name": "2019-03-06T18:03:45.081159"}], "current_public_version": - "47d58f71-8382-48d1-88cd-75e5f1ed7df6", "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": "2019-03-26T14:00:50.353326+00:00", - "versions": [{"creation_date": "2019-03-06T18:05:49.119145+00:00", "modification_date": - "2019-03-06T18:05:49.119145+00:00", "id": "905865bf-e34c-46b0-b7e2-5e11922e6511", - "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": "6bd566a1-c5b6-4c59-be37-752e1491ce1f", - "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": - "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": - {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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"}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "69538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2020 10:34:58 GMT - Link: - - ; rel="last" - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Total-Count: - - "46" - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d - method: GET - response: - body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": - {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "1004" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2020 10:34:58 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; 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.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers method: GET response: body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": @@ -1191,15 +301,667 @@ interactions: Cache-Control: - no-cache Content-Length: - - "23699" + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:52:05 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; 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": + ["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": "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 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": "2019-03-26T14:00:53.253241+00:00", + "versions": [{"creation_date": "2019-03-06T18:03:45.146468+00:00", "modification_date": + "2019-03-06T18:03:45.146468+00:00", "id": "47d58f71-8382-48d1-88cd-75e5f1ed7df6", + "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": "5f96d290-88cb-4262-845e-578d0aa63201", + "zone": "par1"}], "name": "2019-03-06T18:03:45.081159"}], "current_public_version": + "47d58f71-8382-48d1-88cd-75e5f1ed7df6", "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": "2019-03-26T14:00:50.353326+00:00", + "versions": [{"creation_date": "2019-03-06T18:05:49.119145+00:00", "modification_date": + "2019-03-06T18:05:49.119145+00:00", "id": "905865bf-e34c-46b0-b7e2-5e11922e6511", + "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": "6bd566a1-c5b6-4c59-be37-752e1491ce1f", + "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": + "905865bf-e34c-46b0-b7e2-5e11922e6511", "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"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:34:58 GMT + - Tue, 11 Feb 2020 13:52:05 GMT Link: - - ; rel="last" + - ; rel="last" Server: - scaleway_api Strict-Transport-Security: @@ -1209,37 +971,80 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "32" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:52:05 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", "server": null, "address": - "51.158.72.139"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' headers: Cache-Control: - no-cache Content-Length: - - "171" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:34:58 GMT + - Tue, 11 Feb 2020 13:52:05 GMT Location: - - https://cp-par1.scaleway.com/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - https://cp-par1.scaleway.com/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc Server: - scaleway_api Strict-Transport-Security: @@ -1252,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-fervent-chatelet","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","volumes":{"0":{"size":10000000000},"1":{"name":"cli-srv-fervent-chatelet-1","size":10000000000,"volume_type":"l_ssd","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}},"public_ip":"2c453330-0286-4986-ab36-a7f9aee549fd","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-trusting-nash","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","volumes":{"0":{"size":10000000000},"1":{"name":"cli-srv-trusting-nash-1","size":10000000000,"volume_type":"l_ssd","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}},"public_ip":"7f7e5c46-ed0a-425f-8d43-d0cfd77386dc","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -1274,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T10:34:59.379117+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "79ffadac-a490-47cd-b276-86a6e54661d2", - "dynamic_ip_required": false, "modification_date": "2020-01-24T10:34:59.775341+00:00", - "enable_ipv6": false, "hostname": "cli-srv-fervent-chatelet", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:06.346909+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "02ff4a51-bf36-4460-9e7a-5024533b0150", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:06.632780+00:00", + "enable_ipv6": false, "hostname": "cli-srv-trusting-nash", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1286,34 +1091,33 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-fervent-chatelet", "protected": - false, "volumes": {"0": {"size": 10000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T10:34:59.679943+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:34:59.379117+00:00", "id": - "f47d25b4-44f5-4378-8e01-6b4dc5a86cf5", "volume_type": "l_ssd", "server": {"id": - "79ffadac-a490-47cd-b276-86a6e54661d2", "name": "cli-srv-fervent-chatelet"}}, - "1": {"size": 10000000000, "state": "available", "name": "cli-srv-fervent-chatelet-1", - "modification_date": "2020-01-24T10:34:59.679845+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:34:59.379117+00:00", "id": - "09c08d49-ba76-4236-955f-f58a5687d72f", "volume_type": "l_ssd", "server": {"id": - "79ffadac-a490-47cd-b276-86a6e54661d2", "name": "cli-srv-fervent-chatelet"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + [], "compute_cluster": null, "name": "cli-srv-trusting-nash", "protected": false, + "volumes": {"0": {"size": 10000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:52:06.621040+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:06.346909+00:00", "id": + "e6baf2d0-513b-4b33-b9e5-5b7d950c3ee7", "volume_type": "l_ssd", "server": {"id": + "02ff4a51-bf36-4460-9e7a-5024533b0150", "name": "cli-srv-trusting-nash"}}, "1": + {"size": 10000000000, "state": "available", "name": "cli-srv-trusting-nash-1", + "modification_date": "2020-02-11T13:52:06.621002+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:06.346909+00:00", "id": + "9ab8d931-903f-4cfc-9535-554d06d92382", "volume_type": "l_ssd", "server": {"id": + "02ff4a51-bf36-4460-9e7a-5024533b0150", "name": "cli-srv-trusting-nash"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3296" + - "3283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:34:59 GMT + - Tue, 11 Feb 2020 13:52:06 GMT Location: - - https://cp-par1.scaleway.com/servers/79ffadac-a490-47cd-b276-86a6e54661d2 + - https://cp-par1.scaleway.com/servers/02ff4a51-bf36-4460-9e7a-5024533b0150 Server: - scaleway_api Strict-Transport-Security: @@ -1330,8 +1134,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/79ffadac-a490-47cd-b276-86a6e54661d2 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/02ff4a51-bf36-4460-9e7a-5024533b0150 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1346,11 +1150,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T10:34:59.379117+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "79ffadac-a490-47cd-b276-86a6e54661d2", - "dynamic_ip_required": false, "modification_date": "2020-01-24T10:34:59.775341+00:00", - "enable_ipv6": false, "hostname": "cli-srv-fervent-chatelet", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:06.346909+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "02ff4a51-bf36-4460-9e7a-5024533b0150", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:06.632780+00:00", + "enable_ipv6": false, "hostname": "cli-srv-trusting-nash", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1358,32 +1162,31 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-fervent-chatelet", "protected": - false, "volumes": {"0": {"size": 10000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T10:34:59.679943+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:34:59.379117+00:00", "id": - "f47d25b4-44f5-4378-8e01-6b4dc5a86cf5", "volume_type": "l_ssd", "server": {"id": - "79ffadac-a490-47cd-b276-86a6e54661d2", "name": "cli-srv-fervent-chatelet"}}, - "1": {"size": 10000000000, "state": "available", "name": "cli-srv-fervent-chatelet-1", - "modification_date": "2020-01-24T10:34:59.679845+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:34:59.379117+00:00", "id": - "09c08d49-ba76-4236-955f-f58a5687d72f", "volume_type": "l_ssd", "server": {"id": - "79ffadac-a490-47cd-b276-86a6e54661d2", "name": "cli-srv-fervent-chatelet"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + [], "compute_cluster": null, "name": "cli-srv-trusting-nash", "protected": false, + "volumes": {"0": {"size": 10000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:52:06.621040+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:06.346909+00:00", "id": + "e6baf2d0-513b-4b33-b9e5-5b7d950c3ee7", "volume_type": "l_ssd", "server": {"id": + "02ff4a51-bf36-4460-9e7a-5024533b0150", "name": "cli-srv-trusting-nash"}}, "1": + {"size": 10000000000, "state": "available", "name": "cli-srv-trusting-nash-1", + "modification_date": "2020-02-11T13:52:06.621002+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:06.346909+00:00", "id": + "9ab8d931-903f-4cfc-9535-554d06d92382", "volume_type": "l_ssd", "server": {"id": + "02ff4a51-bf36-4460-9e7a-5024533b0150", "name": "cli-srv-trusting-nash"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3296" + - "3283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:34:59 GMT + - Tue, 11 Feb 2020 13:52:06 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1400,8 +1203,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/79ffadac-a490-47cd-b276-86a6e54661d2 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/02ff4a51-bf36-4460-9e7a-5024533b0150 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1416,11 +1219,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T10:34:59.379117+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "79ffadac-a490-47cd-b276-86a6e54661d2", - "dynamic_ip_required": false, "modification_date": "2020-01-24T10:34:59.775341+00:00", - "enable_ipv6": false, "hostname": "cli-srv-fervent-chatelet", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:06.346909+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "02ff4a51-bf36-4460-9e7a-5024533b0150", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:06.632780+00:00", + "enable_ipv6": false, "hostname": "cli-srv-trusting-nash", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1428,32 +1231,31 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-fervent-chatelet", "protected": - false, "volumes": {"0": {"size": 10000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T10:34:59.679943+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:34:59.379117+00:00", "id": - "f47d25b4-44f5-4378-8e01-6b4dc5a86cf5", "volume_type": "l_ssd", "server": {"id": - "79ffadac-a490-47cd-b276-86a6e54661d2", "name": "cli-srv-fervent-chatelet"}}, - "1": {"size": 10000000000, "state": "available", "name": "cli-srv-fervent-chatelet-1", - "modification_date": "2020-01-24T10:34:59.679845+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:34:59.379117+00:00", "id": - "09c08d49-ba76-4236-955f-f58a5687d72f", "volume_type": "l_ssd", "server": {"id": - "79ffadac-a490-47cd-b276-86a6e54661d2", "name": "cli-srv-fervent-chatelet"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + [], "compute_cluster": null, "name": "cli-srv-trusting-nash", "protected": false, + "volumes": {"0": {"size": 10000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:52:06.621040+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:06.346909+00:00", "id": + "e6baf2d0-513b-4b33-b9e5-5b7d950c3ee7", "volume_type": "l_ssd", "server": {"id": + "02ff4a51-bf36-4460-9e7a-5024533b0150", "name": "cli-srv-trusting-nash"}}, "1": + {"size": 10000000000, "state": "available", "name": "cli-srv-trusting-nash-1", + "modification_date": "2020-02-11T13:52:06.621002+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:06.346909+00:00", "id": + "9ab8d931-903f-4cfc-9535-554d06d92382", "volume_type": "l_ssd", "server": {"id": + "02ff4a51-bf36-4460-9e7a-5024533b0150", "name": "cli-srv-trusting-nash"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3296" + - "3283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:34:59 GMT + - Tue, 11 Feb 2020 13:52:06 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1470,8 +1272,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/79ffadac-a490-47cd-b276-86a6e54661d2 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/02ff4a51-bf36-4460-9e7a-5024533b0150 method: DELETE response: body: "" @@ -1483,7 +1285,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:35:00 GMT + - Tue, 11 Feb 2020 13:52:06 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1500,8 +1302,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc method: DELETE response: body: "" @@ -1513,7 +1315,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:35:00 GMT + - Tue, 11 Feb 2020 13:52:06 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1530,8 +1332,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f47d25b4-44f5-4378-8e01-6b4dc5a86cf5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e6baf2d0-513b-4b33-b9e5-5b7d950c3ee7 method: DELETE response: body: "" @@ -1543,7 +1345,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:35:00 GMT + - Tue, 11 Feb 2020 13:52:06 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1560,8 +1362,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/09c08d49-ba76-4236-955f-f58a5687d72f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9ab8d931-903f-4cfc-9535-554d06d92382 method: DELETE response: body: "" @@ -1573,7 +1375,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:35:00 GMT + - Tue, 11 Feb 2020 13:52:07 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-volumes-valid-single-local-volume.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-volumes-valid-single-local-volume.cassette.yaml index a5dc774338..baafbcffe5 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-volumes-valid-single-local-volume.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-volumes-valid-single-local-volume.cassette.yaml @@ -6,898 +6,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; 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": - ["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": "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": "Ubuntu is the ideal distribution for scale-out - computing, Ubuntu Server helps you make the most of your infrastructure.", "creation_date": - "2016-03-05T14:51:48.354036+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "id": "c2292eda-bb2a-4399-a226-91f82525b75f", "categories": ["distribution"], - "name": "Ubuntu Trusty", "modification_date": "2019-03-26T14:00:52.034055+00:00", - "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", "modification_date": - "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": "Discourse - is an open source Internet forum software application.", "creation_date": "2016-03-07T21:08:17.200172+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", "id": - "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], "name": - "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", "versions": - [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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 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": "2019-03-26T14:00:53.253241+00:00", - "versions": [{"creation_date": "2019-03-06T18:03:45.146468+00:00", "modification_date": - "2019-03-06T18:03:45.146468+00:00", "id": "47d58f71-8382-48d1-88cd-75e5f1ed7df6", - "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": "5f96d290-88cb-4262-845e-578d0aa63201", - "zone": "par1"}], "name": "2019-03-06T18:03:45.081159"}], "current_public_version": - "47d58f71-8382-48d1-88cd-75e5f1ed7df6", "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": "2019-03-26T14:00:50.353326+00:00", - "versions": [{"creation_date": "2019-03-06T18:05:49.119145+00:00", "modification_date": - "2019-03-06T18:05:49.119145+00:00", "id": "905865bf-e34c-46b0-b7e2-5e11922e6511", - "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": "6bd566a1-c5b6-4c59-be37-752e1491ce1f", - "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": - "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": - {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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"}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "69538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2020 10:34:53 GMT - Link: - - ; rel="last" - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Total-Count: - - "46" - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d - method: GET - response: - body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": - {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", - "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": - false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": - "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": - "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", - "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", - "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, - "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", - "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "1004" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2020 10:34:53 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; 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.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers method: GET response: body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": @@ -1191,15 +301,667 @@ interactions: Cache-Control: - no-cache Content-Length: - - "23699" + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:52:03 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; 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": + ["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": "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 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": "2019-03-26T14:00:53.253241+00:00", + "versions": [{"creation_date": "2019-03-06T18:03:45.146468+00:00", "modification_date": + "2019-03-06T18:03:45.146468+00:00", "id": "47d58f71-8382-48d1-88cd-75e5f1ed7df6", + "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": "5f96d290-88cb-4262-845e-578d0aa63201", + "zone": "par1"}], "name": "2019-03-06T18:03:45.081159"}], "current_public_version": + "47d58f71-8382-48d1-88cd-75e5f1ed7df6", "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": "2019-03-26T14:00:50.353326+00:00", + "versions": [{"creation_date": "2019-03-06T18:05:49.119145+00:00", "modification_date": + "2019-03-06T18:05:49.119145+00:00", "id": "905865bf-e34c-46b0-b7e2-5e11922e6511", + "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": "6bd566a1-c5b6-4c59-be37-752e1491ce1f", + "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": + "905865bf-e34c-46b0-b7e2-5e11922e6511", "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"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:34:53 GMT + - Tue, 11 Feb 2020 13:52:03 GMT Link: - - ; rel="last" + - ; rel="last" Server: - scaleway_api Strict-Transport-Security: @@ -1209,37 +971,80 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "32" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:52:03 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", "server": null, "address": - "51.158.72.139"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' headers: Cache-Control: - no-cache Content-Length: - - "171" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:34:54 GMT + - Tue, 11 Feb 2020 13:52:04 GMT Location: - - https://cp-par1.scaleway.com/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - https://cp-par1.scaleway.com/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc Server: - scaleway_api Strict-Transport-Security: @@ -1252,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-elegant-torvalds","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","volumes":{"0":{"size":20000000000}},"public_ip":"2c453330-0286-4986-ab36-a7f9aee549fd","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-reverent-easley","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","volumes":{"0":{"size":20000000000}},"public_ip":"7f7e5c46-ed0a-425f-8d43-d0cfd77386dc","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -1274,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T10:34:54.889790+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "23870e61-cf64-4154-8f8a-d3c38d9f148d", - "dynamic_ip_required": false, "modification_date": "2020-01-24T10:34:55.302642+00:00", - "enable_ipv6": false, "hostname": "cli-srv-elegant-torvalds", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:04.697644+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "e1e8155c-cf8f-4bff-beb5-91e526e99695", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:04.951338+00:00", + "enable_ipv6": false, "hostname": "cli-srv-reverent-easley", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1286,29 +1091,29 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-elegant-torvalds", "protected": + [], "compute_cluster": null, "name": "cli-srv-reverent-easley", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T10:34:55.147037+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:34:54.889790+00:00", "id": - "068e318b-52af-4a79-86ec-d9877360fe28", "volume_type": "l_ssd", "server": {"id": - "23870e61-cf64-4154-8f8a-d3c38d9f148d", "name": "cli-srv-elegant-torvalds"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:52:04.930251+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:04.697644+00:00", "id": + "fd0333a5-685c-4747-a1e5-357346525650", "volume_type": "l_ssd", "server": {"id": + "e1e8155c-cf8f-4bff-beb5-91e526e99695", "name": "cli-srv-reverent-easley"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2858" + - "2857" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:34:55 GMT + - Tue, 11 Feb 2020 13:52:04 GMT Location: - - https://cp-par1.scaleway.com/servers/23870e61-cf64-4154-8f8a-d3c38d9f148d + - https://cp-par1.scaleway.com/servers/e1e8155c-cf8f-4bff-beb5-91e526e99695 Server: - scaleway_api Strict-Transport-Security: @@ -1325,8 +1130,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23870e61-cf64-4154-8f8a-d3c38d9f148d + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e1e8155c-cf8f-4bff-beb5-91e526e99695 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1341,11 +1146,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T10:34:54.889790+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "23870e61-cf64-4154-8f8a-d3c38d9f148d", - "dynamic_ip_required": false, "modification_date": "2020-01-24T10:34:55.302642+00:00", - "enable_ipv6": false, "hostname": "cli-srv-elegant-torvalds", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:04.697644+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "e1e8155c-cf8f-4bff-beb5-91e526e99695", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:04.951338+00:00", + "enable_ipv6": false, "hostname": "cli-srv-reverent-easley", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1353,27 +1158,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-elegant-torvalds", "protected": + [], "compute_cluster": null, "name": "cli-srv-reverent-easley", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T10:34:55.147037+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:34:54.889790+00:00", "id": - "068e318b-52af-4a79-86ec-d9877360fe28", "volume_type": "l_ssd", "server": {"id": - "23870e61-cf64-4154-8f8a-d3c38d9f148d", "name": "cli-srv-elegant-torvalds"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:52:04.930251+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:04.697644+00:00", "id": + "fd0333a5-685c-4747-a1e5-357346525650", "volume_type": "l_ssd", "server": {"id": + "e1e8155c-cf8f-4bff-beb5-91e526e99695", "name": "cli-srv-reverent-easley"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2858" + - "2857" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:34:55 GMT + - Tue, 11 Feb 2020 13:52:04 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1390,8 +1195,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23870e61-cf64-4154-8f8a-d3c38d9f148d + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e1e8155c-cf8f-4bff-beb5-91e526e99695 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1406,11 +1211,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-24T10:34:54.889790+00:00", - "public_ip": {"dynamic": false, "id": "2c453330-0286-4986-ab36-a7f9aee549fd", - "address": "51.158.72.139"}, "private_ip": null, "id": "23870e61-cf64-4154-8f8a-d3c38d9f148d", - "dynamic_ip_required": false, "modification_date": "2020-01-24T10:34:55.302642+00:00", - "enable_ipv6": false, "hostname": "cli-srv-elegant-torvalds", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:52:04.697644+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "e1e8155c-cf8f-4bff-beb5-91e526e99695", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:52:04.951338+00:00", + "enable_ipv6": false, "hostname": "cli-srv-reverent-easley", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1418,27 +1223,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-elegant-torvalds", "protected": + [], "compute_cluster": null, "name": "cli-srv-reverent-easley", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-24T10:34:55.147037+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-01-24T10:34:54.889790+00:00", "id": - "068e318b-52af-4a79-86ec-d9877360fe28", "volume_type": "l_ssd", "server": {"id": - "23870e61-cf64-4154-8f8a-d3c38d9f148d", "name": "cli-srv-elegant-torvalds"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:52:04.930251+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:52:04.697644+00:00", "id": + "fd0333a5-685c-4747-a1e5-357346525650", "volume_type": "l_ssd", "server": {"id": + "e1e8155c-cf8f-4bff-beb5-91e526e99695", "name": "cli-srv-reverent-easley"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2858" + - "2857" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:34:55 GMT + - Tue, 11 Feb 2020 13:52:05 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1455,8 +1260,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/23870e61-cf64-4154-8f8a-d3c38d9f148d + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e1e8155c-cf8f-4bff-beb5-91e526e99695 method: DELETE response: body: "" @@ -1468,7 +1273,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:34:55 GMT + - Tue, 11 Feb 2020 13:52:05 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1485,8 +1290,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2c453330-0286-4986-ab36-a7f9aee549fd + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc method: DELETE response: body: "" @@ -1498,7 +1303,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:34:55 GMT + - Tue, 11 Feb 2020 13:52:05 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1515,8 +1320,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/068e318b-52af-4a79-86ec-d9877360fe28 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fd0333a5-685c-4747-a1e5-357346525650 method: DELETE response: body: "" @@ -1528,7 +1333,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2020 10:34:55 GMT + - Tue, 11 Feb 2020 13:52:05 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-volume-simple.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-volume-simple.cassette.yaml index 69d37bb960..ff60b4347c 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-volume-simple.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-volume-simple.cassette.yaml @@ -2,20 +2,20 @@ version: 1 interactions: - request: - body: '{"name":"test","organization":"14d2f7ae-9775-414c-9bed-6810e060d500","volume_type":"l_ssd","size":20000000000}' + body: '{"name":"test","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd","volume_type":"l_ssd","size":20000000000}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.5; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes method: POST response: body: '{"volume": {"size": 20000000000, "state": "available", "name": "test", - "modification_date": "2020-01-20T14:36:28.843991+00:00", "organization": "14d2f7ae-9775-414c-9bed-6810e060d500", - "export_uri": null, "creation_date": "2020-01-20T14:36:28.843991+00:00", "id": - "44baf81c-9bf9-4d4e-a1b8-61e344a425a3", "volume_type": "l_ssd", "server": null}}' + "modification_date": "2020-02-11T13:55:18.688897+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:18.688897+00:00", "id": + "dc762eda-d8f8-4e96-8221-fc5c49580d0f", "volume_type": "l_ssd", "server": null}}' headers: Cache-Control: - no-cache @@ -26,9 +26,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 20 Jan 2020 14:36:30 GMT + - Tue, 11 Feb 2020 13:55:18 GMT Location: - - https://cp-par1.scaleway.com/volumes/44baf81c-9bf9-4d4e-a1b8-61e344a425a3 + - https://cp-par1.scaleway.com/volumes/dc762eda-d8f8-4e96-8221-fc5c49580d0f Server: - scaleway_api Strict-Transport-Security: @@ -45,8 +45,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/44baf81c-9bf9-4d4e-a1b8-61e344a425a3 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dc762eda-d8f8-4e96-8221-fc5c49580d0f method: DELETE response: body: "" @@ -58,7 +58,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 20 Jan 2020 14:36:30 GMT + - Tue, 11 Feb 2020 13:55:18 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-get-server-simple.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-get-server-simple.cassette.yaml index 61e1a27260..7c13a76109 100644 --- a/internal/namespaces/instance/v1/testdata/test-get-server-simple.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-get-server-simple.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.5; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:16 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -39,62 +361,53 @@ interactions: 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-17T09:25:30.577144+00:00", - "versions": [{"creation_date": "2018-09-05T21:16:05.803947+00:00", "modification_date": - "2018-09-05T21:16:05.803947+00:00", "id": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f71f2ad9-7810-405b-9181-2e8d5e1feb18", "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": - "4035ca92-5292-4c6e-aa17-759fbc32765e", "zone": "ams1"}, {"compatible_commercial_types": - ["GP1-XS", "DEV1-L", "RENDER-S", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", + "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": - "b5a754d1-8262-47d2-acb2-22739295bb68", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "9feb1aec-492f-4144-a64f-bd67578a3b01", "zone": "ams1"}, - {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", "ARM64-32GB", "ARM64-128GB", - "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": "arm64", "id": "2c1a1716-5570-4668-a50a-860c90beabf6", - "zone": "par1"}, {"compatible_commercial_types": ["ARM64-4GB", "ARM64-128GB", - "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", "ARM64-64GB"], "arch": - "arm64", "id": "ba6a7295-7980-49c1-bd3f-e3a1819b951f", "zone": "ams1"}], "name": - "2018-09-05T21:16:05.804627"}], "current_public_version": "265b32a3-59a5-402f-9710-6040c4ef47d3", - "label": "ubuntu_xenial", "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-03-05T14:51:48.354036+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", "id": "c2292eda-bb2a-4399-a226-91f82525b75f", - "categories": ["distribution"], "name": "Ubuntu Trusty", "modification_date": - "2019-03-26T14:00:52.034055+00:00", "versions": [{"creation_date": "2017-01-05T13:56:38.476659+00:00", - "modification_date": "2017-01-05T13:56:38.476659+00:00", "id": "bf7f0487-213e-4d62-a423-fada39e06dcb", - "local_images": [{"compatible_commercial_types": [], "arch": "arm", "id": "e37df0e6-91e8-4adc-9944-318ad75c13ca", - "zone": "ams1"}, {"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "27ccbd68-090d-4f95-a342-db2c1c8f3628", "zone": "par1"}], "name": "2017-01-05"}], - "current_public_version": "bf7f0487-213e-4d62-a423-fada39e06dcb", "label": "ubuntu_trusty", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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-17T10:50:34.084671+00:00", "versions": [{"creation_date": "2019-03-05T17:19:56.355135+00:00", - "modification_date": "2019-03-05T17:19:56.355135+00:00", "id": "19ae7ee0-6164-4327-8c04-9bac122fa271", - "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": "92ccf589-2d7f-4f1a-938c-8f3e8fdf0fb8", - "zone": "ams1"}, {"compatible_commercial_types": [], "arch": "arm", "id": "2c62201d-19d4-4ea0-940d-dd13d9849783", - "zone": "ams1"}, {"compatible_commercial_types": ["GP1-XS", "DEV1-M", "DEV1-L", + "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": - "9a53e825-19f9-4e1f-b841-dd921e4e1b39", "zone": "par1"}, {"compatible_commercial_types": - ["C1"], "arch": "arm", "id": "1eddbd4c-3a60-45b3-b2f7-26ab7bd2ccd2", "zone": + "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": - "18f57fd2-51e9-4568-95f4-92ce03e6ef84", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "6e592c09-8f8d-4b66-8d78-dc72a767ac39", - "zone": "ams1"}], "name": "2019-03-05T17:19:55.857344"}], "current_public_version": - "19ae7ee0-6164-4327-8c04-9bac122fa271", "label": "debian_stretch", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "mtouron@ocs.online.net"}}, + "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", @@ -152,21 +465,6 @@ interactions: "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": "The CentOS Project is a community-driven - free software effort focused on delivering a robust open source ecosystem.", - "creation_date": "2017-06-22T13:15:23.907335+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "id": "260b68bc-533c-4432-9a43-7178fc76ee02", "categories": ["distribution"], - "name": "CentOS 7.3", "modification_date": "2019-03-26T14:00:52.206561+00:00", - "versions": [{"creation_date": "2017-11-09T17:07:12.589821+00:00", "modification_date": - "2017-11-09T17:07:12.589821+00:00", "id": "1398b772-21d8-4450-bd7d-9b0441c59bdb", - "local_images": [{"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "4d43ed62-617e-480b-9318-4273c456c7f4", "zone": "par1"}, {"compatible_commercial_types": - ["ARM64-4GB", "ARM64-128GB", "ARM64-16GB", "ARM64-32GB", "ARM64-8GB", "ARM64-2GB", - "ARM64-64GB"], "arch": "arm64", "id": "ddbc2580-8b92-4538-86a9-728243900919", - "zone": "ams1"}], "name": "2017-11-09T17:07:12.511348"}], "current_public_version": - "1398b772-21d8-4450-bd7d-9b0441c59bdb", "label": "centos_7.3", "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", @@ -218,24 +516,12 @@ interactions: "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": "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": "2016-03-07T20:55:03.718181+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", "id": "0e24ac4c-2fa7-4602-b790-02b74b698d86", - "categories": ["distribution"], "name": "Fedora", "modification_date": "2019-03-26T14:00:52.575424+00:00", - "versions": [{"creation_date": "2016-03-07T22:03:48.364794+00:00", "modification_date": - "2016-03-07T22:03:48.364794+00:00", "id": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "120612bd-9c2c-4ace-833a-062b381934c8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "6bfeb720-936d-48ec-b2ca-ea68929a5b86", "zone": "ams1"}], - "name": "2015-09-01"}], "current_public_version": "a91aa71c-f362-46d9-8ad0-fa08628c5020", - "label": "fedora", "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": + {"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", @@ -268,38 +554,26 @@ interactions: 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-17T10:46:52.315571+00:00", - "versions": [{"creation_date": "2019-08-27T14:32:06.122321+00:00", "modification_date": - "2019-08-27T14:32:06.122321+00:00", "id": "4c08096f-f825-429a-b91e-b974072ac813", - "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": - "b3042271-d2b1-4f87-b407-aedd3bbd1663", "zone": "par1"}, {"compatible_commercial_types": + "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": "948d5610-86c2-414d-9d88-acc6be4b4842", "zone": "ams1"}, {"compatible_commercial_types": + "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": "bce24b0c-cedc-484d-a4b1-616cf883dc0b", - "zone": "ams1"}, {"compatible_commercial_types": ["ARM64-8GB", "ARM64-2GB", - "ARM64-32GB", "ARM64-128GB", "ARM64-4GB", "ARM64-64GB", "ARM64-16GB"], "arch": - "arm64", "id": "0e32f742-93d9-4c2e-aa78-9418e3f54e7c", "zone": "par1"}], "name": - "2019-08-27T14:32:06.113229"}], "current_public_version": "4c08096f-f825-429a-b91e-b974072ac813", - "label": "debian_buster", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}}, {"valid_until": null, "description": - "Discourse is an open source Internet forum software application.", "creation_date": - "2016-03-07T21:08:17.200172+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/discourse.png", - "id": "19a71b27-1825-4ac6-891a-50d78a096374", "categories": ["instantapp"], - "name": "Discourse", "modification_date": "2019-03-26T14:00:51.024987+00:00", - "versions": [{"creation_date": "2016-03-07T21:57:06.319711+00:00", "modification_date": - "2016-03-07T21:57:06.319711+00:00", "id": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "1d40502f-2068-4d8b-a4fc-446e8ec2883e", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "c2e98204-d533-4d4b-8433-e9a1b1be801f", "zone": "ams1"}], - "name": "2015-09-10"}], "current_public_version": "07eeeb6c-a911-4e08-a3a5-e4ff75385dab", - "label": "discourse", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Docker + "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", @@ -323,60 +597,11 @@ interactions: "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": "Drupal is an open source content management - platform powering millions of websites and applications.", "creation_date": - "2016-03-07T21:03:42.336816+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/drupal.png", - "id": "aa098c02-df40-4734-b5f0-a20694160c75", "categories": ["instantapp"], - "name": "Drupal", "modification_date": "2019-03-26T14:00:52.759749+00:00", "versions": - [{"creation_date": "2016-03-11T17:21:50.590025+00:00", "modification_date": - "2016-03-11T17:21:50.590025+00:00", "id": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e1171370-0060-4489-8789-f067c86ce7ba", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "92f0db7d-9d0c-4c3d-85cd-a53daed625a6", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "8e6bfaf4-93c7-4090-821a-8b76e8c32d8c", - "label": "drupal", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "ELK - stack is an environment that lets you collect, store and visualize your logs.", - "creation_date": "2016-03-07T21:07:26.481966+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/elk.png", - "id": "d9bc56e5-0a20-41d8-b581-f54e636888c8", "categories": ["instantapp"], - "name": "ELK stack", "modification_date": "2019-03-26T14:00:49.621237+00:00", - "versions": [{"creation_date": "2016-03-22T10:45:53.277539+00:00", "modification_date": - "2016-03-22T10:45:53.277539+00:00", "id": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "bf234cb3-0e42-4642-8f9b-5c74121ebea4", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "23fefa88-e769-43e4-abd2-a2024366f529", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "2ac56aca-3aa9-44b7-8145-2a47173819f3", - "label": "elk_stack", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Etherpad - is a highly customizable Open Source online editor.", "creation_date": "2016-03-07T21:01:06.696775+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/etherpad.png", "id": - "53e87f7e-b173-4e88-b9ae-81c2ab7f168e", "categories": ["instantapp"], "name": - "Etherpad", "modification_date": "2019-03-26T14:00:49.232680+00:00", "versions": - [{"creation_date": "2016-03-07T21:54:43.305997+00:00", "modification_date": - "2016-03-07T21:54:43.305997+00:00", "id": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f085beb3-b99c-493e-a882-87a2f6d48bf8", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7cb6244a-7d24-4459-b5eb-ce0053c30633", "zone": "ams1"}], - "name": "2015-09-18"}], "current_public_version": "6fc832a1-6a31-4ac4-9dc5-27a9875e2a32", - "label": "etherpad", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "Ghost - is a simple, powerful publishing platform that allows you to share your stories - with the world.", "creation_date": "2016-03-07T21:06:37.762509+00:00", "logo": - "https://marketplace-logos.s3.nl-ams.scw.cloud/ghost.png", "id": "4653d871-5e19-4093-a08d-f3fca34b9ca8", - "categories": ["instantapp"], "name": "Ghost", "modification_date": "2019-03-26T14:00:53.632160+00:00", - "versions": [{"creation_date": "2016-03-17T18:07:22.400548+00:00", "modification_date": - "2016-03-17T18:07:22.400548+00:00", "id": "76921968-deec-4106-a708-91b10dca27de", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "f0ea257d-2883-4ab5-9f58-39e03b4aa4c5", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "7325a77f-bb75-4a39-8cd0-d8af9124fcee", "zone": "ams1"}], - "name": "2016-03-17"}], "current_public_version": "76921968-deec-4106-a708-91b10dca27de", - "label": "ghost", "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": + {"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", @@ -431,24 +656,12 @@ interactions: "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": "Build your own images on Scaleway.", "creation_date": - "2016-03-07T21:03:08.546795+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/default.png", - "id": "67597b1e-89f7-4fb3-98e2-6e199ca60adb", "categories": ["instantapp"], - "name": "Image Builder", "modification_date": "2019-03-26T14:00:54.321504+00:00", - "versions": [{"creation_date": "2016-10-24T16:21:35.520157+00:00", "modification_date": - "2016-10-24T16:21:35.520157+00:00", "id": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6d536ddb-9ec4-40bb-ab76-c5aa3173be3c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "190e9b6d-5ab4-46c5-9fa5-1bf4e5dafc0e", "zone": "ams1"}], - "name": "2016-10-24"}], "current_public_version": "3fc393e9-644d-4f52-b044-28b4fecb167b", - "label": "image_builder", "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": + {"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": @@ -467,18 +680,6 @@ interactions: "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": "Kanboard - is a project management software that use the Kanban methodology.", "creation_date": - "2016-03-07T21:03:25.999254+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/kanboard.png", - "id": "80e57489-db83-47d2-98fb-2acd0cfe99cc", "categories": ["instantapp"], - "name": "Kanboard", "modification_date": "2019-03-26T14:00:50.554737+00:00", - "versions": [{"creation_date": "2016-03-07T22:04:31.512162+00:00", "modification_date": - "2016-03-07T22:04:31.512162+00:00", "id": "db6dbf80-c69f-47c7-b077-8044ea756770", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8ed594e6-9b91-4371-8273-244764ea63f7", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "22cdcb16-fb59-4b27-a234-b20408cfc340", "zone": "ams1"}], - "name": "2015-08-31"}], "current_public_version": "db6dbf80-c69f-47c7-b077-8044ea756770", - "label": "kanboard", "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": @@ -520,24 +721,12 @@ interactions: "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": "Minecraft is a game about placing blocks - to build anything you can imagine.", "creation_date": "2016-03-07T21:02:08.702536+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/minecraft.png", "id": - "aa8b6bc7-61c7-4e7c-a1a2-fd6d60ada433", "categories": ["instantapp"], "name": - "Minecraft", "modification_date": "2019-03-26T14:00:54.225616+00:00", "versions": - [{"creation_date": "2016-03-11T18:06:06.529522+00:00", "modification_date": - "2016-03-11T18:06:06.529522+00:00", "id": "2b401358-027d-4029-b35a-984a25c0dd0f", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "6a60fbef-7f69-488b-9be5-6a25f591989f", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "94382ccf-87be-49c8-b253-0a9b5f00b6c4", "zone": "ams1"}], - "name": "2016-03-11"}], "current_public_version": "2b401358-027d-4029-b35a-984a25c0dd0f", - "label": "minecraft", "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": + {"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": @@ -647,18 +836,6 @@ interactions: [], "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": "Pydio - is the mature, open-source software solution for file sharing and synchronization - with an intuitive user interfaces.", "creation_date": "2016-03-07T21:05:29.425733+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/pydio.png", "id": "ec8419f9-2146-467d-982b-eacbb32a4087", - "categories": ["instantapp"], "name": "Pydio", "modification_date": "2019-03-26T14:00:49.887331+00:00", - "versions": [{"creation_date": "2016-03-07T22:05:57.451042+00:00", "modification_date": - "2016-03-07T22:05:57.451042+00:00", "id": "e982e06a-927b-4373-a82c-770123aae518", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "8428b1d9-07ac-4a90-bf23-1ac34c73c3c0", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "a6d4aace-fb6a-48fe-9c4e-de8a91b55af2", "zone": "ams1"}], - "name": "2015-06-23"}], "current_public_version": "e982e06a-927b-4373-a82c-770123aae518", - "label": "pydio", "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", @@ -678,18 +855,6 @@ interactions: [], "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": "Redmine - is a free and open source, web-based project management and issue tracking tool.", - "creation_date": "2016-03-07T21:02:29.445704+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/redmine.png", - "id": "6746cbf8-3732-4c23-ba15-34773652f058", "categories": ["instantapp"], - "name": "Redmine", "modification_date": "2019-03-26T14:00:51.662280+00:00", - "versions": [{"creation_date": "2016-03-22T10:48:06.775760+00:00", "modification_date": - "2016-03-22T10:48:06.775760+00:00", "id": "e0e29004-bfae-4663-a276-f2c9df70c698", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "a0df14e0-eb87-4f17-9c27-01c0106e13d3", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "d97ff062-7f89-4263-8f0c-cee31f1f25fd", "zone": "ams1"}], - "name": "2016-03-22"}], "current_public_version": "e0e29004-bfae-4663-a276-f2c9df70c698", - "label": "redmine", "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", @@ -709,30 +874,6 @@ interactions: [], "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": "Ruby - on Rails is an open-source web framework that\u2019s optimized for programmer - happiness and sustainable productivity.", "creation_date": "2016-03-07T21:02:50.887200+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rails.png", "id": "29cedfd1-3892-4273-90ba-86a886bdb51e", - "categories": ["instantapp"], "name": "Ruby on Rails", "modification_date": - "2019-03-26T14:00:53.919313+00:00", "versions": [{"creation_date": "2016-03-07T21:53:42.510249+00:00", - "modification_date": "2016-03-07T21:53:42.510249+00:00", "id": "22571268-4fd0-4153-9936-14190ae01a82", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "c5015431-7de1-4c45-9024-dfab244f4a4d", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "1a47e0e0-aaaf-436b-a3fe-a1d22db5c91f", "zone": "ams1"}], - "name": "2015-09-23"}], "current_public_version": "22571268-4fd0-4153-9936-14190ae01a82", - "label": "ruby_on_rails", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"valid_until": null, "description": "A - a PHP-powered, flexible Blogging and CMS application.", "creation_date": "2016-03-07T21:04:38.314597+00:00", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/serendipity.png", "id": - "3eadfd08-5939-4738-b0b6-bdd0bb002e9d", "categories": ["instantapp"], "name": - "Serendipity", "modification_date": "2019-03-26T14:00:54.023188+00:00", "versions": - [{"creation_date": "2016-03-07T21:51:12.030869+00:00", "modification_date": - "2016-03-07T21:51:12.030869+00:00", "id": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "e485269b-fe65-4e78-80fc-a7e349770b95", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "85689a55-e288-40f8-8ae2-7984adb5ed14", "zone": "ams1"}], - "name": "2015-09-30"}], "current_public_version": "7ec2fcf2-ab29-457f-843a-b6efde444704", - "label": "serendipity", "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", @@ -784,23 +925,12 @@ interactions: "zone": "par1"}], "name": "2019-03-06T18:05:49.043867"}], "current_public_version": "905865bf-e34c-46b0-b7e2-5e11922e6511", "label": "ubuntu_bionic_ml_9.2", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": "OCS"}}, {"valid_until": - null, "description": "A powerful and flexible web hosting control panel.", "creation_date": - "2016-03-07T21:00:27.542536+00:00", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/webmin.png", - "id": "f300f8c1-1e1d-42d6-8a4b-9e661eb5477d", "categories": ["instantapp"], - "name": "Webmin", "modification_date": "2019-03-26T14:00:50.646395+00:00", "versions": - [{"creation_date": "2016-11-30T11:02:00.852921+00:00", "modification_date": - "2016-11-30T11:02:00.852921+00:00", "id": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "local_images": [{"compatible_commercial_types": ["C1"], "arch": "arm", "id": - "b4173ca3-a7f5-4dbe-bc07-3ee038df065c", "zone": "par1"}, {"compatible_commercial_types": - [], "arch": "arm", "id": "0eb66d90-fd78-4de2-810b-21bb79060abd", "zone": "ams1"}], - "name": "2016-11-30"}], "current_public_version": "0faf919a-4ad4-4db4-9191-6ec9972e75d1", - "label": "webmin", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "mtouron@ocs.online.net"}}, {"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": + 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", @@ -823,13 +953,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - "69316" + - "52747" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 17:10:26 GMT + - Tue, 11 Feb 2020 13:55:17 GMT Link: - ; rel="last" Server: @@ -841,24 +971,67 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "46" + - "30" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:17 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY status: 200 OK code: 200 duration: "" - request: - body: '{"organization":"14d2f7ae-9775-414c-9bed-6810e060d500"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.5; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "14d2f7ae-9775-414c-9bed-6810e060d500", "reverse": - null, "id": "febae361-dcf5-428d-a8ca-5ee64fc46190", "server": null, "address": - "51.158.117.222"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "f7977681-911a-4f3d-bb19-8a8c9c8c59d3", "server": null, "address": + "51.15.242.39"}}' headers: Cache-Control: - no-cache @@ -869,9 +1042,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 17:10:26 GMT + - Tue, 11 Feb 2020 13:55:17 GMT Location: - - https://cp-par1.scaleway.com/ips/febae361-dcf5-428d-a8ca-5ee64fc46190 + - https://cp-par1.scaleway.com/ips/f7977681-911a-4f3d-bb19-8a8c9c8c59d3 Server: - scaleway_api Strict-Transport-Security: @@ -884,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-charming-elbakyan","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"febae361-dcf5-428d-a8ca-5ee64fc46190","boot_type":"local","organization":"14d2f7ae-9775-414c-9bed-6810e060d500"}' + body: '{"name":"cli-srv-friendly-golick","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"f7977681-911a-4f3d-bb19-8a8c9c8c59d3","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.5; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -906,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T17:10:27.462746+00:00", - "public_ip": {"dynamic": false, "id": "febae361-dcf5-428d-a8ca-5ee64fc46190", - "address": "51.158.117.222"}, "private_ip": null, "id": "6783fbb9-c7e0-4efd-ba84-effa6b98448e", - "dynamic_ip_required": false, "modification_date": "2020-01-17T17:10:27.752465+00:00", - "enable_ipv6": false, "hostname": "cli-srv-charming-elbakyan", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:17.950586+00:00", + "public_ip": {"dynamic": false, "id": "f7977681-911a-4f3d-bb19-8a8c9c8c59d3", + "address": "51.15.242.39"}, "private_ip": null, "id": "0b40066c-04cf-4b3a-bb2f-60783da5b4d6", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:18.174553+00:00", + "enable_ipv6": false, "hostname": "cli-srv-friendly-golick", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -918,29 +1091,29 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-charming-elbakyan", "protected": + [], "compute_cluster": null, "name": "cli-srv-friendly-golick", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-17T17:10:27.722615+00:00", "organization": "14d2f7ae-9775-414c-9bed-6810e060d500", - "export_uri": null, "creation_date": "2020-01-17T17:10:27.462746+00:00", "id": - "5063e7a0-5d8a-4af5-8c54-4edf962d66d9", "volume_type": "l_ssd", "server": {"id": - "6783fbb9-c7e0-4efd-ba84-effa6b98448e", "name": "cli-srv-charming-elbakyan"}}}, - "security_group": {"id": "e5bf4522-94b4-4933-bebb-9b21f786b4af", "name": "Default - security group"}, "organization": "14d2f7ae-9775-414c-9bed-6810e060d500", "private_nics": + "2020-02-11T13:55:18.164393+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:17.950586+00:00", "id": + "2409c5ec-1415-40dd-80e9-a4aa5daba709", "volume_type": "l_ssd", "server": {"id": + "0b40066c-04cf-4b3a-bb2f-60783da5b4d6", "name": "cli-srv-friendly-golick"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2862" + - "2854" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 17:10:27 GMT + - Tue, 11 Feb 2020 13:55:17 GMT Location: - - https://cp-par1.scaleway.com/servers/6783fbb9-c7e0-4efd-ba84-effa6b98448e + - https://cp-par1.scaleway.com/servers/0b40066c-04cf-4b3a-bb2f-60783da5b4d6 Server: - scaleway_api Strict-Transport-Security: @@ -957,8 +1130,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6783fbb9-c7e0-4efd-ba84-effa6b98448e + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b40066c-04cf-4b3a-bb2f-60783da5b4d6 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -973,11 +1146,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T17:10:27.462746+00:00", - "public_ip": {"dynamic": false, "id": "febae361-dcf5-428d-a8ca-5ee64fc46190", - "address": "51.158.117.222"}, "private_ip": null, "id": "6783fbb9-c7e0-4efd-ba84-effa6b98448e", - "dynamic_ip_required": false, "modification_date": "2020-01-17T17:10:27.752465+00:00", - "enable_ipv6": false, "hostname": "cli-srv-charming-elbakyan", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:17.950586+00:00", + "public_ip": {"dynamic": false, "id": "f7977681-911a-4f3d-bb19-8a8c9c8c59d3", + "address": "51.15.242.39"}, "private_ip": null, "id": "0b40066c-04cf-4b3a-bb2f-60783da5b4d6", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:18.174553+00:00", + "enable_ipv6": false, "hostname": "cli-srv-friendly-golick", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -985,27 +1158,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-charming-elbakyan", "protected": + [], "compute_cluster": null, "name": "cli-srv-friendly-golick", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-17T17:10:27.722615+00:00", "organization": "14d2f7ae-9775-414c-9bed-6810e060d500", - "export_uri": null, "creation_date": "2020-01-17T17:10:27.462746+00:00", "id": - "5063e7a0-5d8a-4af5-8c54-4edf962d66d9", "volume_type": "l_ssd", "server": {"id": - "6783fbb9-c7e0-4efd-ba84-effa6b98448e", "name": "cli-srv-charming-elbakyan"}}}, - "security_group": {"id": "e5bf4522-94b4-4933-bebb-9b21f786b4af", "name": "Default - security group"}, "organization": "14d2f7ae-9775-414c-9bed-6810e060d500", "private_nics": + "2020-02-11T13:55:18.164393+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:17.950586+00:00", "id": + "2409c5ec-1415-40dd-80e9-a4aa5daba709", "volume_type": "l_ssd", "server": {"id": + "0b40066c-04cf-4b3a-bb2f-60783da5b4d6", "name": "cli-srv-friendly-golick"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2862" + - "2854" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 17:10:27 GMT + - Tue, 11 Feb 2020 13:55:18 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1022,8 +1195,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6783fbb9-c7e0-4efd-ba84-effa6b98448e + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b40066c-04cf-4b3a-bb2f-60783da5b4d6 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1038,11 +1211,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-01-17T17:10:27.462746+00:00", - "public_ip": {"dynamic": false, "id": "febae361-dcf5-428d-a8ca-5ee64fc46190", - "address": "51.158.117.222"}, "private_ip": null, "id": "6783fbb9-c7e0-4efd-ba84-effa6b98448e", - "dynamic_ip_required": false, "modification_date": "2020-01-17T17:10:27.752465+00:00", - "enable_ipv6": false, "hostname": "cli-srv-charming-elbakyan", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:17.950586+00:00", + "public_ip": {"dynamic": false, "id": "f7977681-911a-4f3d-bb19-8a8c9c8c59d3", + "address": "51.15.242.39"}, "private_ip": null, "id": "0b40066c-04cf-4b3a-bb2f-60783da5b4d6", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:18.174553+00:00", + "enable_ipv6": false, "hostname": "cli-srv-friendly-golick", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1050,27 +1223,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-charming-elbakyan", "protected": + [], "compute_cluster": null, "name": "cli-srv-friendly-golick", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-01-17T17:10:27.722615+00:00", "organization": "14d2f7ae-9775-414c-9bed-6810e060d500", - "export_uri": null, "creation_date": "2020-01-17T17:10:27.462746+00:00", "id": - "5063e7a0-5d8a-4af5-8c54-4edf962d66d9", "volume_type": "l_ssd", "server": {"id": - "6783fbb9-c7e0-4efd-ba84-effa6b98448e", "name": "cli-srv-charming-elbakyan"}}}, - "security_group": {"id": "e5bf4522-94b4-4933-bebb-9b21f786b4af", "name": "Default - security group"}, "organization": "14d2f7ae-9775-414c-9bed-6810e060d500", "private_nics": + "2020-02-11T13:55:18.164393+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:17.950586+00:00", "id": + "2409c5ec-1415-40dd-80e9-a4aa5daba709", "volume_type": "l_ssd", "server": {"id": + "0b40066c-04cf-4b3a-bb2f-60783da5b4d6", "name": "cli-srv-friendly-golick"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2862" + - "2854" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 17:10:27 GMT + - Tue, 11 Feb 2020 13:55:18 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1087,8 +1260,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6783fbb9-c7e0-4efd-ba84-effa6b98448e + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b40066c-04cf-4b3a-bb2f-60783da5b4d6 method: DELETE response: body: "" @@ -1100,7 +1273,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 17 Jan 2020 17:10:27 GMT + - Tue, 11 Feb 2020 13:55:18 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-get-server-simple.stdout.golden b/internal/namespaces/instance/v1/testdata/test-get-server-simple.stdout.golden index dc163255f2..b62a57e57d 100644 --- a/internal/namespaces/instance/v1/testdata/test-get-server-simple.stdout.golden +++ b/internal/namespaces/instance/v1/testdata/test-get-server-simple.stdout.golden @@ -1,14 +1,14 @@ Server: -id 6783fbb9-c7e0-4efd-ba84-effa6b98448e -name cli-srv-charming-elbakyan -organization 14d2f7ae-9775-414c-9bed-6810e060d500 +id 0b40066c-04cf-4b3a-bb2f-60783da5b4d6 +name cli-srv-friendly-golick +organization aba2d0d0-b01d-4d88-b322-935edc96d0fd allowed-actions.0 poweron allowed-actions.1 backup commercial-type DEV1-S creation-date few seconds ago dynamic-ip-required false enable-ipv6 false -hostname cli-srv-charming-elbakyan +hostname cli-srv-friendly-golick image.id f974feac-abae-4365-b988-8ec7d1cec10d image.name Ubuntu Bionic Beaver image.arch x86_64 @@ -22,15 +22,15 @@ image.public true image.root-volume dd5f5c10-23b1-4c9c-8445-eb6740957c84 image.state available protected false -public-ip.id febae361-dcf5-428d-a8ca-5ee64fc46190 -public-ip.address 51.158.117.222 +public-ip.id f7977681-911a-4f3d-bb19-8a8c9c8c59d3 +public-ip.address 51.15.242.39 public-ip.dynamic false modification-date few seconds ago state archived bootscript x86_64 mainline 4.9.93 rev1 boot-type local volumes 1 -security-group.id e5bf4522-94b4-4933-bebb-9b21f786b4af +security-group.id 49822f6c-1d32-465c-a017-720691d159b2 security-group.name Default security group state-detail arch x86_64 @@ -54,4 +54,4 @@ Server - Allowed Actions: Volumes: ID NAME EXPORT URI SIZE VOLUME TYPE CREATION DATE MODIFICATION DATE ORGANIZATION STATE -5063e7a0-5d8a-4af5-8c54-4edf962d66d9 snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13 20 GB l_ssd few seconds ago few seconds ago 14d2f7ae-9775-414c-9bed-6810e060d500 available +2409c5ec-1415-40dd-80e9-a4aa5daba709 snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13 20 GB l_ssd few seconds ago few seconds ago aba2d0d0-b01d-4d88-b322-935edc96d0fd available diff --git a/internal/namespaces/instance/v1/testdata/test-list-server-simple.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-list-server-simple.cassette.yaml index f1e3ea29db..33acfb65d5 100644 --- a/internal/namespaces/instance/v1/testdata/test-list-server-simple.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-list-server-simple.cassette.yaml @@ -6,12 +6,12 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.5; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: GET response: - body: '{"servers": [{"allowed_actions": ["backup"], "maintenances": [], "state_detail": - "booting kernel", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", + body: '{"servers": [{"allowed_actions": ["poweron", "backup"], "maintenances": + [], "state_detail": "", "image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -22,40 +22,400 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2019-07-16T09:53:40.787772+00:00", - "public_ip": {"dynamic": false, "id": "19ee7b6b-dc92-4db7-962e-57e8212011e5", - "address": "51.15.240.20"}, "private_ip": "10.64.30.163", "id": "64c3ed5c-72f6-495b-94f5-f43c4536f49c", - "dynamic_ip_required": false, "modification_date": "2020-01-13T16:28:36.631608+00:00", - "enable_ipv6": true, "hostname": "terraform-v2-doc", "state": "running", "bootscript": + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:40:35.675206+00:00", + "public_ip": {"dynamic": false, "id": "535c33cd-4c78-4b95-8796-896c2948b026", + "address": "163.172.133.14"}, "private_ip": null, "id": "6ee01533-3fb9-4f20-8160-a7ad7967c6d4", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:40:36.017139+00:00", + "enable_ipv6": false, "hostname": "cli-srv-festive-antonelli", "state": "stopped", + "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": + "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": + [], "compute_cluster": null, "name": "cli-srv-festive-antonelli", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:40:35.998956+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:40:35.675206+00:00", "id": + "a37a3f12-7a93-41fd-9cb4-22828b23a81e", "volume_type": "l_ssd", "server": {"id": + "6ee01533-3fb9-4f20-8160-a7ad7967c6d4", "name": "cli-srv-festive-antonelli"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}, {"allowed_actions": ["poweron", "backup"], "maintenances": [], "state_detail": + "", "image": {"creation_date": "2018-08-31T12:09:48.318542+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "d4067cdc-dc9d-4810-8a26-0dae51d7df42", + "root_volume": {"size": 50000000000, "id": "6fb4094d-f6e2-4b6e-b659-dc62258e9dad", + "volume_type": "l_ssd", "name": "snapshot-e845ae67-2e67-4ec0-8955-3293a851b092-2018-08-31_12:09"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2018-08-31T17:20:05.687183+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T11:04:45.145643+00:00", + "public_ip": {"dynamic": false, "id": "ae83de4c-b9f6-4f2f-b529-8414e0cc4478", + "address": "51.158.72.126"}, "private_ip": null, "id": "a5beed5f-7406-4574-b204-b49c5bd51aad", + "dynamic_ip_required": false, "modification_date": "2020-02-11T11:04:45.380922+00:00", + "enable_ipv6": false, "hostname": "cli-srv-nice-mirzakhani", "state": "stopped", + "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": + "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": + [], "compute_cluster": null, "name": "cli-srv-nice-mirzakhani", "protected": + false, "volumes": {"0": {"size": 50000000000, "state": "available", "name": + "snapshot-e845ae67-2e67-4ec0-8955-3293a851b092-2018-08-31_12:09", "modification_date": + "2020-02-11T11:04:45.369453+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T11:04:45.145643+00:00", "id": + "df8e1df0-87f6-46a3-8f63-18d7aad173eb", "volume_type": "l_ssd", "server": {"id": + "a5beed5f-7406-4574-b204-b49c5bd51aad", "name": "cli-srv-nice-mirzakhani"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}, {"allowed_actions": ["poweron", "backup"], "maintenances": [], "state_detail": + "", "image": {"creation_date": "2018-08-31T12:09:48.318542+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "d4067cdc-dc9d-4810-8a26-0dae51d7df42", + "root_volume": {"size": 50000000000, "id": "6fb4094d-f6e2-4b6e-b659-dc62258e9dad", + "volume_type": "l_ssd", "name": "snapshot-e845ae67-2e67-4ec0-8955-3293a851b092-2018-08-31_12:09"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2018-08-31T17:20:05.687183+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T11:04:16.928017+00:00", + "public_ip": {"dynamic": false, "id": "73f0b671-945a-4c24-a30e-d042196277f0", + "address": "51.158.99.155"}, "private_ip": null, "id": "d4ed923f-943a-40fc-89ca-d5bdc1b7be88", + "dynamic_ip_required": false, "modification_date": "2020-02-11T11:04:17.387741+00:00", + "enable_ipv6": false, "hostname": "cli-srv-reverent-hodgkin", "state": "stopped", + "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": + "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": + [], "compute_cluster": null, "name": "cli-srv-reverent-hodgkin", "protected": + false, "volumes": {"0": {"size": 50000000000, "state": "available", "name": + "snapshot-e845ae67-2e67-4ec0-8955-3293a851b092-2018-08-31_12:09", "modification_date": + "2020-02-11T11:04:17.374726+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T11:04:16.928017+00:00", "id": + "ad67edb8-c8d1-42e2-ad9e-c8d07afa0fdd", "volume_type": "l_ssd", "server": {"id": + "d4ed923f-943a-40fc-89ca-d5bdc1b7be88", "name": "cli-srv-reverent-hodgkin"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}, {"allowed_actions": ["poweron", "backup"], "maintenances": [], "state_detail": + "", "image": {"creation_date": "2018-08-31T12:09:48.318542+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "d4067cdc-dc9d-4810-8a26-0dae51d7df42", + "root_volume": {"size": 50000000000, "id": "6fb4094d-f6e2-4b6e-b659-dc62258e9dad", + "volume_type": "l_ssd", "name": "snapshot-e845ae67-2e67-4ec0-8955-3293a851b092-2018-08-31_12:09"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2018-08-31T17:20:05.687183+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T11:03:53.550549+00:00", + "public_ip": {"dynamic": false, "id": "0f7aee59-671e-4ecd-b6b5-0be3477beaf0", + "address": "51.158.119.154"}, "private_ip": null, "id": "93eb4197-46ae-4c81-b6cf-1222a861edd2", + "dynamic_ip_required": false, "modification_date": "2020-02-11T11:03:53.908540+00:00", + "enable_ipv6": false, "hostname": "cli-srv-upbeat-burnell", "state": "stopped", + "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": + "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": + [], "compute_cluster": null, "name": "cli-srv-upbeat-burnell", "protected": + false, "volumes": {"0": {"size": 50000000000, "state": "available", "name": + "snapshot-e845ae67-2e67-4ec0-8955-3293a851b092-2018-08-31_12:09", "modification_date": + "2020-02-11T11:03:53.893834+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T11:03:53.550549+00:00", "id": + "2f07679f-aa65-45f6-969b-a276224c33d0", "volume_type": "l_ssd", "server": {"id": + "93eb4197-46ae-4c81-b6cf-1222a861edd2", "name": "cli-srv-upbeat-burnell"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}, {"allowed_actions": ["poweron", "backup"], "maintenances": [], "state_detail": + "", "image": {"creation_date": "2018-08-31T12:09:48.318542+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "d4067cdc-dc9d-4810-8a26-0dae51d7df42", + "root_volume": {"size": 50000000000, "id": "6fb4094d-f6e2-4b6e-b659-dc62258e9dad", + "volume_type": "l_ssd", "name": "snapshot-e845ae67-2e67-4ec0-8955-3293a851b092-2018-08-31_12:09"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2018-08-31T17:20:05.687183+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T11:03:21.124182+00:00", + "public_ip": {"dynamic": false, "id": "4dcf394f-2e8b-4817-93c1-a7cfb6e54765", + "address": "163.172.177.30"}, "private_ip": null, "id": "9424a299-8cf3-4125-9471-0d10d4df0412", + "dynamic_ip_required": false, "modification_date": "2020-02-11T11:03:21.387346+00:00", + "enable_ipv6": false, "hostname": "cli-srv-hopeful-jennings", "state": "stopped", + "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": + "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": + [], "compute_cluster": null, "name": "cli-srv-hopeful-jennings", "protected": + false, "volumes": {"0": {"size": 50000000000, "state": "available", "name": + "snapshot-e845ae67-2e67-4ec0-8955-3293a851b092-2018-08-31_12:09", "modification_date": + "2020-02-11T11:03:21.372874+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T11:03:21.124182+00:00", "id": + "34b325a5-729d-4e59-bcb4-52c2d10e4ffa", "volume_type": "l_ssd", "server": {"id": + "9424a299-8cf3-4125-9471-0d10d4df0412", "name": "cli-srv-hopeful-jennings"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}, {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": + "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T09:44:02.320016+00:00", + "public_ip": {"dynamic": false, "id": "42754080-8bc1-4bc1-b571-b80a64f4fac6", + "address": "51.158.120.130"}, "private_ip": "10.68.26.121", "id": "e34e7ca4-b5aa-4522-9cba-d16122f041f6", + "dynamic_ip_required": false, "modification_date": "2020-02-07T09:45:01.692160+00:00", + "enable_ipv6": false, "hostname": "cli-srv-hardcore-einstein", "state": "running", + "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "702", + "node_id": "61", "cluster_id": "35", "zone_id": "par1"}, "boot_type": "local", + "ipv6": null, "commercial_type": "DEV1-S", "placement_group": {"name": "cli-pg-beautiful-feistel", + "policy_mode": "optional", "policy_type": "max_availability", "organization": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "ff3570f6-af25-4dc2-91a5-90bf28e11531"}, + "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": + "cli-pg-beautiful-feistel", "policy_mode": "optional", "policy_type": "max_availability", + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": + true, "id": "ff3570f6-af25-4dc2-91a5-90bf28e11531"}, "name": "cli-srv-hardcore-einstein", + "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", + "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-07T09:44:02.611475+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-07T09:44:02.320016+00:00", "id": + "a1d28011-7cac-4e04-94e5-da20e48b0822", "volume_type": "l_ssd", "server": {"id": + "e34e7ca4-b5aa-4522-9cba-d16122f041f6", "name": "cli-srv-hardcore-einstein"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}, {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": + "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T09:41:51.133961+00:00", + "public_ip": {"dynamic": false, "id": "5226c1e0-b55d-4a49-a03b-4e33700d45fb", + "address": "51.158.104.204"}, "private_ip": "10.64.74.147", "id": "ab14e370-5849-482d-bf00-9878facdff2c", + "dynamic_ip_required": false, "modification_date": "2020-02-07T09:42:42.360143+00:00", + "enable_ipv6": false, "hostname": "cli-srv-dazzling-brahmagupta", "state": "running", + "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1902", + "node_id": "74", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", + "ipv6": null, "commercial_type": "DEV1-S", "placement_group": {"name": "cli-pg-romantic-feistel", + "policy_mode": "optional", "policy_type": "max_availability", "organization": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "c1b709b0-6011-465d-8aea-178461034536"}, + "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": + "cli-pg-romantic-feistel", "policy_mode": "optional", "policy_type": "max_availability", + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": + true, "id": "c1b709b0-6011-465d-8aea-178461034536"}, "name": "cli-srv-dazzling-brahmagupta", + "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", + "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-07T09:41:52.186655+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-07T09:41:51.133961+00:00", "id": + "fc22d1b8-069f-473d-8cd3-6836e2505ddd", "volume_type": "l_ssd", "server": {"id": + "ab14e370-5849-482d-bf00-9878facdff2c", "name": "cli-srv-dazzling-brahmagupta"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}, {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": + "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T09:39:20.449843+00:00", + "public_ip": {"dynamic": false, "id": "8384beab-53ed-46e4-8723-800fef593b7a", + "address": "51.15.208.188"}, "private_ip": "10.65.120.115", "id": "80c172d4-aa89-4407-9be3-fa437045b0e8", + "dynamic_ip_required": false, "modification_date": "2020-02-07T09:39:47.157637+00:00", + "enable_ipv6": false, "hostname": "cli-srv-charming-mirzakhani", "state": "running", + "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1501", + "node_id": "58", "cluster_id": "19", "zone_id": "par1"}, "boot_type": "local", + "ipv6": null, "commercial_type": "DEV1-S", "placement_group": {"name": "cli-pg-strange-niel", + "policy_mode": "optional", "policy_type": "max_availability", "organization": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "1e31ded9-9954-4056-a617-5ed44763f2e9"}, + "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": + "cli-pg-strange-niel", "policy_mode": "optional", "policy_type": "max_availability", + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": + true, "id": "1e31ded9-9954-4056-a617-5ed44763f2e9"}, "name": "cli-srv-charming-mirzakhani", + "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", + "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-07T09:39:20.724613+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-07T09:39:20.449843+00:00", "id": + "b92ac830-22da-422c-a778-5411ac447eac", "volume_type": "l_ssd", "server": {"id": + "80c172d4-aa89-4407-9be3-fa437045b0e8", "name": "cli-srv-charming-mirzakhani"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}, {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": + "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T09:38:07.212932+00:00", + "public_ip": {"dynamic": false, "id": "b61f1d96-a83b-437f-935b-9f886f6e0d47", + "address": "51.15.195.148"}, "private_ip": "10.64.232.127", "id": "fb0d5c19-750d-4df3-a402-3d68ad065514", + "dynamic_ip_required": false, "modification_date": "2020-02-07T09:39:23.305858+00:00", + "enable_ipv6": false, "hostname": "cli-srv-awesome-villani", "state": "running", + "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1901", + "node_id": "64", "cluster_id": "17", "zone_id": "par1"}, "boot_type": "local", + "ipv6": null, "commercial_type": "DEV1-S", "placement_group": {"name": "cli-pg-angry-meitner", + "policy_mode": "optional", "policy_type": "max_availability", "organization": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "8110be5b-fc89-4d5b-b357-89f04d1a48c0"}, + "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": + "cli-pg-angry-meitner", "policy_mode": "optional", "policy_type": "max_availability", + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": + true, "id": "8110be5b-fc89-4d5b-b357-89f04d1a48c0"}, "name": "cli-srv-awesome-villani", + "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", + "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-07T09:38:07.491537+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-07T09:38:07.212932+00:00", "id": + "b4c7538c-384b-48a7-8d9f-ed82599182fb", "volume_type": "l_ssd", "server": {"id": + "fb0d5c19-750d-4df3-a402-3d68ad065514", "name": "cli-srv-awesome-villani"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}, {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": + "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T09:34:53.760843+00:00", + "public_ip": {"dynamic": false, "id": "f64679f7-9c33-4246-bbbf-eba3f0017649", + "address": "51.158.126.164"}, "private_ip": "10.64.142.157", "id": "ed30e9df-4360-43f8-b02b-dfe23d793a83", + "dynamic_ip_required": false, "modification_date": "2020-02-07T09:35:49.527866+00:00", + "enable_ipv6": false, "hostname": "cli-srv-zealous-cartwright", "state": "running", + "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1602", + "node_id": "79", "cluster_id": "16", "zone_id": "par1"}, "boot_type": "local", + "ipv6": null, "commercial_type": "DEV1-S", "placement_group": {"name": "cli-pg-flamboyant-northcutt", + "policy_mode": "optional", "policy_type": "max_availability", "organization": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "cf5f4b3b-4b34-4ab1-95b0-90b6f5ee1a19"}, + "tags": [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": + "cli-pg-flamboyant-northcutt", "policy_mode": "optional", "policy_type": "max_availability", + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": + true, "id": "cf5f4b3b-4b34-4ab1-95b0-90b6f5ee1a19"}, "name": "cli-srv-zealous-cartwright", + "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", + "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-07T09:34:54.111979+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-07T09:34:53.760843+00:00", "id": + "03caa92d-1f52-4db6-8114-891506c3f800", "volume_type": "l_ssd", "server": {"id": + "ed30e9df-4360-43f8-b02b-dfe23d793a83", "name": "cli-srv-zealous-cartwright"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}, {"allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", + "backup"], "maintenances": [], "state_detail": "booting kernel", "image": {"creation_date": + "2019-03-05T10:13:15.974944+00:00", "default_bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-06T13:17:20.123810+00:00", + "public_ip": {"dynamic": false, "id": "cd09e94b-64b9-4c6f-a9b0-e1ac4c7d793e", + "address": "51.158.64.183"}, "private_ip": "10.65.26.161", "id": "aa4fedfc-4937-4ce9-8e05-b5f8b2b5678c", + "dynamic_ip_required": false, "modification_date": "2020-02-06T13:18:08.124446+00:00", + "enable_ipv6": true, "hostname": "scw-dreamy-saha", "state": "running", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", - "public": false}, "location": {"platform_id": "14", "hypervisor_id": "802", - "node_id": "82", "cluster_id": "15", "zone_id": "par1"}, "boot_type": "local", - "ipv6": {"netmask": "64", "gateway": "2001:bc8:47a0:f51::", "address": "2001:bc8:47a0:f51::1"}, - "commercial_type": "DEV1-S", "placement_group": null, "tags": ["tf", "test1", - "test2"], "arch": "x86_64", "extra_networks": [], "compute_cluster": null, "name": - "terraform-v2-doc", "protected": true, "volumes": {"0": {"size": 20000000000, - "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-01-13T16:31:28.870440+00:00", "organization": "14d2f7ae-9775-414c-9bed-6810e060d500", - "export_uri": null, "creation_date": "2019-07-16T09:53:40.787772+00:00", "id": - "66a64345-539e-4897-9a50-4511313bbd58", "volume_type": "l_ssd", "server": {"id": - "64c3ed5c-72f6-495b-94f5-f43c4536f49c", "name": "terraform-v2-doc"}}}, "security_group": - {"id": "e5bf4522-94b4-4933-bebb-9b21f786b4af", "name": "Default security group"}, - "organization": "14d2f7ae-9775-414c-9bed-6810e060d500", "private_nics": []}]}' + "public": false}, "location": {"platform_id": "14", "hypervisor_id": "1102", + "node_id": "81", "cluster_id": "18", "zone_id": "par1"}, "boot_type": "local", + "ipv6": {"netmask": "64", "gateway": "2001:bc8:47ac:1550::", "address": "2001:bc8:47ac:1550::1"}, + "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", + "extra_networks": [], "compute_cluster": null, "name": "scw-dreamy-saha", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-06T13:17:20.361626+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-06T13:17:20.123810+00:00", "id": + "95207705-73c7-4d57-b847-5cae41914826", "volume_type": "l_ssd", "server": {"id": + "aa4fedfc-4937-4ce9-8e05-b5f8b2b5678c", "name": "scw-dreamy-saha"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}]}' headers: Cache-Control: - no-cache Content-Length: - - "3048" + - "34610" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 17 Jan 2020 17:10:25 GMT + - Tue, 11 Feb 2020 13:55:16 GMT Link: - ; rel="last" Server: @@ -67,7 +427,7 @@ interactions: X-Frame-Options: - DENY X-Total-Count: - - "1" + - "11" status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/instance/v1/testdata/test-list-server-simple.stdout.golden b/internal/namespaces/instance/v1/testdata/test-list-server-simple.stdout.golden index 3db0578297..ecace338a9 100644 --- a/internal/namespaces/instance/v1/testdata/test-list-server-simple.stdout.golden +++ b/internal/namespaces/instance/v1/testdata/test-list-server-simple.stdout.golden @@ -1,2 +1,12 @@ -ID NAME STATE ZONE PUBLIC IP PRIVATE IP IMAGE NAME TAGS MODIFICATION DATE CREATION DATE IMAGE ID PROTECTED VOLUMES SECURITY GROUP ID SECURITY GROUP NAME STATE DETAIL ARCH -64c3ed5c-72f6-495b-94f5-f43c4536f49c terraform-v2-doc running fr-par-1 51.15.240.20 10.64.30.163 Ubuntu Bionic Beaver [tf test1 test2] few seconds ago few seconds ago f974feac-abae-4365-b988-8ec7d1cec10d true 1 e5bf4522-94b4-4933-bebb-9b21f786b4af Default security group booting kernel x86_64 +ID NAME STATE ZONE PUBLIC IP PRIVATE IP IMAGE NAME TAGS MODIFICATION DATE CREATION DATE IMAGE ID PROTECTED VOLUMES SECURITY GROUP ID SECURITY GROUP NAME STATE DETAIL ARCH +6ee01533-3fb9-4f20-8160-a7ad7967c6d4 cli-srv-festive-antonelli archived 163.172.133.14 Ubuntu Bionic Beaver [] few seconds ago few seconds ago f974feac-abae-4365-b988-8ec7d1cec10d false 1 49822f6c-1d32-465c-a017-720691d159b2 Default security group x86_64 +a5beed5f-7406-4574-b204-b49c5bd51aad cli-srv-nice-mirzakhani archived 51.158.72.126 Ubuntu Bionic Beaver [] few seconds ago few seconds ago d4067cdc-dc9d-4810-8a26-0dae51d7df42 false 1 49822f6c-1d32-465c-a017-720691d159b2 Default security group x86_64 +d4ed923f-943a-40fc-89ca-d5bdc1b7be88 cli-srv-reverent-hodgkin archived 51.158.99.155 Ubuntu Bionic Beaver [] few seconds ago few seconds ago d4067cdc-dc9d-4810-8a26-0dae51d7df42 false 1 49822f6c-1d32-465c-a017-720691d159b2 Default security group x86_64 +93eb4197-46ae-4c81-b6cf-1222a861edd2 cli-srv-upbeat-burnell archived 51.158.119.154 Ubuntu Bionic Beaver [] few seconds ago few seconds ago d4067cdc-dc9d-4810-8a26-0dae51d7df42 false 1 49822f6c-1d32-465c-a017-720691d159b2 Default security group x86_64 +9424a299-8cf3-4125-9471-0d10d4df0412 cli-srv-hopeful-jennings archived 163.172.177.30 Ubuntu Bionic Beaver [] few seconds ago few seconds ago d4067cdc-dc9d-4810-8a26-0dae51d7df42 false 1 49822f6c-1d32-465c-a017-720691d159b2 Default security group x86_64 +e34e7ca4-b5aa-4522-9cba-d16122f041f6 cli-srv-hardcore-einstein running fr-par-1 51.158.120.130 10.68.26.121 Ubuntu Bionic Beaver [] few seconds ago few seconds ago f974feac-abae-4365-b988-8ec7d1cec10d false 1 49822f6c-1d32-465c-a017-720691d159b2 Default security group booting kernel x86_64 +ab14e370-5849-482d-bf00-9878facdff2c cli-srv-dazzling-brahmagupta running fr-par-1 51.158.104.204 10.64.74.147 Ubuntu Bionic Beaver [] few seconds ago few seconds ago f974feac-abae-4365-b988-8ec7d1cec10d false 1 49822f6c-1d32-465c-a017-720691d159b2 Default security group booting kernel x86_64 +80c172d4-aa89-4407-9be3-fa437045b0e8 cli-srv-charming-mirzakhani running fr-par-1 51.15.208.188 10.65.120.115 Ubuntu Bionic Beaver [] few seconds ago few seconds ago f974feac-abae-4365-b988-8ec7d1cec10d false 1 49822f6c-1d32-465c-a017-720691d159b2 Default security group booting kernel x86_64 +fb0d5c19-750d-4df3-a402-3d68ad065514 cli-srv-awesome-villani running fr-par-1 51.15.195.148 10.64.232.127 Ubuntu Bionic Beaver [] few seconds ago few seconds ago f974feac-abae-4365-b988-8ec7d1cec10d false 1 49822f6c-1d32-465c-a017-720691d159b2 Default security group booting kernel x86_64 +ed30e9df-4360-43f8-b02b-dfe23d793a83 cli-srv-zealous-cartwright running fr-par-1 51.158.126.164 10.64.142.157 Ubuntu Bionic Beaver [] few seconds ago few seconds ago f974feac-abae-4365-b988-8ec7d1cec10d false 1 49822f6c-1d32-465c-a017-720691d159b2 Default security group booting kernel x86_64 +aa4fedfc-4937-4ce9-8e05-b5f8b2b5678c scw-dreamy-saha running fr-par-1 51.158.64.183 10.65.26.161 Ubuntu Bionic Beaver [] few seconds ago few seconds ago f974feac-abae-4365-b988-8ec7d1cec10d false 1 49822f6c-1d32-465c-a017-720691d159b2 Default security group booting kernel x86_64 diff --git a/internal/namespaces/instance/v1/testdata/test-server-update-custom-try-to-remove-ip-from-server-without-ip.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-update-custom-try-to-remove-ip-from-server-without-ip.cassette.yaml index fe1eb2efc2..41ca8b3a7b 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-update-custom-try-to-remove-ip-from-server-without-ip.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-update-custom-try-to-remove-ip-from-server-without-ip.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:05 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -637,7 +959,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:25 GMT + - Tue, 11 Feb 2020 13:55:05 GMT Link: - ; rel="last" Server: @@ -654,32 +976,75 @@ interactions: code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:05 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "7ca51a26-7070-4190-b678-924e5e1c8a30", "server": null, "address": - "51.158.110.236"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' headers: Cache-Control: - no-cache Content-Length: - - "172" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:25 GMT + - Tue, 11 Feb 2020 13:55:05 GMT Location: - - https://cp-par1.scaleway.com/ips/7ca51a26-7070-4190-b678-924e5e1c8a30 + - https://cp-par1.scaleway.com/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc Server: - scaleway_api Strict-Transport-Security: @@ -692,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-serene-roentgen","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"7ca51a26-7070-4190-b678-924e5e1c8a30","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-flamboyant-mirzakhani","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"7f7e5c46-ed0a-425f-8d43-d0cfd77386dc","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -714,41 +1079,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:32:25.990506+00:00", - "public_ip": {"dynamic": false, "id": "7ca51a26-7070-4190-b678-924e5e1c8a30", - "address": "51.158.110.236"}, "private_ip": null, "id": "1bed585b-7d80-45b4-bbd6-1d541ee60fe2", - "dynamic_ip_required": false, "modification_date": "2020-02-07T17:32:26.332303+00:00", - "enable_ipv6": false, "hostname": "cli-srv-serene-roentgen", "state": "stopped", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:06.397179+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "5a4467aa-b618-4101-ad57-54c9f2fcbe4b", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:06.678449+00:00", + "enable_ipv6": false, "hostname": "cli-srv-flamboyant-mirzakhani", "state": + "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-serene-roentgen", "protected": + [], "compute_cluster": null, "name": "cli-srv-flamboyant-mirzakhani", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T17:32:26.210629+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:32:25.990506+00:00", "id": - "3daa2bd9-92d7-4a33-992f-320c0b5d33f5", "volume_type": "l_ssd", "server": {"id": - "1bed585b-7d80-45b4-bbd6-1d541ee60fe2", "name": "cli-srv-serene-roentgen"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:55:06.665170+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:06.397179+00:00", "id": + "eddcf1bc-a537-42c9-bf52-89435680e6c5", "volume_type": "l_ssd", "server": {"id": + "5a4467aa-b618-4101-ad57-54c9f2fcbe4b", "name": "cli-srv-flamboyant-mirzakhani"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2856" + - "2875" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:26 GMT + - Tue, 11 Feb 2020 13:55:06 GMT Location: - - https://cp-par1.scaleway.com/servers/1bed585b-7d80-45b4-bbd6-1d541ee60fe2 + - https://cp-par1.scaleway.com/servers/5a4467aa-b618-4101-ad57-54c9f2fcbe4b Server: - scaleway_api Strict-Transport-Security: @@ -765,8 +1130,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1bed585b-7d80-45b4-bbd6-1d541ee60fe2 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5a4467aa-b618-4101-ad57-54c9f2fcbe4b method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -781,39 +1146,39 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:32:25.990506+00:00", - "public_ip": {"dynamic": false, "id": "7ca51a26-7070-4190-b678-924e5e1c8a30", - "address": "51.158.110.236"}, "private_ip": null, "id": "1bed585b-7d80-45b4-bbd6-1d541ee60fe2", - "dynamic_ip_required": false, "modification_date": "2020-02-07T17:32:26.332303+00:00", - "enable_ipv6": false, "hostname": "cli-srv-serene-roentgen", "state": "stopped", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:06.397179+00:00", + "public_ip": {"dynamic": false, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", + "address": "163.172.182.243"}, "private_ip": null, "id": "5a4467aa-b618-4101-ad57-54c9f2fcbe4b", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:06.678449+00:00", + "enable_ipv6": false, "hostname": "cli-srv-flamboyant-mirzakhani", "state": + "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-serene-roentgen", "protected": + [], "compute_cluster": null, "name": "cli-srv-flamboyant-mirzakhani", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T17:32:26.210629+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:32:25.990506+00:00", "id": - "3daa2bd9-92d7-4a33-992f-320c0b5d33f5", "volume_type": "l_ssd", "server": {"id": - "1bed585b-7d80-45b4-bbd6-1d541ee60fe2", "name": "cli-srv-serene-roentgen"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:55:06.665170+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:06.397179+00:00", "id": + "eddcf1bc-a537-42c9-bf52-89435680e6c5", "volume_type": "l_ssd", "server": {"id": + "5a4467aa-b618-4101-ad57-54c9f2fcbe4b", "name": "cli-srv-flamboyant-mirzakhani"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2856" + - "2875" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:26 GMT + - Tue, 11 Feb 2020 13:55:06 GMT Server: - scaleway_api Strict-Transport-Security: @@ -832,24 +1197,24 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7ca51a26-7070-4190-b678-924e5e1c8a30 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc method: PATCH response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "7ca51a26-7070-4190-b678-924e5e1c8a30", "server": null, "address": - "51.158.110.236"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": + "163.172.182.243"}}' headers: Cache-Control: - no-cache Content-Length: - - "172" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:26 GMT + - Tue, 11 Feb 2020 13:55:06 GMT Server: - scaleway_api Strict-Transport-Security: @@ -868,8 +1233,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1bed585b-7d80-45b4-bbd6-1d541ee60fe2 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5a4467aa-b618-4101-ad57-54c9f2fcbe4b method: PATCH response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -884,38 +1249,38 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:32:25.990506+00:00", - "public_ip": null, "private_ip": null, "id": "1bed585b-7d80-45b4-bbd6-1d541ee60fe2", - "dynamic_ip_required": false, "modification_date": "2020-02-07T17:32:26.332303+00:00", - "enable_ipv6": false, "hostname": "cli-srv-serene-roentgen", "state": "stopped", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:06.397179+00:00", + "public_ip": null, "private_ip": null, "id": "5a4467aa-b618-4101-ad57-54c9f2fcbe4b", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:06.678449+00:00", + "enable_ipv6": false, "hostname": "cli-srv-flamboyant-mirzakhani", "state": + "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-serene-roentgen", "protected": + [], "compute_cluster": null, "name": "cli-srv-flamboyant-mirzakhani", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T17:32:26.210629+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:32:25.990506+00:00", "id": - "3daa2bd9-92d7-4a33-992f-320c0b5d33f5", "volume_type": "l_ssd", "server": {"id": - "1bed585b-7d80-45b4-bbd6-1d541ee60fe2", "name": "cli-srv-serene-roentgen"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:55:06.665170+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:06.397179+00:00", "id": + "eddcf1bc-a537-42c9-bf52-89435680e6c5", "volume_type": "l_ssd", "server": {"id": + "5a4467aa-b618-4101-ad57-54c9f2fcbe4b", "name": "cli-srv-flamboyant-mirzakhani"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2767" + - "2785" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:26 GMT + - Tue, 11 Feb 2020 13:55:07 GMT Server: - scaleway_api Strict-Transport-Security: @@ -932,8 +1297,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1bed585b-7d80-45b4-bbd6-1d541ee60fe2 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5a4467aa-b618-4101-ad57-54c9f2fcbe4b method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -948,38 +1313,38 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:32:25.990506+00:00", - "public_ip": null, "private_ip": null, "id": "1bed585b-7d80-45b4-bbd6-1d541ee60fe2", - "dynamic_ip_required": false, "modification_date": "2020-02-07T17:32:26.332303+00:00", - "enable_ipv6": false, "hostname": "cli-srv-serene-roentgen", "state": "stopped", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:06.397179+00:00", + "public_ip": null, "private_ip": null, "id": "5a4467aa-b618-4101-ad57-54c9f2fcbe4b", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:06.678449+00:00", + "enable_ipv6": false, "hostname": "cli-srv-flamboyant-mirzakhani", "state": + "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-serene-roentgen", "protected": + [], "compute_cluster": null, "name": "cli-srv-flamboyant-mirzakhani", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T17:32:26.210629+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:32:25.990506+00:00", "id": - "3daa2bd9-92d7-4a33-992f-320c0b5d33f5", "volume_type": "l_ssd", "server": {"id": - "1bed585b-7d80-45b4-bbd6-1d541ee60fe2", "name": "cli-srv-serene-roentgen"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:55:06.665170+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:06.397179+00:00", "id": + "eddcf1bc-a537-42c9-bf52-89435680e6c5", "volume_type": "l_ssd", "server": {"id": + "5a4467aa-b618-4101-ad57-54c9f2fcbe4b", "name": "cli-srv-flamboyant-mirzakhani"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2767" + - "2785" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:26 GMT + - Tue, 11 Feb 2020 13:55:07 GMT Server: - scaleway_api Strict-Transport-Security: @@ -996,8 +1361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1bed585b-7d80-45b4-bbd6-1d541ee60fe2 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5a4467aa-b618-4101-ad57-54c9f2fcbe4b method: DELETE response: body: "" @@ -1009,7 +1374,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:26 GMT + - Tue, 11 Feb 2020 13:55:07 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1026,8 +1391,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3daa2bd9-92d7-4a33-992f-320c0b5d33f5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eddcf1bc-a537-42c9-bf52-89435680e6c5 method: DELETE response: body: "" @@ -1039,7 +1404,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:27 GMT + - Tue, 11 Feb 2020 13:55:07 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-server-update-custom-update-server-ip-from-server-with-ip.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-update-custom-update-server-ip-from-server-with-ip.cassette.yaml index d9485f6119..4b1d16afdc 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-update-custom-update-server-ip-from-server-with-ip.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-update-custom-update-server-ip-from-server-with-ip.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:10 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -637,7 +959,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:34 GMT + - Tue, 11 Feb 2020 13:55:10 GMT Link: - ; rel="last" Server: @@ -654,32 +976,75 @@ interactions: code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:10 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "ee72771e-75fb-4a65-8051-d63c06a5179b", "server": null, "address": - "51.158.109.87"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "cbbd6687-22e4-41eb-829d-1d70286c8178", "server": null, "address": + "212.47.240.195"}}' headers: Cache-Control: - no-cache Content-Length: - - "171" + - "172" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:37 GMT + - Tue, 11 Feb 2020 13:55:10 GMT Location: - - https://cp-par1.scaleway.com/ips/ee72771e-75fb-4a65-8051-d63c06a5179b + - https://cp-par1.scaleway.com/ips/cbbd6687-22e4-41eb-829d-1d70286c8178 Server: - scaleway_api Strict-Transport-Security: @@ -692,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-nifty-leakey","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"ee72771e-75fb-4a65-8051-d63c06a5179b","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-pedantic-galois","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"cbbd6687-22e4-41eb-829d-1d70286c8178","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -714,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:32:38.206730+00:00", - "public_ip": {"dynamic": false, "id": "ee72771e-75fb-4a65-8051-d63c06a5179b", - "address": "51.158.109.87"}, "private_ip": null, "id": "b30876ec-4fa2-49cc-ba14-cbbe7b9d2512", - "dynamic_ip_required": false, "modification_date": "2020-02-07T17:32:42.168448+00:00", - "enable_ipv6": false, "hostname": "cli-srv-nifty-leakey", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:11.247412+00:00", + "public_ip": {"dynamic": false, "id": "cbbd6687-22e4-41eb-829d-1d70286c8178", + "address": "212.47.240.195"}, "private_ip": null, "id": "c822b345-0aba-4921-bbd1-b24792e63755", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:11.480606+00:00", + "enable_ipv6": false, "hostname": "cli-srv-pedantic-galois", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -726,27 +1091,29 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-nifty-leakey", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:32:41.917357+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:32:38.206730+00:00", "id": - "19bc9fda-7d7b-42a2-b9f9-e0afe537875b", "volume_type": "l_ssd", "server": {"id": - "b30876ec-4fa2-49cc-ba14-cbbe7b9d2512", "name": "cli-srv-nifty-leakey"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + [], "compute_cluster": null, "name": "cli-srv-pedantic-galois", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:55:11.471312+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:11.247412+00:00", "id": + "3e0941a2-853f-4fc7-a71e-b398cd300409", "volume_type": "l_ssd", "server": {"id": + "c822b345-0aba-4921-bbd1-b24792e63755", "name": "cli-srv-pedantic-galois"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2846" + - "2856" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:42 GMT + - Tue, 11 Feb 2020 13:55:11 GMT Location: - - https://cp-par1.scaleway.com/servers/b30876ec-4fa2-49cc-ba14-cbbe7b9d2512 + - https://cp-par1.scaleway.com/servers/c822b345-0aba-4921-bbd1-b24792e63755 Server: - scaleway_api Strict-Transport-Security: @@ -759,32 +1126,32 @@ interactions: code: 201 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "f11d9834-4ac3-4fe9-a024-edaea6687dc3", "server": null, "address": - "51.158.125.124"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "4ad67a2d-3a96-406c-b242-7423365f5cd5", "server": null, "address": + "163.172.189.120"}}' headers: Cache-Control: - no-cache Content-Length: - - "172" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:42 GMT + - Tue, 11 Feb 2020 13:55:11 GMT Location: - - https://cp-par1.scaleway.com/ips/f11d9834-4ac3-4fe9-a024-edaea6687dc3 + - https://cp-par1.scaleway.com/ips/4ad67a2d-3a96-406c-b242-7423365f5cd5 Server: - scaleway_api Strict-Transport-Security: @@ -801,8 +1168,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b30876ec-4fa2-49cc-ba14-cbbe7b9d2512 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c822b345-0aba-4921-bbd1-b24792e63755 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -817,11 +1184,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:32:38.206730+00:00", - "public_ip": {"dynamic": false, "id": "ee72771e-75fb-4a65-8051-d63c06a5179b", - "address": "51.158.109.87"}, "private_ip": null, "id": "b30876ec-4fa2-49cc-ba14-cbbe7b9d2512", - "dynamic_ip_required": false, "modification_date": "2020-02-07T17:32:42.168448+00:00", - "enable_ipv6": false, "hostname": "cli-srv-nifty-leakey", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:11.247412+00:00", + "public_ip": {"dynamic": false, "id": "cbbd6687-22e4-41eb-829d-1d70286c8178", + "address": "212.47.240.195"}, "private_ip": null, "id": "c822b345-0aba-4921-bbd1-b24792e63755", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:11.480606+00:00", + "enable_ipv6": false, "hostname": "cli-srv-pedantic-galois", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -829,25 +1196,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-nifty-leakey", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:32:41.917357+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:32:38.206730+00:00", "id": - "19bc9fda-7d7b-42a2-b9f9-e0afe537875b", "volume_type": "l_ssd", "server": {"id": - "b30876ec-4fa2-49cc-ba14-cbbe7b9d2512", "name": "cli-srv-nifty-leakey"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + [], "compute_cluster": null, "name": "cli-srv-pedantic-galois", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:55:11.471312+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:11.247412+00:00", "id": + "3e0941a2-853f-4fc7-a71e-b398cd300409", "volume_type": "l_ssd", "server": {"id": + "c822b345-0aba-4921-bbd1-b24792e63755", "name": "cli-srv-pedantic-galois"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2846" + - "2856" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:42 GMT + - Tue, 11 Feb 2020 13:55:11 GMT Server: - scaleway_api Strict-Transport-Security: @@ -866,24 +1235,24 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/ee72771e-75fb-4a65-8051-d63c06a5179b + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/cbbd6687-22e4-41eb-829d-1d70286c8178 method: PATCH response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "ee72771e-75fb-4a65-8051-d63c06a5179b", "server": null, "address": - "51.158.109.87"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "cbbd6687-22e4-41eb-829d-1d70286c8178", "server": null, "address": + "212.47.240.195"}}' headers: Cache-Control: - no-cache Content-Length: - - "171" + - "172" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:42 GMT + - Tue, 11 Feb 2020 13:55:11 GMT Server: - scaleway_api Strict-Transport-Security: @@ -896,30 +1265,30 @@ interactions: code: 200 duration: "" - request: - body: '{"server":"b30876ec-4fa2-49cc-ba14-cbbe7b9d2512"}' + body: '{"server":"c822b345-0aba-4921-bbd1-b24792e63755"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.158.125.124 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/163.172.189.120 method: PATCH response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "f11d9834-4ac3-4fe9-a024-edaea6687dc3", "server": {"id": "b30876ec-4fa2-49cc-ba14-cbbe7b9d2512", - "name": "cli-srv-nifty-leakey"}, "address": "51.158.125.124"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "4ad67a2d-3a96-406c-b242-7423365f5cd5", "server": {"id": "c822b345-0aba-4921-bbd1-b24792e63755", + "name": "cli-srv-pedantic-galois"}, "address": "163.172.189.120"}}' headers: Cache-Control: - no-cache Content-Length: - - "246" + - "250" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:42 GMT + - Tue, 11 Feb 2020 13:55:12 GMT Server: - scaleway_api Strict-Transport-Security: @@ -938,8 +1307,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b30876ec-4fa2-49cc-ba14-cbbe7b9d2512 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c822b345-0aba-4921-bbd1-b24792e63755 method: PATCH response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -954,11 +1323,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:32:38.206730+00:00", - "public_ip": {"dynamic": false, "id": "f11d9834-4ac3-4fe9-a024-edaea6687dc3", - "address": "51.158.125.124"}, "private_ip": null, "id": "b30876ec-4fa2-49cc-ba14-cbbe7b9d2512", - "dynamic_ip_required": false, "modification_date": "2020-02-07T17:32:42.168448+00:00", - "enable_ipv6": false, "hostname": "cli-srv-nifty-leakey", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:11.247412+00:00", + "public_ip": {"dynamic": false, "id": "4ad67a2d-3a96-406c-b242-7423365f5cd5", + "address": "163.172.189.120"}, "private_ip": null, "id": "c822b345-0aba-4921-bbd1-b24792e63755", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:11.480606+00:00", + "enable_ipv6": false, "hostname": "cli-srv-pedantic-galois", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -966,25 +1335,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-nifty-leakey", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:32:41.917357+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:32:38.206730+00:00", "id": - "19bc9fda-7d7b-42a2-b9f9-e0afe537875b", "volume_type": "l_ssd", "server": {"id": - "b30876ec-4fa2-49cc-ba14-cbbe7b9d2512", "name": "cli-srv-nifty-leakey"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + [], "compute_cluster": null, "name": "cli-srv-pedantic-galois", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:55:11.471312+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:11.247412+00:00", "id": + "3e0941a2-853f-4fc7-a71e-b398cd300409", "volume_type": "l_ssd", "server": {"id": + "c822b345-0aba-4921-bbd1-b24792e63755", "name": "cli-srv-pedantic-galois"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2847" + - "2857" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:43 GMT + - Tue, 11 Feb 2020 13:55:12 GMT Server: - scaleway_api Strict-Transport-Security: @@ -997,32 +1368,32 @@ interactions: code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "c1f0529d-e82d-4c49-b8b1-d29df9a4c9da", "server": null, "address": - "51.15.131.5"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "2e69545f-2003-4c4e-a00e-dada4bf1a0da", "server": null, "address": + "51.158.65.73"}}' headers: Cache-Control: - no-cache Content-Length: - - "169" + - "170" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:43 GMT + - Tue, 11 Feb 2020 13:55:12 GMT Location: - - https://cp-par1.scaleway.com/ips/c1f0529d-e82d-4c49-b8b1-d29df9a4c9da + - https://cp-par1.scaleway.com/ips/2e69545f-2003-4c4e-a00e-dada4bf1a0da Server: - scaleway_api Strict-Transport-Security: @@ -1039,8 +1410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b30876ec-4fa2-49cc-ba14-cbbe7b9d2512 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c822b345-0aba-4921-bbd1-b24792e63755 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1055,11 +1426,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:32:38.206730+00:00", - "public_ip": {"dynamic": false, "id": "f11d9834-4ac3-4fe9-a024-edaea6687dc3", - "address": "51.158.125.124"}, "private_ip": null, "id": "b30876ec-4fa2-49cc-ba14-cbbe7b9d2512", - "dynamic_ip_required": false, "modification_date": "2020-02-07T17:32:42.168448+00:00", - "enable_ipv6": false, "hostname": "cli-srv-nifty-leakey", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:11.247412+00:00", + "public_ip": {"dynamic": false, "id": "4ad67a2d-3a96-406c-b242-7423365f5cd5", + "address": "163.172.189.120"}, "private_ip": null, "id": "c822b345-0aba-4921-bbd1-b24792e63755", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:11.480606+00:00", + "enable_ipv6": false, "hostname": "cli-srv-pedantic-galois", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1067,25 +1438,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-nifty-leakey", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:32:41.917357+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:32:38.206730+00:00", "id": - "19bc9fda-7d7b-42a2-b9f9-e0afe537875b", "volume_type": "l_ssd", "server": {"id": - "b30876ec-4fa2-49cc-ba14-cbbe7b9d2512", "name": "cli-srv-nifty-leakey"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + [], "compute_cluster": null, "name": "cli-srv-pedantic-galois", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:55:11.471312+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:11.247412+00:00", "id": + "3e0941a2-853f-4fc7-a71e-b398cd300409", "volume_type": "l_ssd", "server": {"id": + "c822b345-0aba-4921-bbd1-b24792e63755", "name": "cli-srv-pedantic-galois"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2847" + - "2857" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:43 GMT + - Tue, 11 Feb 2020 13:55:12 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1104,24 +1477,24 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f11d9834-4ac3-4fe9-a024-edaea6687dc3 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4ad67a2d-3a96-406c-b242-7423365f5cd5 method: PATCH response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "f11d9834-4ac3-4fe9-a024-edaea6687dc3", "server": null, "address": - "51.158.125.124"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "4ad67a2d-3a96-406c-b242-7423365f5cd5", "server": null, "address": + "163.172.189.120"}}' headers: Cache-Control: - no-cache Content-Length: - - "172" + - "173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:43 GMT + - Tue, 11 Feb 2020 13:55:12 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1134,30 +1507,30 @@ interactions: code: 200 duration: "" - request: - body: '{"server":"b30876ec-4fa2-49cc-ba14-cbbe7b9d2512"}' + body: '{"server":"c822b345-0aba-4921-bbd1-b24792e63755"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.131.5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.158.65.73 method: PATCH response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "c1f0529d-e82d-4c49-b8b1-d29df9a4c9da", "server": {"id": "b30876ec-4fa2-49cc-ba14-cbbe7b9d2512", - "name": "cli-srv-nifty-leakey"}, "address": "51.15.131.5"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "2e69545f-2003-4c4e-a00e-dada4bf1a0da", "server": {"id": "c822b345-0aba-4921-bbd1-b24792e63755", + "name": "cli-srv-pedantic-galois"}, "address": "51.158.65.73"}}' headers: Cache-Control: - no-cache Content-Length: - - "243" + - "247" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:44 GMT + - Tue, 11 Feb 2020 13:55:12 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1176,8 +1549,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b30876ec-4fa2-49cc-ba14-cbbe7b9d2512 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c822b345-0aba-4921-bbd1-b24792e63755 method: PATCH response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1192,11 +1565,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:32:38.206730+00:00", - "public_ip": {"dynamic": false, "id": "c1f0529d-e82d-4c49-b8b1-d29df9a4c9da", - "address": "51.15.131.5"}, "private_ip": null, "id": "b30876ec-4fa2-49cc-ba14-cbbe7b9d2512", - "dynamic_ip_required": false, "modification_date": "2020-02-07T17:32:42.168448+00:00", - "enable_ipv6": false, "hostname": "cli-srv-nifty-leakey", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:11.247412+00:00", + "public_ip": {"dynamic": false, "id": "2e69545f-2003-4c4e-a00e-dada4bf1a0da", + "address": "51.158.65.73"}, "private_ip": null, "id": "c822b345-0aba-4921-bbd1-b24792e63755", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:11.480606+00:00", + "enable_ipv6": false, "hostname": "cli-srv-pedantic-galois", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1204,25 +1577,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-nifty-leakey", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:32:41.917357+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:32:38.206730+00:00", "id": - "19bc9fda-7d7b-42a2-b9f9-e0afe537875b", "volume_type": "l_ssd", "server": {"id": - "b30876ec-4fa2-49cc-ba14-cbbe7b9d2512", "name": "cli-srv-nifty-leakey"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + [], "compute_cluster": null, "name": "cli-srv-pedantic-galois", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:55:11.471312+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:11.247412+00:00", "id": + "3e0941a2-853f-4fc7-a71e-b398cd300409", "volume_type": "l_ssd", "server": {"id": + "c822b345-0aba-4921-bbd1-b24792e63755", "name": "cli-srv-pedantic-galois"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2844" + - "2854" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:44 GMT + - Tue, 11 Feb 2020 13:55:13 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1239,8 +1614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b30876ec-4fa2-49cc-ba14-cbbe7b9d2512 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c822b345-0aba-4921-bbd1-b24792e63755 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1255,11 +1630,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:32:38.206730+00:00", - "public_ip": {"dynamic": false, "id": "c1f0529d-e82d-4c49-b8b1-d29df9a4c9da", - "address": "51.15.131.5"}, "private_ip": null, "id": "b30876ec-4fa2-49cc-ba14-cbbe7b9d2512", - "dynamic_ip_required": false, "modification_date": "2020-02-07T17:32:42.168448+00:00", - "enable_ipv6": false, "hostname": "cli-srv-nifty-leakey", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:11.247412+00:00", + "public_ip": {"dynamic": false, "id": "2e69545f-2003-4c4e-a00e-dada4bf1a0da", + "address": "51.158.65.73"}, "private_ip": null, "id": "c822b345-0aba-4921-bbd1-b24792e63755", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:11.480606+00:00", + "enable_ipv6": false, "hostname": "cli-srv-pedantic-galois", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1267,25 +1642,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-nifty-leakey", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T17:32:41.917357+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:32:38.206730+00:00", "id": - "19bc9fda-7d7b-42a2-b9f9-e0afe537875b", "volume_type": "l_ssd", "server": {"id": - "b30876ec-4fa2-49cc-ba14-cbbe7b9d2512", "name": "cli-srv-nifty-leakey"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + [], "compute_cluster": null, "name": "cli-srv-pedantic-galois", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:55:11.471312+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:11.247412+00:00", "id": + "3e0941a2-853f-4fc7-a71e-b398cd300409", "volume_type": "l_ssd", "server": {"id": + "c822b345-0aba-4921-bbd1-b24792e63755", "name": "cli-srv-pedantic-galois"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2844" + - "2854" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:44 GMT + - Tue, 11 Feb 2020 13:55:13 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1302,8 +1679,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b30876ec-4fa2-49cc-ba14-cbbe7b9d2512 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c822b345-0aba-4921-bbd1-b24792e63755 method: DELETE response: body: "" @@ -1315,7 +1692,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:44 GMT + - Tue, 11 Feb 2020 13:55:13 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1332,8 +1709,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c1f0529d-e82d-4c49-b8b1-d29df9a4c9da + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2e69545f-2003-4c4e-a00e-dada4bf1a0da method: DELETE response: body: "" @@ -1345,7 +1722,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:44 GMT + - Tue, 11 Feb 2020 13:55:13 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1362,8 +1739,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/19bc9fda-7d7b-42a2-b9f9-e0afe537875b + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3e0941a2-853f-4fc7-a71e-b398cd300409 method: DELETE response: body: "" @@ -1375,7 +1752,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:44 GMT + - Tue, 11 Feb 2020 13:55:13 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1392,8 +1769,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.158.125.124 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/163.172.189.120 method: DELETE response: body: "" @@ -1405,7 +1782,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:44 GMT + - Tue, 11 Feb 2020 13:55:13 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-server-update-custom-update-server-ip-from-server-without-ip.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-update-custom-update-server-ip-from-server-without-ip.cassette.yaml index 0af27589e6..bca9fa87fd 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-update-custom-update-server-ip-from-server-without-ip.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-update-custom-update-server-ip-from-server-without-ip.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:07 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -637,7 +959,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:31 GMT + - Tue, 11 Feb 2020 13:55:07 GMT Link: - ; rel="last" Server: @@ -654,32 +976,75 @@ interactions: code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:07 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "6e4d66dd-fd26-4a8f-9d12-59fe6de3dde5", "server": null, "address": - "51.158.96.1"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "40c1e028-b51b-44ff-a2f8-d94fa307fddb", "server": null, "address": + "163.172.163.76"}}' headers: Cache-Control: - no-cache Content-Length: - - "169" + - "172" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:31 GMT + - Tue, 11 Feb 2020 13:55:07 GMT Location: - - https://cp-par1.scaleway.com/ips/6e4d66dd-fd26-4a8f-9d12-59fe6de3dde5 + - https://cp-par1.scaleway.com/ips/40c1e028-b51b-44ff-a2f8-d94fa307fddb Server: - scaleway_api Strict-Transport-Security: @@ -692,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-admiring-ardinghelli","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"6e4d66dd-fd26-4a8f-9d12-59fe6de3dde5","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-condescending-rubin","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"40c1e028-b51b-44ff-a2f8-d94fa307fddb","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -714,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:32:32.161276+00:00", - "public_ip": {"dynamic": false, "id": "6e4d66dd-fd26-4a8f-9d12-59fe6de3dde5", - "address": "51.158.96.1"}, "private_ip": null, "id": "9ca6a0e4-92e9-40d1-988a-2dd075e712e1", - "dynamic_ip_required": false, "modification_date": "2020-02-07T17:32:32.472465+00:00", - "enable_ipv6": false, "hostname": "cli-srv-admiring-ardinghelli", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:08.572670+00:00", + "public_ip": {"dynamic": false, "id": "40c1e028-b51b-44ff-a2f8-d94fa307fddb", + "address": "163.172.163.76"}, "private_ip": null, "id": "097e3df1-0029-4b20-bdf2-9dd95ae8e486", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:08.811778+00:00", + "enable_ipv6": false, "hostname": "cli-srv-condescending-rubin", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -726,15 +1091,15 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-admiring-ardinghelli", "protected": + [], "compute_cluster": null, "name": "cli-srv-condescending-rubin", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T17:32:32.370801+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:32:32.161276+00:00", "id": - "f0216576-ad46-4c9a-a861-f710a58fa256", "volume_type": "l_ssd", "server": {"id": - "9ca6a0e4-92e9-40d1-988a-2dd075e712e1", "name": "cli-srv-admiring-ardinghelli"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:55:08.797825+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:08.572670+00:00", "id": + "cbdd4c5a-9e26-46f3-ae57-5f12b53abeb5", "volume_type": "l_ssd", "server": {"id": + "097e3df1-0029-4b20-bdf2-9dd95ae8e486", "name": "cli-srv-condescending-rubin"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: @@ -746,9 +1111,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:32 GMT + - Tue, 11 Feb 2020 13:55:08 GMT Location: - - https://cp-par1.scaleway.com/servers/9ca6a0e4-92e9-40d1-988a-2dd075e712e1 + - https://cp-par1.scaleway.com/servers/097e3df1-0029-4b20-bdf2-9dd95ae8e486 Server: - scaleway_api Strict-Transport-Security: @@ -761,32 +1126,32 @@ interactions: code: 201 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "ee72771e-75fb-4a65-8051-d63c06a5179b", "server": null, "address": - "51.158.109.87"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "a7a59b60-8570-403f-8dbe-9b2519b2ea93", "server": null, "address": + "51.158.65.27"}}' headers: Cache-Control: - no-cache Content-Length: - - "171" + - "170" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:32 GMT + - Tue, 11 Feb 2020 13:55:08 GMT Location: - - https://cp-par1.scaleway.com/ips/ee72771e-75fb-4a65-8051-d63c06a5179b + - https://cp-par1.scaleway.com/ips/a7a59b60-8570-403f-8dbe-9b2519b2ea93 Server: - scaleway_api Strict-Transport-Security: @@ -803,8 +1168,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ca6a0e4-92e9-40d1-988a-2dd075e712e1 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/097e3df1-0029-4b20-bdf2-9dd95ae8e486 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -819,11 +1184,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:32:32.161276+00:00", - "public_ip": {"dynamic": false, "id": "6e4d66dd-fd26-4a8f-9d12-59fe6de3dde5", - "address": "51.158.96.1"}, "private_ip": null, "id": "9ca6a0e4-92e9-40d1-988a-2dd075e712e1", - "dynamic_ip_required": false, "modification_date": "2020-02-07T17:32:32.472465+00:00", - "enable_ipv6": false, "hostname": "cli-srv-admiring-ardinghelli", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:08.572670+00:00", + "public_ip": {"dynamic": false, "id": "40c1e028-b51b-44ff-a2f8-d94fa307fddb", + "address": "163.172.163.76"}, "private_ip": null, "id": "097e3df1-0029-4b20-bdf2-9dd95ae8e486", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:08.811778+00:00", + "enable_ipv6": false, "hostname": "cli-srv-condescending-rubin", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -831,15 +1196,15 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-admiring-ardinghelli", "protected": + [], "compute_cluster": null, "name": "cli-srv-condescending-rubin", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T17:32:32.370801+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:32:32.161276+00:00", "id": - "f0216576-ad46-4c9a-a861-f710a58fa256", "volume_type": "l_ssd", "server": {"id": - "9ca6a0e4-92e9-40d1-988a-2dd075e712e1", "name": "cli-srv-admiring-ardinghelli"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:55:08.797825+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:08.572670+00:00", "id": + "cbdd4c5a-9e26-46f3-ae57-5f12b53abeb5", "volume_type": "l_ssd", "server": {"id": + "097e3df1-0029-4b20-bdf2-9dd95ae8e486", "name": "cli-srv-condescending-rubin"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: @@ -851,7 +1216,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:32 GMT + - Tue, 11 Feb 2020 13:55:09 GMT Server: - scaleway_api Strict-Transport-Security: @@ -870,24 +1235,24 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e4d66dd-fd26-4a8f-9d12-59fe6de3dde5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/40c1e028-b51b-44ff-a2f8-d94fa307fddb method: PATCH response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "6e4d66dd-fd26-4a8f-9d12-59fe6de3dde5", "server": null, "address": - "51.158.96.1"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "40c1e028-b51b-44ff-a2f8-d94fa307fddb", "server": null, "address": + "163.172.163.76"}}' headers: Cache-Control: - no-cache Content-Length: - - "169" + - "172" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:33 GMT + - Tue, 11 Feb 2020 13:55:09 GMT Server: - scaleway_api Strict-Transport-Security: @@ -900,30 +1265,30 @@ interactions: code: 200 duration: "" - request: - body: '{"server":"9ca6a0e4-92e9-40d1-988a-2dd075e712e1"}' + body: '{"server":"097e3df1-0029-4b20-bdf2-9dd95ae8e486"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.158.109.87 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.158.65.27 method: PATCH response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "ee72771e-75fb-4a65-8051-d63c06a5179b", "server": {"id": "9ca6a0e4-92e9-40d1-988a-2dd075e712e1", - "name": "cli-srv-admiring-ardinghelli"}, "address": "51.158.109.87"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "a7a59b60-8570-403f-8dbe-9b2519b2ea93", "server": {"id": "097e3df1-0029-4b20-bdf2-9dd95ae8e486", + "name": "cli-srv-condescending-rubin"}, "address": "51.158.65.27"}}' headers: Cache-Control: - no-cache Content-Length: - - "253" + - "251" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:33 GMT + - Tue, 11 Feb 2020 13:55:09 GMT Server: - scaleway_api Strict-Transport-Security: @@ -942,8 +1307,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ca6a0e4-92e9-40d1-988a-2dd075e712e1 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/097e3df1-0029-4b20-bdf2-9dd95ae8e486 method: PATCH response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -958,11 +1323,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:32:32.161276+00:00", - "public_ip": {"dynamic": false, "id": "ee72771e-75fb-4a65-8051-d63c06a5179b", - "address": "51.158.109.87"}, "private_ip": null, "id": "9ca6a0e4-92e9-40d1-988a-2dd075e712e1", - "dynamic_ip_required": false, "modification_date": "2020-02-07T17:32:32.472465+00:00", - "enable_ipv6": false, "hostname": "cli-srv-admiring-ardinghelli", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:08.572670+00:00", + "public_ip": {"dynamic": false, "id": "a7a59b60-8570-403f-8dbe-9b2519b2ea93", + "address": "51.158.65.27"}, "private_ip": null, "id": "097e3df1-0029-4b20-bdf2-9dd95ae8e486", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:08.811778+00:00", + "enable_ipv6": false, "hostname": "cli-srv-condescending-rubin", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -970,27 +1335,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-admiring-ardinghelli", "protected": + [], "compute_cluster": null, "name": "cli-srv-condescending-rubin", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T17:32:32.370801+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:32:32.161276+00:00", "id": - "f0216576-ad46-4c9a-a861-f710a58fa256", "volume_type": "l_ssd", "server": {"id": - "9ca6a0e4-92e9-40d1-988a-2dd075e712e1", "name": "cli-srv-admiring-ardinghelli"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:55:08.797825+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:08.572670+00:00", "id": + "cbdd4c5a-9e26-46f3-ae57-5f12b53abeb5", "volume_type": "l_ssd", "server": {"id": + "097e3df1-0029-4b20-bdf2-9dd95ae8e486", "name": "cli-srv-condescending-rubin"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2870" + - "2866" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:33 GMT + - Tue, 11 Feb 2020 13:55:09 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1007,8 +1372,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ca6a0e4-92e9-40d1-988a-2dd075e712e1 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/097e3df1-0029-4b20-bdf2-9dd95ae8e486 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1023,11 +1388,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T17:32:32.161276+00:00", - "public_ip": {"dynamic": false, "id": "ee72771e-75fb-4a65-8051-d63c06a5179b", - "address": "51.158.109.87"}, "private_ip": null, "id": "9ca6a0e4-92e9-40d1-988a-2dd075e712e1", - "dynamic_ip_required": false, "modification_date": "2020-02-07T17:32:32.472465+00:00", - "enable_ipv6": false, "hostname": "cli-srv-admiring-ardinghelli", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:08.572670+00:00", + "public_ip": {"dynamic": false, "id": "a7a59b60-8570-403f-8dbe-9b2519b2ea93", + "address": "51.158.65.27"}, "private_ip": null, "id": "097e3df1-0029-4b20-bdf2-9dd95ae8e486", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:08.811778+00:00", + "enable_ipv6": false, "hostname": "cli-srv-condescending-rubin", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -1035,27 +1400,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-admiring-ardinghelli", "protected": + [], "compute_cluster": null, "name": "cli-srv-condescending-rubin", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T17:32:32.370801+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T17:32:32.161276+00:00", "id": - "f0216576-ad46-4c9a-a861-f710a58fa256", "volume_type": "l_ssd", "server": {"id": - "9ca6a0e4-92e9-40d1-988a-2dd075e712e1", "name": "cli-srv-admiring-ardinghelli"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:55:08.797825+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:08.572670+00:00", "id": + "cbdd4c5a-9e26-46f3-ae57-5f12b53abeb5", "volume_type": "l_ssd", "server": {"id": + "097e3df1-0029-4b20-bdf2-9dd95ae8e486", "name": "cli-srv-condescending-rubin"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2870" + - "2866" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:33 GMT + - Tue, 11 Feb 2020 13:55:09 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1072,8 +1437,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ca6a0e4-92e9-40d1-988a-2dd075e712e1 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/097e3df1-0029-4b20-bdf2-9dd95ae8e486 method: DELETE response: body: "" @@ -1085,7 +1450,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:33 GMT + - Tue, 11 Feb 2020 13:55:09 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1102,8 +1467,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/ee72771e-75fb-4a65-8051-d63c06a5179b + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/a7a59b60-8570-403f-8dbe-9b2519b2ea93 method: DELETE response: body: "" @@ -1115,7 +1480,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:33 GMT + - Tue, 11 Feb 2020 13:55:09 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1132,8 +1497,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f0216576-ad46-4c9a-a861-f710a58fa256 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cbdd4c5a-9e26-46f3-ae57-5f12b53abeb5 method: DELETE response: body: "" @@ -1145,7 +1510,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 17:32:33 GMT + - Tue, 11 Feb 2020 13:55:10 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-server-update-custom-update-server-placement-group-id-from-server-with-placement-group-id.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-update-custom-update-server-placement-group-id-from-server-with-placement-group-id.cassette.yaml index 52788bb911..e2ce610ba9 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-update-custom-update-server-placement-group-id-from-server-with-placement-group-id.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-update-custom-update-server-placement-group-id-from-server-with-placement-group-id.cassette.yaml @@ -2,19 +2,19 @@ version: 1 interactions: - request: - body: '{"name":"cli-pg-competent-turing","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f","policy_mode":"optional","policy_type":"max_availability"}' + body: '{"name":"cli-pg-infallible-yalow","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd","policy_mode":"optional","policy_type":"max_availability"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups method: POST response: - body: '{"placement_group": {"name": "cli-pg-competent-turing", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "6d7b6173-9181-4aa2-bfbf-9d9aab1968ca"}}' + body: '{"placement_group": {"name": "cli-pg-infallible-yalow", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "abfee422-8aa0-4309-826c-28d825816d4f"}}' headers: Cache-Control: - no-cache @@ -25,9 +25,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:48:50 GMT + - Tue, 11 Feb 2020 13:55:13 GMT Location: - - https://cp-par1.scaleway.com/placement_groups/6d7b6173-9181-4aa2-bfbf-9d9aab1968ca + - https://cp-par1.scaleway.com/placement_groups/abfee422-8aa0-4309-826c-28d825816d4f Server: - scaleway_api Strict-Transport-Security: @@ -40,32 +40,32 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-pg-funny-robinson","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f","policy_mode":"optional","policy_type":"max_availability"}' + body: '{"name":"cli-pg-great-panini","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd","policy_mode":"optional","policy_type":"max_availability"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups method: POST response: - body: '{"placement_group": {"name": "cli-pg-funny-robinson", "policy_mode": "optional", - "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "8bb433d3-a32f-410d-af3e-3cd400a50b2d"}}' + body: '{"placement_group": {"name": "cli-pg-great-panini", "policy_mode": "optional", + "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "1e786826-08d0-46a1-9206-eb5c6dfda978"}}' headers: Cache-Control: - no-cache Content-Length: - - "244" + - "242" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:48:50 GMT + - Tue, 11 Feb 2020 13:55:13 GMT Location: - - https://cp-par1.scaleway.com/placement_groups/8bb433d3-a32f-410d-af3e-3cd400a50b2d + - https://cp-par1.scaleway.com/placement_groups/1e786826-08d0-46a1-9206-eb5c6dfda978 Server: - scaleway_api Strict-Transport-Security: @@ -82,7 +82,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:13 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -713,7 +1035,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:48:50 GMT + - Tue, 11 Feb 2020 13:55:13 GMT Link: - ; rel="last" Server: @@ -730,19 +1052,62 @@ interactions: code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:14 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "b29e5093-5409-4733-a1cc-e46092e9f5d9", "server": null, "address": - "163.172.168.222"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "3a7dc85a-3ee4-4bdb-9cd3-95a0e8902bd7", "server": null, "address": + "163.172.133.103"}}' headers: Cache-Control: - no-cache @@ -753,9 +1118,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:48:50 GMT + - Tue, 11 Feb 2020 13:55:14 GMT Location: - - https://cp-par1.scaleway.com/ips/b29e5093-5409-4733-a1cc-e46092e9f5d9 + - https://cp-par1.scaleway.com/ips/3a7dc85a-3ee4-4bdb-9cd3-95a0e8902bd7 Server: - scaleway_api Strict-Transport-Security: @@ -768,13 +1133,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-bold-vaughan","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"b29e5093-5409-4733-a1cc-e46092e9f5d9","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f","placement_group":"6d7b6173-9181-4aa2-bfbf-9d9aab1968ca"}' + body: '{"name":"cli-srv-reverent-lewin","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"3a7dc85a-3ee4-4bdb-9cd3-95a0e8902bd7","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd","placement_group":"abfee422-8aa0-4309-826c-28d825816d4f"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -790,44 +1155,45 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:48:51.554199+00:00", - "public_ip": {"dynamic": false, "id": "b29e5093-5409-4733-a1cc-e46092e9f5d9", - "address": "163.172.168.222"}, "private_ip": null, "id": "04eaddea-1391-409c-86d8-1afc48a5c58c", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:48:51.947048+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-vaughan", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:15.120993+00:00", + "public_ip": {"dynamic": false, "id": "3a7dc85a-3ee4-4bdb-9cd3-95a0e8902bd7", + "address": "163.172.133.103"}, "private_ip": null, "id": "ce694b23-e170-499b-887a-5b67b2469d8a", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:15.441338+00:00", + "enable_ipv6": false, "hostname": "cli-srv-reverent-lewin", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-competent-turing", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "6d7b6173-9181-4aa2-bfbf-9d9aab1968ca"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-competent-turing", + "DEV1-S", "placement_group": {"name": "cli-pg-infallible-yalow", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "abfee422-8aa0-4309-826c-28d825816d4f"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-infallible-yalow", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "6d7b6173-9181-4aa2-bfbf-9d9aab1968ca"}, - "name": "cli-srv-bold-vaughan", "protected": false, "volumes": {"0": {"size": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "abfee422-8aa0-4309-826c-28d825816d4f"}, + "name": "cli-srv-reverent-lewin", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:48:51.858801+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:48:51.554199+00:00", "id": - "3afd8d57-a597-4072-93b9-3a6e297a6425", "volume_type": "l_ssd", "server": {"id": - "04eaddea-1391-409c-86d8-1afc48a5c58c", "name": "cli-srv-bold-vaughan"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:55:15.422130+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:15.120993+00:00", "id": + "c0bf3e5a-361e-4e35-81c1-d4cb58fe0ab4", "volume_type": "l_ssd", "server": {"id": + "ce694b23-e170-499b-887a-5b67b2469d8a", "name": "cli-srv-reverent-lewin"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "3290" + - "3296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:48:51 GMT + - Tue, 11 Feb 2020 13:55:15 GMT Location: - - https://cp-par1.scaleway.com/servers/04eaddea-1391-409c-86d8-1afc48a5c58c + - https://cp-par1.scaleway.com/servers/ce694b23-e170-499b-887a-5b67b2469d8a Server: - scaleway_api Strict-Transport-Security: @@ -844,8 +1210,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/04eaddea-1391-409c-86d8-1afc48a5c58c + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce694b23-e170-499b-887a-5b67b2469d8a method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -860,42 +1226,43 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:48:51.554199+00:00", - "public_ip": {"dynamic": false, "id": "b29e5093-5409-4733-a1cc-e46092e9f5d9", - "address": "163.172.168.222"}, "private_ip": null, "id": "04eaddea-1391-409c-86d8-1afc48a5c58c", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:48:51.947048+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-vaughan", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:15.120993+00:00", + "public_ip": {"dynamic": false, "id": "3a7dc85a-3ee4-4bdb-9cd3-95a0e8902bd7", + "address": "163.172.133.103"}, "private_ip": null, "id": "ce694b23-e170-499b-887a-5b67b2469d8a", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:15.441338+00:00", + "enable_ipv6": false, "hostname": "cli-srv-reverent-lewin", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-competent-turing", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "6d7b6173-9181-4aa2-bfbf-9d9aab1968ca"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-competent-turing", + "DEV1-S", "placement_group": {"name": "cli-pg-infallible-yalow", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "abfee422-8aa0-4309-826c-28d825816d4f"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-infallible-yalow", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "6d7b6173-9181-4aa2-bfbf-9d9aab1968ca"}, - "name": "cli-srv-bold-vaughan", "protected": false, "volumes": {"0": {"size": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "abfee422-8aa0-4309-826c-28d825816d4f"}, + "name": "cli-srv-reverent-lewin", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:48:51.858801+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:48:51.554199+00:00", "id": - "3afd8d57-a597-4072-93b9-3a6e297a6425", "volume_type": "l_ssd", "server": {"id": - "04eaddea-1391-409c-86d8-1afc48a5c58c", "name": "cli-srv-bold-vaughan"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:55:15.422130+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:15.120993+00:00", "id": + "c0bf3e5a-361e-4e35-81c1-d4cb58fe0ab4", "volume_type": "l_ssd", "server": {"id": + "ce694b23-e170-499b-887a-5b67b2469d8a", "name": "cli-srv-reverent-lewin"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "3290" + - "3296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:48:51 GMT + - Tue, 11 Feb 2020 13:55:15 GMT Server: - scaleway_api Strict-Transport-Security: @@ -908,14 +1275,14 @@ interactions: code: 200 duration: "" - request: - body: '{"placement_group":"8bb433d3-a32f-410d-af3e-3cd400a50b2d"}' + body: '{"placement_group":"1e786826-08d0-46a1-9206-eb5c6dfda978"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/04eaddea-1391-409c-86d8-1afc48a5c58c + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce694b23-e170-499b-887a-5b67b2469d8a method: PATCH response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -930,42 +1297,43 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:48:51.554199+00:00", - "public_ip": {"dynamic": false, "id": "b29e5093-5409-4733-a1cc-e46092e9f5d9", - "address": "163.172.168.222"}, "private_ip": null, "id": "04eaddea-1391-409c-86d8-1afc48a5c58c", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:48:52.392484+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-vaughan", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:15.120993+00:00", + "public_ip": {"dynamic": false, "id": "3a7dc85a-3ee4-4bdb-9cd3-95a0e8902bd7", + "address": "163.172.133.103"}, "private_ip": null, "id": "ce694b23-e170-499b-887a-5b67b2469d8a", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:15.819631+00:00", + "enable_ipv6": false, "hostname": "cli-srv-reverent-lewin", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-funny-robinson", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "8bb433d3-a32f-410d-af3e-3cd400a50b2d"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-funny-robinson", + "DEV1-S", "placement_group": {"name": "cli-pg-great-panini", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "1e786826-08d0-46a1-9206-eb5c6dfda978"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-great-panini", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "8bb433d3-a32f-410d-af3e-3cd400a50b2d"}, - "name": "cli-srv-bold-vaughan", "protected": false, "volumes": {"0": {"size": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "1e786826-08d0-46a1-9206-eb5c6dfda978"}, + "name": "cli-srv-reverent-lewin", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:48:51.858801+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:48:51.554199+00:00", "id": - "3afd8d57-a597-4072-93b9-3a6e297a6425", "volume_type": "l_ssd", "server": {"id": - "04eaddea-1391-409c-86d8-1afc48a5c58c", "name": "cli-srv-bold-vaughan"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:55:15.422130+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:15.120993+00:00", "id": + "c0bf3e5a-361e-4e35-81c1-d4cb58fe0ab4", "volume_type": "l_ssd", "server": {"id": + "ce694b23-e170-499b-887a-5b67b2469d8a", "name": "cli-srv-reverent-lewin"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "3286" + - "3288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:48:52 GMT + - Tue, 11 Feb 2020 13:55:15 GMT Server: - scaleway_api Strict-Transport-Security: @@ -982,8 +1350,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/04eaddea-1391-409c-86d8-1afc48a5c58c + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce694b23-e170-499b-887a-5b67b2469d8a method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -998,42 +1366,43 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:48:51.554199+00:00", - "public_ip": {"dynamic": false, "id": "b29e5093-5409-4733-a1cc-e46092e9f5d9", - "address": "163.172.168.222"}, "private_ip": null, "id": "04eaddea-1391-409c-86d8-1afc48a5c58c", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:48:52.392484+00:00", - "enable_ipv6": false, "hostname": "cli-srv-bold-vaughan", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:15.120993+00:00", + "public_ip": {"dynamic": false, "id": "3a7dc85a-3ee4-4bdb-9cd3-95a0e8902bd7", + "address": "163.172.133.103"}, "private_ip": null, "id": "ce694b23-e170-499b-887a-5b67b2469d8a", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:15.819631+00:00", + "enable_ipv6": false, "hostname": "cli-srv-reverent-lewin", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-funny-robinson", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "8bb433d3-a32f-410d-af3e-3cd400a50b2d"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-funny-robinson", + "DEV1-S", "placement_group": {"name": "cli-pg-great-panini", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "1e786826-08d0-46a1-9206-eb5c6dfda978"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-great-panini", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "8bb433d3-a32f-410d-af3e-3cd400a50b2d"}, - "name": "cli-srv-bold-vaughan", "protected": false, "volumes": {"0": {"size": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "1e786826-08d0-46a1-9206-eb5c6dfda978"}, + "name": "cli-srv-reverent-lewin", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:48:51.858801+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:48:51.554199+00:00", "id": - "3afd8d57-a597-4072-93b9-3a6e297a6425", "volume_type": "l_ssd", "server": {"id": - "04eaddea-1391-409c-86d8-1afc48a5c58c", "name": "cli-srv-bold-vaughan"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:55:15.422130+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:15.120993+00:00", "id": + "c0bf3e5a-361e-4e35-81c1-d4cb58fe0ab4", "volume_type": "l_ssd", "server": {"id": + "ce694b23-e170-499b-887a-5b67b2469d8a", "name": "cli-srv-reverent-lewin"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "3286" + - "3288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:48:52 GMT + - Tue, 11 Feb 2020 13:55:15 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1050,8 +1419,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/04eaddea-1391-409c-86d8-1afc48a5c58c + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce694b23-e170-499b-887a-5b67b2469d8a method: DELETE response: body: "" @@ -1063,7 +1432,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:48:52 GMT + - Tue, 11 Feb 2020 13:55:15 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1080,8 +1449,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/b29e5093-5409-4733-a1cc-e46092e9f5d9 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/3a7dc85a-3ee4-4bdb-9cd3-95a0e8902bd7 method: DELETE response: body: "" @@ -1093,7 +1462,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:48:52 GMT + - Tue, 11 Feb 2020 13:55:15 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1110,8 +1479,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3afd8d57-a597-4072-93b9-3a6e297a6425 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c0bf3e5a-361e-4e35-81c1-d4cb58fe0ab4 method: DELETE response: body: "" @@ -1123,7 +1492,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:48:52 GMT + - Tue, 11 Feb 2020 13:55:16 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1140,8 +1509,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/6d7b6173-9181-4aa2-bfbf-9d9aab1968ca + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/abfee422-8aa0-4309-826c-28d825816d4f method: DELETE response: body: "" @@ -1153,7 +1522,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:48:52 GMT + - Tue, 11 Feb 2020 13:55:16 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1170,8 +1539,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8bb433d3-a32f-410d-af3e-3cd400a50b2d + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/1e786826-08d0-46a1-9206-eb5c6dfda978 method: DELETE response: body: "" @@ -1183,7 +1552,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:48:52 GMT + - Tue, 11 Feb 2020 13:55:16 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-server-update-initial-placement-group&-placement-group-id=.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-update-initial-placement-group&-placement-group-id=.cassette.yaml index 440b581826..c2ecda2987 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-update-initial-placement-group&-placement-group-id=.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-update-initial-placement-group&-placement-group-id=.cassette.yaml @@ -2,32 +2,32 @@ version: 1 interactions: - request: - body: '{"name":"cli-pg-wizardly-brown","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f","policy_mode":"optional","policy_type":"max_availability"}' + body: '{"name":"cli-pg-blissful-boyd","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd","policy_mode":"optional","policy_type":"max_availability"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups method: POST response: - body: '{"placement_group": {"name": "cli-pg-wizardly-brown", "policy_mode": "optional", - "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "41a51afe-1d0e-48b1-8439-227f78fc0fc2"}}' + body: '{"placement_group": {"name": "cli-pg-blissful-boyd", "policy_mode": "optional", + "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "61b47a3e-e460-4d30-ab26-334b08435f35"}}' headers: Cache-Control: - no-cache Content-Length: - - "244" + - "243" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:30:38 GMT + - Tue, 11 Feb 2020 13:55:31 GMT Location: - - https://cp-par1.scaleway.com/placement_groups/41a51afe-1d0e-48b1-8439-227f78fc0fc2 + - https://cp-par1.scaleway.com/placement_groups/61b47a3e-e460-4d30-ab26-334b08435f35 Server: - scaleway_api Strict-Transport-Security: @@ -44,7 +44,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:31 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -675,7 +997,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:30:38 GMT + - Tue, 11 Feb 2020 13:55:31 GMT Link: - ; rel="last" Server: @@ -692,32 +1014,75 @@ interactions: code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:31 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "902dae7f-302d-4be3-a821-f361b652f308", "server": null, "address": - "51.15.134.93"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "9a4a02ad-8e72-4852-88f5-06b728285ced", "server": null, "address": + "212.47.241.105"}}' headers: Cache-Control: - no-cache Content-Length: - - "170" + - "172" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:30:40 GMT + - Tue, 11 Feb 2020 13:55:32 GMT Location: - - https://cp-par1.scaleway.com/ips/902dae7f-302d-4be3-a821-f361b652f308 + - https://cp-par1.scaleway.com/ips/9a4a02ad-8e72-4852-88f5-06b728285ced Server: - scaleway_api Strict-Transport-Security: @@ -730,13 +1095,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-gracious-diffie","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"902dae7f-302d-4be3-a821-f361b652f308","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f","placement_group":"41a51afe-1d0e-48b1-8439-227f78fc0fc2"}' + body: '{"name":"cli-srv-sharp-antonelli","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"9a4a02ad-8e72-4852-88f5-06b728285ced","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd","placement_group":"61b47a3e-e460-4d30-ab26-334b08435f35"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -752,31 +1117,31 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:30:41.533127+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "443291f9-66ed-410f-b863-28e4cf04d91e", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:30:44.022729+00:00", - "enable_ipv6": false, "hostname": "cli-srv-gracious-diffie", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:32.877108+00:00", + "public_ip": {"dynamic": false, "id": "9a4a02ad-8e72-4852-88f5-06b728285ced", + "address": "212.47.241.105"}, "private_ip": null, "id": "2e12dd7a-89a3-4b1c-9965-3a0d6a68c85d", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:33.149437+00:00", + "enable_ipv6": false, "hostname": "cli-srv-sharp-antonelli", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-wizardly-brown", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "41a51afe-1d0e-48b1-8439-227f78fc0fc2"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-wizardly-brown", + "DEV1-S", "placement_group": {"name": "cli-pg-blissful-boyd", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "61b47a3e-e460-4d30-ab26-334b08435f35"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-blissful-boyd", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "41a51afe-1d0e-48b1-8439-227f78fc0fc2"}, - "name": "cli-srv-gracious-diffie", "protected": false, "volumes": {"0": {"size": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "61b47a3e-e460-4d30-ab26-334b08435f35"}, + "name": "cli-srv-sharp-antonelli", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:30:43.926321+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:30:41.533127+00:00", "id": - "929f1b25-4db0-4d57-83d5-6ed8dd032c90", "volume_type": "l_ssd", "server": {"id": - "443291f9-66ed-410f-b863-28e4cf04d91e", "name": "cli-srv-gracious-diffie"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "modification_date": "2020-02-11T13:55:33.135835+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:32.877108+00:00", "id": + "f595ca67-7e5a-4ea8-9e8a-971a631bea67", "volume_type": "l_ssd", "server": {"id": + "2e12dd7a-89a3-4b1c-9965-3a0d6a68c85d", "name": "cli-srv-sharp-antonelli"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: @@ -788,9 +1153,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:30:43 GMT + - Tue, 11 Feb 2020 13:55:32 GMT Location: - - https://cp-par1.scaleway.com/servers/443291f9-66ed-410f-b863-28e4cf04d91e + - https://cp-par1.scaleway.com/servers/2e12dd7a-89a3-4b1c-9965-3a0d6a68c85d Server: - scaleway_api Strict-Transport-Security: @@ -807,8 +1172,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/443291f9-66ed-410f-b863-28e4cf04d91e + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2e12dd7a-89a3-4b1c-9965-3a0d6a68c85d method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -823,31 +1188,31 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:30:41.533127+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "443291f9-66ed-410f-b863-28e4cf04d91e", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:30:44.022729+00:00", - "enable_ipv6": false, "hostname": "cli-srv-gracious-diffie", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:32.877108+00:00", + "public_ip": {"dynamic": false, "id": "9a4a02ad-8e72-4852-88f5-06b728285ced", + "address": "212.47.241.105"}, "private_ip": null, "id": "2e12dd7a-89a3-4b1c-9965-3a0d6a68c85d", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:33.149437+00:00", + "enable_ipv6": false, "hostname": "cli-srv-sharp-antonelli", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-wizardly-brown", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "41a51afe-1d0e-48b1-8439-227f78fc0fc2"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-wizardly-brown", + "DEV1-S", "placement_group": {"name": "cli-pg-blissful-boyd", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "61b47a3e-e460-4d30-ab26-334b08435f35"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-blissful-boyd", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "41a51afe-1d0e-48b1-8439-227f78fc0fc2"}, - "name": "cli-srv-gracious-diffie", "protected": false, "volumes": {"0": {"size": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "61b47a3e-e460-4d30-ab26-334b08435f35"}, + "name": "cli-srv-sharp-antonelli", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:30:43.926321+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:30:41.533127+00:00", "id": - "929f1b25-4db0-4d57-83d5-6ed8dd032c90", "volume_type": "l_ssd", "server": {"id": - "443291f9-66ed-410f-b863-28e4cf04d91e", "name": "cli-srv-gracious-diffie"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "modification_date": "2020-02-11T13:55:33.135835+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:32.877108+00:00", "id": + "f595ca67-7e5a-4ea8-9e8a-971a631bea67", "volume_type": "l_ssd", "server": {"id": + "2e12dd7a-89a3-4b1c-9965-3a0d6a68c85d", "name": "cli-srv-sharp-antonelli"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: @@ -859,7 +1224,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:30:44 GMT + - Tue, 11 Feb 2020 13:55:33 GMT Server: - scaleway_api Strict-Transport-Security: @@ -872,14 +1237,14 @@ interactions: code: 200 duration: "" - request: - body: '{"placement_group":"41a51afe-1d0e-48b1-8439-227f78fc0fc2"}' + body: '{"placement_group":"61b47a3e-e460-4d30-ab26-334b08435f35"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/443291f9-66ed-410f-b863-28e4cf04d91e + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2e12dd7a-89a3-4b1c-9965-3a0d6a68c85d method: PATCH response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -894,31 +1259,31 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:30:41.533127+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "443291f9-66ed-410f-b863-28e4cf04d91e", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:30:44.022729+00:00", - "enable_ipv6": false, "hostname": "cli-srv-gracious-diffie", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:32.877108+00:00", + "public_ip": {"dynamic": false, "id": "9a4a02ad-8e72-4852-88f5-06b728285ced", + "address": "212.47.241.105"}, "private_ip": null, "id": "2e12dd7a-89a3-4b1c-9965-3a0d6a68c85d", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:33.149437+00:00", + "enable_ipv6": false, "hostname": "cli-srv-sharp-antonelli", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-wizardly-brown", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "41a51afe-1d0e-48b1-8439-227f78fc0fc2"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-wizardly-brown", + "DEV1-S", "placement_group": {"name": "cli-pg-blissful-boyd", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "61b47a3e-e460-4d30-ab26-334b08435f35"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-blissful-boyd", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "41a51afe-1d0e-48b1-8439-227f78fc0fc2"}, - "name": "cli-srv-gracious-diffie", "protected": false, "volumes": {"0": {"size": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "61b47a3e-e460-4d30-ab26-334b08435f35"}, + "name": "cli-srv-sharp-antonelli", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:30:43.926321+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:30:41.533127+00:00", "id": - "929f1b25-4db0-4d57-83d5-6ed8dd032c90", "volume_type": "l_ssd", "server": {"id": - "443291f9-66ed-410f-b863-28e4cf04d91e", "name": "cli-srv-gracious-diffie"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "modification_date": "2020-02-11T13:55:33.135835+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:32.877108+00:00", "id": + "f595ca67-7e5a-4ea8-9e8a-971a631bea67", "volume_type": "l_ssd", "server": {"id": + "2e12dd7a-89a3-4b1c-9965-3a0d6a68c85d", "name": "cli-srv-sharp-antonelli"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: @@ -930,7 +1295,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:30:44 GMT + - Tue, 11 Feb 2020 13:55:33 GMT Server: - scaleway_api Strict-Transport-Security: @@ -947,8 +1312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/443291f9-66ed-410f-b863-28e4cf04d91e + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2e12dd7a-89a3-4b1c-9965-3a0d6a68c85d method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -963,31 +1328,31 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:30:41.533127+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "443291f9-66ed-410f-b863-28e4cf04d91e", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:30:44.022729+00:00", - "enable_ipv6": false, "hostname": "cli-srv-gracious-diffie", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:32.877108+00:00", + "public_ip": {"dynamic": false, "id": "9a4a02ad-8e72-4852-88f5-06b728285ced", + "address": "212.47.241.105"}, "private_ip": null, "id": "2e12dd7a-89a3-4b1c-9965-3a0d6a68c85d", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:33.149437+00:00", + "enable_ipv6": false, "hostname": "cli-srv-sharp-antonelli", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-wizardly-brown", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "41a51afe-1d0e-48b1-8439-227f78fc0fc2"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-wizardly-brown", + "DEV1-S", "placement_group": {"name": "cli-pg-blissful-boyd", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "61b47a3e-e460-4d30-ab26-334b08435f35"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-blissful-boyd", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "41a51afe-1d0e-48b1-8439-227f78fc0fc2"}, - "name": "cli-srv-gracious-diffie", "protected": false, "volumes": {"0": {"size": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "61b47a3e-e460-4d30-ab26-334b08435f35"}, + "name": "cli-srv-sharp-antonelli", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:30:43.926321+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:30:41.533127+00:00", "id": - "929f1b25-4db0-4d57-83d5-6ed8dd032c90", "volume_type": "l_ssd", "server": {"id": - "443291f9-66ed-410f-b863-28e4cf04d91e", "name": "cli-srv-gracious-diffie"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "modification_date": "2020-02-11T13:55:33.135835+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:32.877108+00:00", "id": + "f595ca67-7e5a-4ea8-9e8a-971a631bea67", "volume_type": "l_ssd", "server": {"id": + "2e12dd7a-89a3-4b1c-9965-3a0d6a68c85d", "name": "cli-srv-sharp-antonelli"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: @@ -999,7 +1364,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:30:44 GMT + - Tue, 11 Feb 2020 13:55:33 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1016,8 +1381,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/443291f9-66ed-410f-b863-28e4cf04d91e + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2e12dd7a-89a3-4b1c-9965-3a0d6a68c85d method: DELETE response: body: "" @@ -1029,7 +1394,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:30:44 GMT + - Tue, 11 Feb 2020 13:55:33 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1046,8 +1411,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/902dae7f-302d-4be3-a821-f361b652f308 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/9a4a02ad-8e72-4852-88f5-06b728285ced method: DELETE response: body: "" @@ -1059,7 +1424,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:30:44 GMT + - Tue, 11 Feb 2020 13:55:33 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1076,8 +1441,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/929f1b25-4db0-4d57-83d5-6ed8dd032c90 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f595ca67-7e5a-4ea8-9e8a-971a631bea67 method: DELETE response: body: "" @@ -1089,7 +1454,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:30:44 GMT + - Tue, 11 Feb 2020 13:55:33 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1106,8 +1471,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/41a51afe-1d0e-48b1-8439-227f78fc0fc2 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/61b47a3e-e460-4d30-ab26-334b08435f35 method: DELETE response: body: "" @@ -1119,7 +1484,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:30:44 GMT + - Tue, 11 Feb 2020 13:55:33 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-server-update-initial-placement-group&-placement-group-id=.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-update-initial-placement-group&-placement-group-id=.cassette.yaml index 6db2c07a99..cd4e66b090 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-update-initial-placement-group&-placement-group-id=.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-update-initial-placement-group&-placement-group-id=.cassette.yaml @@ -2,32 +2,32 @@ version: 1 interactions: - request: - body: '{"name":"cli-pg-romantic-vaughan","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f","policy_mode":"optional","policy_type":"max_availability"}' + body: '{"name":"cli-pg-nostalgic-visvesvaraya","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd","policy_mode":"optional","policy_type":"max_availability"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups method: POST response: - body: '{"placement_group": {"name": "cli-pg-romantic-vaughan", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "c6358f9a-5f7c-4eab-b9c1-2676bfa7956f"}}' + body: '{"placement_group": {"name": "cli-pg-nostalgic-visvesvaraya", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "c8bd2acf-4b2d-4c90-bec2-917ed7f7e154"}}' headers: Cache-Control: - no-cache Content-Length: - - "246" + - "252" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:20:35 GMT + - Tue, 11 Feb 2020 13:55:33 GMT Location: - - https://cp-par1.scaleway.com/placement_groups/c6358f9a-5f7c-4eab-b9c1-2676bfa7956f + - https://cp-par1.scaleway.com/placement_groups/c8bd2acf-4b2d-4c90-bec2-917ed7f7e154 Server: - scaleway_api Strict-Transport-Security: @@ -40,32 +40,32 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-pg-loving-khayyam","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f","policy_mode":"optional","policy_type":"max_availability"}' + body: '{"name":"cli-pg-vigilant-brahmagupta","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd","policy_mode":"optional","policy_type":"max_availability"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups method: POST response: - body: '{"placement_group": {"name": "cli-pg-loving-khayyam", "policy_mode": "optional", - "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "9ae54087-4f51-498b-931c-a2cd748a60d1"}}' + body: '{"placement_group": {"name": "cli-pg-vigilant-brahmagupta", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "82ac622c-c966-43cf-8c59-3b995896ad03"}}' headers: Cache-Control: - no-cache Content-Length: - - "244" + - "250" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:20:35 GMT + - Tue, 11 Feb 2020 13:55:34 GMT Location: - - https://cp-par1.scaleway.com/placement_groups/9ae54087-4f51-498b-931c-a2cd748a60d1 + - https://cp-par1.scaleway.com/placement_groups/82ac622c-c966-43cf-8c59-3b995896ad03 Server: - scaleway_api Strict-Transport-Security: @@ -82,7 +82,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:34 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -713,7 +1035,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:20:35 GMT + - Tue, 11 Feb 2020 13:55:34 GMT Link: - ; rel="last" Server: @@ -730,32 +1052,75 @@ interactions: code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:34 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "902dae7f-302d-4be3-a821-f361b652f308", "server": null, "address": - "51.15.134.93"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "e44eb12f-24de-411e-868d-12b120a24cb7", "server": null, "address": + "51.158.101.194"}}' headers: Cache-Control: - no-cache Content-Length: - - "170" + - "172" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:20:36 GMT + - Tue, 11 Feb 2020 13:55:34 GMT Location: - - https://cp-par1.scaleway.com/ips/902dae7f-302d-4be3-a821-f361b652f308 + - https://cp-par1.scaleway.com/ips/e44eb12f-24de-411e-868d-12b120a24cb7 Server: - scaleway_api Strict-Transport-Security: @@ -768,13 +1133,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-strange-ritchie","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"902dae7f-302d-4be3-a821-f361b652f308","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f","placement_group":"c6358f9a-5f7c-4eab-b9c1-2676bfa7956f"}' + body: '{"name":"cli-srv-distracted-gauss","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"e44eb12f-24de-411e-868d-12b120a24cb7","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd","placement_group":"c8bd2acf-4b2d-4c90-bec2-917ed7f7e154"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -790,45 +1155,45 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:20:36.599623+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "211011bb-7713-49ff-a652-aa379c08c2dc", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:20:36.947149+00:00", - "enable_ipv6": false, "hostname": "cli-srv-strange-ritchie", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:35.377516+00:00", + "public_ip": {"dynamic": false, "id": "e44eb12f-24de-411e-868d-12b120a24cb7", + "address": "51.158.101.194"}, "private_ip": null, "id": "ea5bb242-5e71-4bdd-88f0-635e2f80d3f3", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:35.701990+00:00", + "enable_ipv6": false, "hostname": "cli-srv-distracted-gauss", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-romantic-vaughan", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "c6358f9a-5f7c-4eab-b9c1-2676bfa7956f"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-romantic-vaughan", + "DEV1-S", "placement_group": {"name": "cli-pg-nostalgic-visvesvaraya", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "c8bd2acf-4b2d-4c90-bec2-917ed7f7e154"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-nostalgic-visvesvaraya", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "c6358f9a-5f7c-4eab-b9c1-2676bfa7956f"}, - "name": "cli-srv-strange-ritchie", "protected": false, "volumes": {"0": {"size": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "c8bd2acf-4b2d-4c90-bec2-917ed7f7e154"}, + "name": "cli-srv-distracted-gauss", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:20:36.877582+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:20:36.599623+00:00", "id": - "57e4abc7-7a28-43e3-b169-5538c36f8a85", "volume_type": "l_ssd", "server": {"id": - "211011bb-7713-49ff-a652-aa379c08c2dc", "name": "cli-srv-strange-ritchie"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "modification_date": "2020-02-11T13:55:35.682280+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:35.377516+00:00", "id": + "be19ab12-f695-4af8-8332-976cad97223d", "volume_type": "l_ssd", "server": {"id": + "ea5bb242-5e71-4bdd-88f0-635e2f80d3f3", "name": "cli-srv-distracted-gauss"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3296" + - "3313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:20:36 GMT + - Tue, 11 Feb 2020 13:55:35 GMT Location: - - https://cp-par1.scaleway.com/servers/211011bb-7713-49ff-a652-aa379c08c2dc + - https://cp-par1.scaleway.com/servers/ea5bb242-5e71-4bdd-88f0-635e2f80d3f3 Server: - scaleway_api Strict-Transport-Security: @@ -845,8 +1210,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/211011bb-7713-49ff-a652-aa379c08c2dc + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ea5bb242-5e71-4bdd-88f0-635e2f80d3f3 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -861,43 +1226,43 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:20:36.599623+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "211011bb-7713-49ff-a652-aa379c08c2dc", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:20:36.947149+00:00", - "enable_ipv6": false, "hostname": "cli-srv-strange-ritchie", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:35.377516+00:00", + "public_ip": {"dynamic": false, "id": "e44eb12f-24de-411e-868d-12b120a24cb7", + "address": "51.158.101.194"}, "private_ip": null, "id": "ea5bb242-5e71-4bdd-88f0-635e2f80d3f3", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:35.701990+00:00", + "enable_ipv6": false, "hostname": "cli-srv-distracted-gauss", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-romantic-vaughan", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "c6358f9a-5f7c-4eab-b9c1-2676bfa7956f"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-romantic-vaughan", + "DEV1-S", "placement_group": {"name": "cli-pg-nostalgic-visvesvaraya", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "c8bd2acf-4b2d-4c90-bec2-917ed7f7e154"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-nostalgic-visvesvaraya", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "c6358f9a-5f7c-4eab-b9c1-2676bfa7956f"}, - "name": "cli-srv-strange-ritchie", "protected": false, "volumes": {"0": {"size": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "c8bd2acf-4b2d-4c90-bec2-917ed7f7e154"}, + "name": "cli-srv-distracted-gauss", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:20:36.877582+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:20:36.599623+00:00", "id": - "57e4abc7-7a28-43e3-b169-5538c36f8a85", "volume_type": "l_ssd", "server": {"id": - "211011bb-7713-49ff-a652-aa379c08c2dc", "name": "cli-srv-strange-ritchie"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "modification_date": "2020-02-11T13:55:35.682280+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:35.377516+00:00", "id": + "be19ab12-f695-4af8-8332-976cad97223d", "volume_type": "l_ssd", "server": {"id": + "ea5bb242-5e71-4bdd-88f0-635e2f80d3f3", "name": "cli-srv-distracted-gauss"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3296" + - "3313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:20:36 GMT + - Tue, 11 Feb 2020 13:55:35 GMT Server: - scaleway_api Strict-Transport-Security: @@ -910,14 +1275,14 @@ interactions: code: 200 duration: "" - request: - body: '{"placement_group":"9ae54087-4f51-498b-931c-a2cd748a60d1"}' + body: '{"placement_group":"82ac622c-c966-43cf-8c59-3b995896ad03"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/211011bb-7713-49ff-a652-aa379c08c2dc + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ea5bb242-5e71-4bdd-88f0-635e2f80d3f3 method: PATCH response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -932,43 +1297,43 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:20:36.599623+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "211011bb-7713-49ff-a652-aa379c08c2dc", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:20:37.271983+00:00", - "enable_ipv6": false, "hostname": "cli-srv-strange-ritchie", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:35.377516+00:00", + "public_ip": {"dynamic": false, "id": "e44eb12f-24de-411e-868d-12b120a24cb7", + "address": "51.158.101.194"}, "private_ip": null, "id": "ea5bb242-5e71-4bdd-88f0-635e2f80d3f3", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:36.114275+00:00", + "enable_ipv6": false, "hostname": "cli-srv-distracted-gauss", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-loving-khayyam", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "9ae54087-4f51-498b-931c-a2cd748a60d1"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-loving-khayyam", + "DEV1-S", "placement_group": {"name": "cli-pg-vigilant-brahmagupta", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "82ac622c-c966-43cf-8c59-3b995896ad03"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-vigilant-brahmagupta", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "9ae54087-4f51-498b-931c-a2cd748a60d1"}, - "name": "cli-srv-strange-ritchie", "protected": false, "volumes": {"0": {"size": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "82ac622c-c966-43cf-8c59-3b995896ad03"}, + "name": "cli-srv-distracted-gauss", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:20:36.877582+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:20:36.599623+00:00", "id": - "57e4abc7-7a28-43e3-b169-5538c36f8a85", "volume_type": "l_ssd", "server": {"id": - "211011bb-7713-49ff-a652-aa379c08c2dc", "name": "cli-srv-strange-ritchie"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "modification_date": "2020-02-11T13:55:35.682280+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:35.377516+00:00", "id": + "be19ab12-f695-4af8-8332-976cad97223d", "volume_type": "l_ssd", "server": {"id": + "ea5bb242-5e71-4bdd-88f0-635e2f80d3f3", "name": "cli-srv-distracted-gauss"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3292" + - "3309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:20:37 GMT + - Tue, 11 Feb 2020 13:55:36 GMT Server: - scaleway_api Strict-Transport-Security: @@ -985,8 +1350,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/211011bb-7713-49ff-a652-aa379c08c2dc + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ea5bb242-5e71-4bdd-88f0-635e2f80d3f3 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -1001,43 +1366,43 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:20:36.599623+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "211011bb-7713-49ff-a652-aa379c08c2dc", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:20:37.271983+00:00", - "enable_ipv6": false, "hostname": "cli-srv-strange-ritchie", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:35.377516+00:00", + "public_ip": {"dynamic": false, "id": "e44eb12f-24de-411e-868d-12b120a24cb7", + "address": "51.158.101.194"}, "private_ip": null, "id": "ea5bb242-5e71-4bdd-88f0-635e2f80d3f3", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:36.114275+00:00", + "enable_ipv6": false, "hostname": "cli-srv-distracted-gauss", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-loving-khayyam", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "9ae54087-4f51-498b-931c-a2cd748a60d1"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-loving-khayyam", + "DEV1-S", "placement_group": {"name": "cli-pg-vigilant-brahmagupta", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "82ac622c-c966-43cf-8c59-3b995896ad03"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-vigilant-brahmagupta", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "9ae54087-4f51-498b-931c-a2cd748a60d1"}, - "name": "cli-srv-strange-ritchie", "protected": false, "volumes": {"0": {"size": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "82ac622c-c966-43cf-8c59-3b995896ad03"}, + "name": "cli-srv-distracted-gauss", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:20:36.877582+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:20:36.599623+00:00", "id": - "57e4abc7-7a28-43e3-b169-5538c36f8a85", "volume_type": "l_ssd", "server": {"id": - "211011bb-7713-49ff-a652-aa379c08c2dc", "name": "cli-srv-strange-ritchie"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "modification_date": "2020-02-11T13:55:35.682280+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:35.377516+00:00", "id": + "be19ab12-f695-4af8-8332-976cad97223d", "volume_type": "l_ssd", "server": {"id": + "ea5bb242-5e71-4bdd-88f0-635e2f80d3f3", "name": "cli-srv-distracted-gauss"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3292" + - "3309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:20:37 GMT + - Tue, 11 Feb 2020 13:55:38 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1054,8 +1419,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/211011bb-7713-49ff-a652-aa379c08c2dc + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ea5bb242-5e71-4bdd-88f0-635e2f80d3f3 method: DELETE response: body: "" @@ -1067,7 +1432,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:20:37 GMT + - Tue, 11 Feb 2020 13:55:38 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1084,8 +1449,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/902dae7f-302d-4be3-a821-f361b652f308 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/e44eb12f-24de-411e-868d-12b120a24cb7 method: DELETE response: body: "" @@ -1097,7 +1462,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:20:37 GMT + - Tue, 11 Feb 2020 13:55:38 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1114,8 +1479,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/57e4abc7-7a28-43e3-b169-5538c36f8a85 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/be19ab12-f695-4af8-8332-976cad97223d method: DELETE response: body: "" @@ -1127,7 +1492,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:20:37 GMT + - Tue, 11 Feb 2020 13:55:38 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1144,8 +1509,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c6358f9a-5f7c-4eab-b9c1-2676bfa7956f + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c8bd2acf-4b2d-4c90-bec2-917ed7f7e154 method: DELETE response: body: "" @@ -1157,7 +1522,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:20:37 GMT + - Tue, 11 Feb 2020 13:55:38 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1174,8 +1539,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9ae54087-4f51-498b-931c-a2cd748a60d1 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/82ac622c-c966-43cf-8c59-3b995896ad03 method: DELETE response: body: "" @@ -1187,7 +1552,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:20:37 GMT + - Tue, 11 Feb 2020 13:55:38 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-server-update-initial-placement-group&-placement-group-id=none.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-update-initial-placement-group&-placement-group-id=none.cassette.yaml index c0981ce575..9ab3bf1896 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-update-initial-placement-group&-placement-group-id=none.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-update-initial-placement-group&-placement-group-id=none.cassette.yaml @@ -2,32 +2,32 @@ version: 1 interactions: - request: - body: '{"name":"cli-pg-charming-brahmagupta","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f","policy_mode":"optional","policy_type":"max_availability"}' + body: '{"name":"cli-pg-exciting-mcclintock","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd","policy_mode":"optional","policy_type":"max_availability"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups method: POST response: - body: '{"placement_group": {"name": "cli-pg-charming-brahmagupta", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "b12afad0-dd86-4822-a9c3-7a6ff7815a7e"}}' + body: '{"placement_group": {"name": "cli-pg-exciting-mcclintock", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "e35331fb-f162-4fb3-9d23-866cc84d94d5"}}' headers: Cache-Control: - no-cache Content-Length: - - "250" + - "249" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:32:19 GMT + - Tue, 11 Feb 2020 13:55:29 GMT Location: - - https://cp-par1.scaleway.com/placement_groups/b12afad0-dd86-4822-a9c3-7a6ff7815a7e + - https://cp-par1.scaleway.com/placement_groups/e35331fb-f162-4fb3-9d23-866cc84d94d5 Server: - scaleway_api Strict-Transport-Security: @@ -44,7 +44,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:29 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -675,7 +997,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:32:19 GMT + - Tue, 11 Feb 2020 13:55:29 GMT Link: - ; rel="last" Server: @@ -692,32 +1014,75 @@ interactions: code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:29 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "902dae7f-302d-4be3-a821-f361b652f308", "server": null, "address": - "51.15.134.93"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "6324bdbc-7523-4a37-abe5-f7b2144f31dd", "server": null, "address": + "51.15.220.250"}}' headers: Cache-Control: - no-cache Content-Length: - - "170" + - "171" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:32:20 GMT + - Tue, 11 Feb 2020 13:55:30 GMT Location: - - https://cp-par1.scaleway.com/ips/902dae7f-302d-4be3-a821-f361b652f308 + - https://cp-par1.scaleway.com/ips/6324bdbc-7523-4a37-abe5-f7b2144f31dd Server: - scaleway_api Strict-Transport-Security: @@ -730,13 +1095,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-strange-austin","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"902dae7f-302d-4be3-a821-f361b652f308","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f","placement_group":"b12afad0-dd86-4822-a9c3-7a6ff7815a7e"}' + body: '{"name":"cli-srv-romantic-burnell","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"6324bdbc-7523-4a37-abe5-f7b2144f31dd","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd","placement_group":"e35331fb-f162-4fb3-9d23-866cc84d94d5"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -752,45 +1117,45 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:32:21.266924+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "c02d960c-56c8-454f-bd94-a62448317a37", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:32:22.042347+00:00", - "enable_ipv6": false, "hostname": "cli-srv-strange-austin", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:30.765823+00:00", + "public_ip": {"dynamic": false, "id": "6324bdbc-7523-4a37-abe5-f7b2144f31dd", + "address": "51.15.220.250"}, "private_ip": null, "id": "d1d28698-2daf-48dd-84c1-c271b8b13dde", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:31.085486+00:00", + "enable_ipv6": false, "hostname": "cli-srv-romantic-burnell", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-charming-brahmagupta", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "b12afad0-dd86-4822-a9c3-7a6ff7815a7e"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-charming-brahmagupta", + "DEV1-S", "placement_group": {"name": "cli-pg-exciting-mcclintock", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "e35331fb-f162-4fb3-9d23-866cc84d94d5"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-exciting-mcclintock", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "b12afad0-dd86-4822-a9c3-7a6ff7815a7e"}, - "name": "cli-srv-strange-austin", "protected": false, "volumes": {"0": {"size": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "e35331fb-f162-4fb3-9d23-866cc84d94d5"}, + "name": "cli-srv-romantic-burnell", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:32:21.788212+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:32:21.266924+00:00", "id": - "a9230f00-b9c8-42b2-875b-3dcb4a770047", "volume_type": "l_ssd", "server": {"id": - "c02d960c-56c8-454f-bd94-a62448317a37", "name": "cli-srv-strange-austin"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "modification_date": "2020-02-11T13:55:31.066905+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:30.765823+00:00", "id": + "f00c55e0-6c5e-4ad4-bf9a-1c94d2da7b89", "volume_type": "l_ssd", "server": {"id": + "d1d28698-2daf-48dd-84c1-c271b8b13dde", "name": "cli-srv-romantic-burnell"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3301" + - "3306" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:32:21 GMT + - Tue, 11 Feb 2020 13:55:30 GMT Location: - - https://cp-par1.scaleway.com/servers/c02d960c-56c8-454f-bd94-a62448317a37 + - https://cp-par1.scaleway.com/servers/d1d28698-2daf-48dd-84c1-c271b8b13dde Server: - scaleway_api Strict-Transport-Security: @@ -807,8 +1172,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02d960c-56c8-454f-bd94-a62448317a37 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1d28698-2daf-48dd-84c1-c271b8b13dde method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -823,43 +1188,43 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:32:21.266924+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "c02d960c-56c8-454f-bd94-a62448317a37", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:32:22.042347+00:00", - "enable_ipv6": false, "hostname": "cli-srv-strange-austin", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:30.765823+00:00", + "public_ip": {"dynamic": false, "id": "6324bdbc-7523-4a37-abe5-f7b2144f31dd", + "address": "51.15.220.250"}, "private_ip": null, "id": "d1d28698-2daf-48dd-84c1-c271b8b13dde", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:31.085486+00:00", + "enable_ipv6": false, "hostname": "cli-srv-romantic-burnell", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-charming-brahmagupta", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "b12afad0-dd86-4822-a9c3-7a6ff7815a7e"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-charming-brahmagupta", + "DEV1-S", "placement_group": {"name": "cli-pg-exciting-mcclintock", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "e35331fb-f162-4fb3-9d23-866cc84d94d5"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-exciting-mcclintock", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "b12afad0-dd86-4822-a9c3-7a6ff7815a7e"}, - "name": "cli-srv-strange-austin", "protected": false, "volumes": {"0": {"size": + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "e35331fb-f162-4fb3-9d23-866cc84d94d5"}, + "name": "cli-srv-romantic-burnell", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:32:21.788212+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:32:21.266924+00:00", "id": - "a9230f00-b9c8-42b2-875b-3dcb4a770047", "volume_type": "l_ssd", "server": {"id": - "c02d960c-56c8-454f-bd94-a62448317a37", "name": "cli-srv-strange-austin"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "modification_date": "2020-02-11T13:55:31.066905+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:30.765823+00:00", "id": + "f00c55e0-6c5e-4ad4-bf9a-1c94d2da7b89", "volume_type": "l_ssd", "server": {"id": + "d1d28698-2daf-48dd-84c1-c271b8b13dde", "name": "cli-srv-romantic-burnell"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3301" + - "3306" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:32:22 GMT + - Tue, 11 Feb 2020 13:55:30 GMT Server: - scaleway_api Strict-Transport-Security: @@ -878,8 +1243,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02d960c-56c8-454f-bd94-a62448317a37 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1d28698-2daf-48dd-84c1-c271b8b13dde method: PATCH response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -894,11 +1259,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:32:21.266924+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "c02d960c-56c8-454f-bd94-a62448317a37", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:32:22.614014+00:00", - "enable_ipv6": false, "hostname": "cli-srv-strange-austin", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:30.765823+00:00", + "public_ip": {"dynamic": false, "id": "6324bdbc-7523-4a37-abe5-f7b2144f31dd", + "address": "51.15.220.250"}, "private_ip": null, "id": "d1d28698-2daf-48dd-84c1-c271b8b13dde", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:31.400915+00:00", + "enable_ipv6": false, "hostname": "cli-srv-romantic-burnell", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -906,27 +1271,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-strange-austin", "protected": + [], "compute_cluster": null, "name": "cli-srv-romantic-burnell", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T16:32:21.788212+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:32:21.266924+00:00", "id": - "a9230f00-b9c8-42b2-875b-3dcb4a770047", "volume_type": "l_ssd", "server": {"id": - "c02d960c-56c8-454f-bd94-a62448317a37", "name": "cli-srv-strange-austin"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:55:31.066905+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:30.765823+00:00", "id": + "f00c55e0-6c5e-4ad4-bf9a-1c94d2da7b89", "volume_type": "l_ssd", "server": {"id": + "d1d28698-2daf-48dd-84c1-c271b8b13dde", "name": "cli-srv-romantic-burnell"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2851" + - "2858" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:32:22 GMT + - Tue, 11 Feb 2020 13:55:31 GMT Server: - scaleway_api Strict-Transport-Security: @@ -943,8 +1308,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02d960c-56c8-454f-bd94-a62448317a37 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1d28698-2daf-48dd-84c1-c271b8b13dde method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -959,11 +1324,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:32:21.266924+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "c02d960c-56c8-454f-bd94-a62448317a37", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:32:22.614014+00:00", - "enable_ipv6": false, "hostname": "cli-srv-strange-austin", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:30.765823+00:00", + "public_ip": {"dynamic": false, "id": "6324bdbc-7523-4a37-abe5-f7b2144f31dd", + "address": "51.15.220.250"}, "private_ip": null, "id": "d1d28698-2daf-48dd-84c1-c271b8b13dde", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:31.400915+00:00", + "enable_ipv6": false, "hostname": "cli-srv-romantic-burnell", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -971,27 +1336,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-strange-austin", "protected": + [], "compute_cluster": null, "name": "cli-srv-romantic-burnell", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T16:32:21.788212+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:32:21.266924+00:00", "id": - "a9230f00-b9c8-42b2-875b-3dcb4a770047", "volume_type": "l_ssd", "server": {"id": - "c02d960c-56c8-454f-bd94-a62448317a37", "name": "cli-srv-strange-austin"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:55:31.066905+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:30.765823+00:00", "id": + "f00c55e0-6c5e-4ad4-bf9a-1c94d2da7b89", "volume_type": "l_ssd", "server": {"id": + "d1d28698-2daf-48dd-84c1-c271b8b13dde", "name": "cli-srv-romantic-burnell"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2851" + - "2858" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:32:22 GMT + - Tue, 11 Feb 2020 13:55:31 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1008,8 +1373,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02d960c-56c8-454f-bd94-a62448317a37 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d1d28698-2daf-48dd-84c1-c271b8b13dde method: DELETE response: body: "" @@ -1021,7 +1386,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:32:22 GMT + - Tue, 11 Feb 2020 13:55:31 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1038,8 +1403,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/902dae7f-302d-4be3-a821-f361b652f308 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6324bdbc-7523-4a37-abe5-f7b2144f31dd method: DELETE response: body: "" @@ -1051,7 +1416,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:32:22 GMT + - Tue, 11 Feb 2020 13:55:31 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1068,8 +1433,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9230f00-b9c8-42b2-875b-3dcb4a770047 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f00c55e0-6c5e-4ad4-bf9a-1c94d2da7b89 method: DELETE response: body: "" @@ -1081,7 +1446,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:32:22 GMT + - Tue, 11 Feb 2020 13:55:31 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1098,8 +1463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b12afad0-dd86-4822-a9c3-7a6ff7815a7e + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e35331fb-f162-4fb3-9d23-866cc84d94d5 method: DELETE response: body: "" @@ -1111,7 +1476,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:32:22 GMT + - Tue, 11 Feb 2020 13:55:31 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml index a078d751e6..b2e6f32ed9 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:22 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -637,7 +959,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:05 GMT + - Tue, 11 Feb 2020 13:55:22 GMT Link: - ; rel="last" Server: @@ -654,32 +976,75 @@ interactions: code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:22 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "902dae7f-302d-4be3-a821-f361b652f308", "server": null, "address": - "51.15.134.93"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "31baae98-96dc-4006-9a39-95629073c447", "server": null, "address": + "51.15.251.146"}}' headers: Cache-Control: - no-cache Content-Length: - - "170" + - "171" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:06 GMT + - Tue, 11 Feb 2020 13:55:22 GMT Location: - - https://cp-par1.scaleway.com/ips/902dae7f-302d-4be3-a821-f361b652f308 + - https://cp-par1.scaleway.com/ips/31baae98-96dc-4006-9a39-95629073c447 Server: - scaleway_api Strict-Transport-Security: @@ -692,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-angry-bardeen","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"902dae7f-302d-4be3-a821-f361b652f308","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-wonderful-ptolemy","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"31baae98-96dc-4006-9a39-95629073c447","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -714,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:37:06.835436+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "02e0dd46-0fcb-4ec1-9e61-4a88ff5dbfc0", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:37:07.253878+00:00", - "enable_ipv6": false, "hostname": "cli-srv-angry-bardeen", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:23.375595+00:00", + "public_ip": {"dynamic": false, "id": "31baae98-96dc-4006-9a39-95629073c447", + "address": "51.15.251.146"}, "private_ip": null, "id": "11bb0b16-5713-4fd6-8e5a-dcff34bf764f", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:23.597615+00:00", + "enable_ipv6": false, "hostname": "cli-srv-wonderful-ptolemy", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -726,28 +1091,29 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-angry-bardeen", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:37:07.137849+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:37:06.835436+00:00", "id": - "2131727d-60d6-478a-9191-a31426dd93a8", "volume_type": "l_ssd", "server": {"id": - "02e0dd46-0fcb-4ec1-9e61-4a88ff5dbfc0", "name": "cli-srv-angry-bardeen"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + [], "compute_cluster": null, "name": "cli-srv-wonderful-ptolemy", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:55:23.584236+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:23.375595+00:00", "id": + "1fdd6c2f-0d3a-423f-9a27-61638265356c", "volume_type": "l_ssd", "server": {"id": + "11bb0b16-5713-4fd6-8e5a-dcff34bf764f", "name": "cli-srv-wonderful-ptolemy"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2848" + - "2861" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:07 GMT + - Tue, 11 Feb 2020 13:55:23 GMT Location: - - https://cp-par1.scaleway.com/servers/02e0dd46-0fcb-4ec1-9e61-4a88ff5dbfc0 + - https://cp-par1.scaleway.com/servers/11bb0b16-5713-4fd6-8e5a-dcff34bf764f Server: - scaleway_api Strict-Transport-Security: @@ -764,8 +1130,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/02e0dd46-0fcb-4ec1-9e61-4a88ff5dbfc0 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11bb0b16-5713-4fd6-8e5a-dcff34bf764f method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -780,11 +1146,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:37:06.835436+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "02e0dd46-0fcb-4ec1-9e61-4a88ff5dbfc0", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:37:07.253878+00:00", - "enable_ipv6": false, "hostname": "cli-srv-angry-bardeen", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:23.375595+00:00", + "public_ip": {"dynamic": false, "id": "31baae98-96dc-4006-9a39-95629073c447", + "address": "51.15.251.146"}, "private_ip": null, "id": "11bb0b16-5713-4fd6-8e5a-dcff34bf764f", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:23.597615+00:00", + "enable_ipv6": false, "hostname": "cli-srv-wonderful-ptolemy", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -792,26 +1158,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-angry-bardeen", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:37:07.137849+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:37:06.835436+00:00", "id": - "2131727d-60d6-478a-9191-a31426dd93a8", "volume_type": "l_ssd", "server": {"id": - "02e0dd46-0fcb-4ec1-9e61-4a88ff5dbfc0", "name": "cli-srv-angry-bardeen"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + [], "compute_cluster": null, "name": "cli-srv-wonderful-ptolemy", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:55:23.584236+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:23.375595+00:00", "id": + "1fdd6c2f-0d3a-423f-9a27-61638265356c", "volume_type": "l_ssd", "server": {"id": + "11bb0b16-5713-4fd6-8e5a-dcff34bf764f", "name": "cli-srv-wonderful-ptolemy"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2848" + - "2861" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:07 GMT + - Tue, 11 Feb 2020 13:55:23 GMT Server: - scaleway_api Strict-Transport-Security: @@ -830,8 +1197,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/02e0dd46-0fcb-4ec1-9e61-4a88ff5dbfc0 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11bb0b16-5713-4fd6-8e5a-dcff34bf764f method: PATCH response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -846,11 +1213,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:37:06.835436+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "02e0dd46-0fcb-4ec1-9e61-4a88ff5dbfc0", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:37:07.253878+00:00", - "enable_ipv6": false, "hostname": "cli-srv-angry-bardeen", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:23.375595+00:00", + "public_ip": {"dynamic": false, "id": "31baae98-96dc-4006-9a39-95629073c447", + "address": "51.15.251.146"}, "private_ip": null, "id": "11bb0b16-5713-4fd6-8e5a-dcff34bf764f", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:23.597615+00:00", + "enable_ipv6": false, "hostname": "cli-srv-wonderful-ptolemy", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -858,26 +1225,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-angry-bardeen", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:37:07.137849+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:37:06.835436+00:00", "id": - "2131727d-60d6-478a-9191-a31426dd93a8", "volume_type": "l_ssd", "server": {"id": - "02e0dd46-0fcb-4ec1-9e61-4a88ff5dbfc0", "name": "cli-srv-angry-bardeen"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + [], "compute_cluster": null, "name": "cli-srv-wonderful-ptolemy", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:55:23.584236+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:23.375595+00:00", "id": + "1fdd6c2f-0d3a-423f-9a27-61638265356c", "volume_type": "l_ssd", "server": {"id": + "11bb0b16-5713-4fd6-8e5a-dcff34bf764f", "name": "cli-srv-wonderful-ptolemy"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2848" + - "2861" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:07 GMT + - Tue, 11 Feb 2020 13:55:23 GMT Server: - scaleway_api Strict-Transport-Security: @@ -894,8 +1262,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/02e0dd46-0fcb-4ec1-9e61-4a88ff5dbfc0 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11bb0b16-5713-4fd6-8e5a-dcff34bf764f method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -910,11 +1278,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:37:06.835436+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "02e0dd46-0fcb-4ec1-9e61-4a88ff5dbfc0", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:37:07.253878+00:00", - "enable_ipv6": false, "hostname": "cli-srv-angry-bardeen", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:23.375595+00:00", + "public_ip": {"dynamic": false, "id": "31baae98-96dc-4006-9a39-95629073c447", + "address": "51.15.251.146"}, "private_ip": null, "id": "11bb0b16-5713-4fd6-8e5a-dcff34bf764f", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:23.597615+00:00", + "enable_ipv6": false, "hostname": "cli-srv-wonderful-ptolemy", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -922,26 +1290,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-angry-bardeen", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:37:07.137849+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:37:06.835436+00:00", "id": - "2131727d-60d6-478a-9191-a31426dd93a8", "volume_type": "l_ssd", "server": {"id": - "02e0dd46-0fcb-4ec1-9e61-4a88ff5dbfc0", "name": "cli-srv-angry-bardeen"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + [], "compute_cluster": null, "name": "cli-srv-wonderful-ptolemy", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:55:23.584236+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:23.375595+00:00", "id": + "1fdd6c2f-0d3a-423f-9a27-61638265356c", "volume_type": "l_ssd", "server": {"id": + "11bb0b16-5713-4fd6-8e5a-dcff34bf764f", "name": "cli-srv-wonderful-ptolemy"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2848" + - "2861" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:07 GMT + - Tue, 11 Feb 2020 13:55:23 GMT Server: - scaleway_api Strict-Transport-Security: @@ -958,8 +1327,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/02e0dd46-0fcb-4ec1-9e61-4a88ff5dbfc0 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11bb0b16-5713-4fd6-8e5a-dcff34bf764f method: DELETE response: body: "" @@ -971,7 +1340,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:07 GMT + - Tue, 11 Feb 2020 13:55:23 GMT Server: - scaleway_api Strict-Transport-Security: @@ -988,8 +1357,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/902dae7f-302d-4be3-a821-f361b652f308 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/31baae98-96dc-4006-9a39-95629073c447 method: DELETE response: body: "" @@ -1001,7 +1370,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:07 GMT + - Tue, 11 Feb 2020 13:55:23 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1018,8 +1387,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2131727d-60d6-478a-9191-a31426dd93a8 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1fdd6c2f-0d3a-423f-9a27-61638265356c method: DELETE response: body: "" @@ -1031,7 +1400,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:08 GMT + - Tue, 11 Feb 2020 13:55:24 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml index acba33869a..8c83008934 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml @@ -2,32 +2,32 @@ version: 1 interactions: - request: - body: '{"name":"cli-pg-objective-bhaskara","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f","policy_mode":"optional","policy_type":"max_availability"}' + body: '{"name":"cli-pg-happy-heisenberg","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd","policy_mode":"optional","policy_type":"max_availability"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups method: POST response: - body: '{"placement_group": {"name": "cli-pg-objective-bhaskara", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "5441c87d-0e2e-4660-a130-9ab405518f2e"}}' + body: '{"placement_group": {"name": "cli-pg-happy-heisenberg", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "c4939ca7-8390-410a-ba4b-2d642f03b4f6"}}' headers: Cache-Control: - no-cache Content-Length: - - "248" + - "246" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:35:59 GMT + - Tue, 11 Feb 2020 13:55:24 GMT Location: - - https://cp-par1.scaleway.com/placement_groups/5441c87d-0e2e-4660-a130-9ab405518f2e + - https://cp-par1.scaleway.com/placement_groups/c4939ca7-8390-410a-ba4b-2d642f03b4f6 Server: - scaleway_api Strict-Transport-Security: @@ -44,7 +44,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:24 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -675,7 +997,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:35:59 GMT + - Tue, 11 Feb 2020 13:55:24 GMT Link: - ; rel="last" Server: @@ -692,32 +1014,75 @@ interactions: code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:24 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "902dae7f-302d-4be3-a821-f361b652f308", "server": null, "address": - "51.15.134.93"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "d6bc7ebc-8316-450c-ba5a-b7863e7753dc", "server": null, "address": + "212.47.226.226"}}' headers: Cache-Control: - no-cache Content-Length: - - "170" + - "172" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:35:59 GMT + - Tue, 11 Feb 2020 13:55:24 GMT Location: - - https://cp-par1.scaleway.com/ips/902dae7f-302d-4be3-a821-f361b652f308 + - https://cp-par1.scaleway.com/ips/d6bc7ebc-8316-450c-ba5a-b7863e7753dc Server: - scaleway_api Strict-Transport-Security: @@ -730,13 +1095,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-gallant-proskuriakova","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"902dae7f-302d-4be3-a821-f361b652f308","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-sleepy-curie","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"d6bc7ebc-8316-450c-ba5a-b7863e7753dc","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -752,41 +1117,39 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:36:00.180913+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "f4f3aef7-7fcf-4a4b-b031-db42d5141243", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:36:00.510350+00:00", - "enable_ipv6": false, "hostname": "cli-srv-gallant-proskuriakova", "state": - "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:25.187533+00:00", + "public_ip": {"dynamic": false, "id": "d6bc7ebc-8316-450c-ba5a-b7863e7753dc", + "address": "212.47.226.226"}, "private_ip": null, "id": "137aa74a-4b4a-4e24-a822-f3356781a938", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:25.428414+00:00", + "enable_ipv6": false, "hostname": "cli-srv-sleepy-curie", "state": "stopped", + "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-gallant-proskuriakova", "protected": - false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T16:36:00.434965+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:36:00.180913+00:00", "id": - "96f7db07-c7d4-465e-8efe-81f0e81f32ce", "volume_type": "l_ssd", "server": {"id": - "f4f3aef7-7fcf-4a4b-b031-db42d5141243", "name": "cli-srv-gallant-proskuriakova"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' + [], "compute_cluster": null, "name": "cli-srv-sleepy-curie", "protected": false, + "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:55:25.417186+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:25.187533+00:00", "id": + "c4585882-1fd0-4bc0-ae48-b6c5e8d56629", "volume_type": "l_ssd", "server": {"id": + "137aa74a-4b4a-4e24-a822-f3356781a938", "name": "cli-srv-sleepy-curie"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2872" + - "2847" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:36:00 GMT + - Tue, 11 Feb 2020 13:55:25 GMT Location: - - https://cp-par1.scaleway.com/servers/f4f3aef7-7fcf-4a4b-b031-db42d5141243 + - https://cp-par1.scaleway.com/servers/137aa74a-4b4a-4e24-a822-f3356781a938 Server: - scaleway_api Strict-Transport-Security: @@ -803,8 +1166,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f3aef7-7fcf-4a4b-b031-db42d5141243 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/137aa74a-4b4a-4e24-a822-f3356781a938 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -819,39 +1182,37 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:36:00.180913+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "f4f3aef7-7fcf-4a4b-b031-db42d5141243", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:36:00.510350+00:00", - "enable_ipv6": false, "hostname": "cli-srv-gallant-proskuriakova", "state": - "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:25.187533+00:00", + "public_ip": {"dynamic": false, "id": "d6bc7ebc-8316-450c-ba5a-b7863e7753dc", + "address": "212.47.226.226"}, "private_ip": null, "id": "137aa74a-4b4a-4e24-a822-f3356781a938", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:25.428414+00:00", + "enable_ipv6": false, "hostname": "cli-srv-sleepy-curie", "state": "stopped", + "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-gallant-proskuriakova", "protected": - false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T16:36:00.434965+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:36:00.180913+00:00", "id": - "96f7db07-c7d4-465e-8efe-81f0e81f32ce", "volume_type": "l_ssd", "server": {"id": - "f4f3aef7-7fcf-4a4b-b031-db42d5141243", "name": "cli-srv-gallant-proskuriakova"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' + [], "compute_cluster": null, "name": "cli-srv-sleepy-curie", "protected": false, + "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:55:25.417186+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:25.187533+00:00", "id": + "c4585882-1fd0-4bc0-ae48-b6c5e8d56629", "volume_type": "l_ssd", "server": {"id": + "137aa74a-4b4a-4e24-a822-f3356781a938", "name": "cli-srv-sleepy-curie"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2872" + - "2847" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:36:00 GMT + - Tue, 11 Feb 2020 13:55:25 GMT Server: - scaleway_api Strict-Transport-Security: @@ -864,14 +1225,14 @@ interactions: code: 200 duration: "" - request: - body: '{"placement_group":"5441c87d-0e2e-4660-a130-9ab405518f2e"}' + body: '{"placement_group":"c4939ca7-8390-410a-ba4b-2d642f03b4f6"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f3aef7-7fcf-4a4b-b031-db42d5141243 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/137aa74a-4b4a-4e24-a822-f3356781a938 method: PATCH response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -886,43 +1247,42 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:36:00.180913+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "f4f3aef7-7fcf-4a4b-b031-db42d5141243", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:36:00.907459+00:00", - "enable_ipv6": false, "hostname": "cli-srv-gallant-proskuriakova", "state": - "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:25.187533+00:00", + "public_ip": {"dynamic": false, "id": "d6bc7ebc-8316-450c-ba5a-b7863e7753dc", + "address": "212.47.226.226"}, "private_ip": null, "id": "137aa74a-4b4a-4e24-a822-f3356781a938", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:25.785924+00:00", + "enable_ipv6": false, "hostname": "cli-srv-sleepy-curie", "state": "stopped", + "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-objective-bhaskara", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "5441c87d-0e2e-4660-a130-9ab405518f2e"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-objective-bhaskara", + "DEV1-S", "placement_group": {"name": "cli-pg-happy-heisenberg", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "c4939ca7-8390-410a-ba4b-2d642f03b4f6"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-happy-heisenberg", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "5441c87d-0e2e-4660-a130-9ab405518f2e"}, - "name": "cli-srv-gallant-proskuriakova", "protected": false, "volumes": {"0": - {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:36:00.434965+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:36:00.180913+00:00", "id": - "96f7db07-c7d4-465e-8efe-81f0e81f32ce", "volume_type": "l_ssd", "server": {"id": - "f4f3aef7-7fcf-4a4b-b031-db42d5141243", "name": "cli-srv-gallant-proskuriakova"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "c4939ca7-8390-410a-ba4b-2d642f03b4f6"}, + "name": "cli-srv-sleepy-curie", "protected": false, "volumes": {"0": {"size": + 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:55:25.417186+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:25.187533+00:00", "id": + "c4585882-1fd0-4bc0-ae48-b6c5e8d56629", "volume_type": "l_ssd", "server": {"id": + "137aa74a-4b4a-4e24-a822-f3356781a938", "name": "cli-srv-sleepy-curie"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3318" + - "3289" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:36:00 GMT + - Tue, 11 Feb 2020 13:55:25 GMT Server: - scaleway_api Strict-Transport-Security: @@ -939,8 +1299,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f3aef7-7fcf-4a4b-b031-db42d5141243 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/137aa74a-4b4a-4e24-a822-f3356781a938 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -955,43 +1315,42 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:36:00.180913+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "f4f3aef7-7fcf-4a4b-b031-db42d5141243", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:36:00.907459+00:00", - "enable_ipv6": false, "hostname": "cli-srv-gallant-proskuriakova", "state": - "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:25.187533+00:00", + "public_ip": {"dynamic": false, "id": "d6bc7ebc-8316-450c-ba5a-b7863e7753dc", + "address": "212.47.226.226"}, "private_ip": null, "id": "137aa74a-4b4a-4e24-a822-f3356781a938", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:25.785924+00:00", + "enable_ipv6": false, "hostname": "cli-srv-sleepy-curie", "state": "stopped", + "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": - "DEV1-S", "placement_group": {"name": "cli-pg-objective-bhaskara", "policy_mode": - "optional", "policy_type": "max_availability", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "policy_respected": true, "id": "5441c87d-0e2e-4660-a130-9ab405518f2e"}, "tags": - [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-objective-bhaskara", + "DEV1-S", "placement_group": {"name": "cli-pg-happy-heisenberg", "policy_mode": + "optional", "policy_type": "max_availability", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "policy_respected": true, "id": "c4939ca7-8390-410a-ba4b-2d642f03b4f6"}, "tags": + [], "arch": "x86_64", "extra_networks": [], "compute_cluster": {"name": "cli-pg-happy-heisenberg", "policy_mode": "optional", "policy_type": "max_availability", "organization": - "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "policy_respected": true, "id": "5441c87d-0e2e-4660-a130-9ab405518f2e"}, - "name": "cli-srv-gallant-proskuriakova", "protected": false, "volumes": {"0": - {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:36:00.434965+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:36:00.180913+00:00", "id": - "96f7db07-c7d4-465e-8efe-81f0e81f32ce", "volume_type": "l_ssd", "server": {"id": - "f4f3aef7-7fcf-4a4b-b031-db42d5141243", "name": "cli-srv-gallant-proskuriakova"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' + "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "policy_respected": true, "id": "c4939ca7-8390-410a-ba4b-2d642f03b4f6"}, + "name": "cli-srv-sleepy-curie", "protected": false, "volumes": {"0": {"size": + 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:55:25.417186+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:25.187533+00:00", "id": + "c4585882-1fd0-4bc0-ae48-b6c5e8d56629", "volume_type": "l_ssd", "server": {"id": + "137aa74a-4b4a-4e24-a822-f3356781a938", "name": "cli-srv-sleepy-curie"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "3318" + - "3289" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:36:00 GMT + - Tue, 11 Feb 2020 13:55:25 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1008,8 +1367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f3aef7-7fcf-4a4b-b031-db42d5141243 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/137aa74a-4b4a-4e24-a822-f3356781a938 method: DELETE response: body: "" @@ -1021,7 +1380,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:36:00 GMT + - Tue, 11 Feb 2020 13:55:25 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1038,8 +1397,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/902dae7f-302d-4be3-a821-f361b652f308 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d6bc7ebc-8316-450c-ba5a-b7863e7753dc method: DELETE response: body: "" @@ -1051,7 +1410,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:36:01 GMT + - Tue, 11 Feb 2020 13:55:25 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1068,8 +1427,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96f7db07-c7d4-465e-8efe-81f0e81f32ce + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c4585882-1fd0-4bc0-ae48-b6c5e8d56629 method: DELETE response: body: "" @@ -1081,7 +1440,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:36:01 GMT + - Tue, 11 Feb 2020 13:55:25 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1098,8 +1457,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/5441c87d-0e2e-4660-a130-9ab405518f2e + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c4939ca7-8390-410a-ba4b-2d642f03b4f6 method: DELETE response: body: "" @@ -1111,7 +1470,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:36:01 GMT + - Tue, 11 Feb 2020 13:55:25 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml index 37a838d562..b8469c4f00 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:27 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -637,7 +959,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:33:49 GMT + - Tue, 11 Feb 2020 13:55:27 GMT Link: - ; rel="last" Server: @@ -654,32 +976,75 @@ interactions: code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:27 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "902dae7f-302d-4be3-a821-f361b652f308", "server": null, "address": - "51.15.134.93"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "a1b93a06-2acd-4b01-b266-9c7e0a1e94db", "server": null, "address": + "51.158.102.153"}}' headers: Cache-Control: - no-cache Content-Length: - - "170" + - "172" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:33:49 GMT + - Tue, 11 Feb 2020 13:55:28 GMT Location: - - https://cp-par1.scaleway.com/ips/902dae7f-302d-4be3-a821-f361b652f308 + - https://cp-par1.scaleway.com/ips/a1b93a06-2acd-4b01-b266-9c7e0a1e94db Server: - scaleway_api Strict-Transport-Security: @@ -692,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-suspicious-colden","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"902dae7f-302d-4be3-a821-f361b652f308","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-xenodochial-matsumoto","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"a1b93a06-2acd-4b01-b266-9c7e0a1e94db","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -714,41 +1079,41 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:33:50.457928+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "860b11d2-a87f-4b5f-8d01-ac20f6d8b99c", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:33:50.807535+00:00", - "enable_ipv6": false, "hostname": "cli-srv-suspicious-colden", "state": "stopped", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:28.900188+00:00", + "public_ip": {"dynamic": false, "id": "a1b93a06-2acd-4b01-b266-9c7e0a1e94db", + "address": "51.158.102.153"}, "private_ip": null, "id": "3c16dec8-8125-4771-a354-eb587e874ea9", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:29.155333+00:00", + "enable_ipv6": false, "hostname": "cli-srv-xenodochial-matsumoto", "state": + "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-suspicious-colden", "protected": + [], "compute_cluster": null, "name": "cli-srv-xenodochial-matsumoto", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T16:33:50.718068+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:33:50.457928+00:00", "id": - "b5031d83-7f3a-4423-8210-e0af18fc02e5", "volume_type": "l_ssd", "server": {"id": - "860b11d2-a87f-4b5f-8d01-ac20f6d8b99c", "name": "cli-srv-suspicious-colden"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:55:29.139306+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:28.900188+00:00", "id": + "0d7f3846-fc22-429e-bbd7-3d8acf5c5994", "volume_type": "l_ssd", "server": {"id": + "3c16dec8-8125-4771-a354-eb587e874ea9", "name": "cli-srv-xenodochial-matsumoto"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2860" + - "2874" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:33:50 GMT + - Tue, 11 Feb 2020 13:55:28 GMT Location: - - https://cp-par1.scaleway.com/servers/860b11d2-a87f-4b5f-8d01-ac20f6d8b99c + - https://cp-par1.scaleway.com/servers/3c16dec8-8125-4771-a354-eb587e874ea9 Server: - scaleway_api Strict-Transport-Security: @@ -765,8 +1130,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/860b11d2-a87f-4b5f-8d01-ac20f6d8b99c + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3c16dec8-8125-4771-a354-eb587e874ea9 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -781,39 +1146,39 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:33:50.457928+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "860b11d2-a87f-4b5f-8d01-ac20f6d8b99c", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:33:50.807535+00:00", - "enable_ipv6": false, "hostname": "cli-srv-suspicious-colden", "state": "stopped", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:28.900188+00:00", + "public_ip": {"dynamic": false, "id": "a1b93a06-2acd-4b01-b266-9c7e0a1e94db", + "address": "51.158.102.153"}, "private_ip": null, "id": "3c16dec8-8125-4771-a354-eb587e874ea9", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:29.155333+00:00", + "enable_ipv6": false, "hostname": "cli-srv-xenodochial-matsumoto", "state": + "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-suspicious-colden", "protected": + [], "compute_cluster": null, "name": "cli-srv-xenodochial-matsumoto", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T16:33:50.718068+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:33:50.457928+00:00", "id": - "b5031d83-7f3a-4423-8210-e0af18fc02e5", "volume_type": "l_ssd", "server": {"id": - "860b11d2-a87f-4b5f-8d01-ac20f6d8b99c", "name": "cli-srv-suspicious-colden"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:55:29.139306+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:28.900188+00:00", "id": + "0d7f3846-fc22-429e-bbd7-3d8acf5c5994", "volume_type": "l_ssd", "server": {"id": + "3c16dec8-8125-4771-a354-eb587e874ea9", "name": "cli-srv-xenodochial-matsumoto"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2860" + - "2874" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:33:50 GMT + - Tue, 11 Feb 2020 13:55:29 GMT Server: - scaleway_api Strict-Transport-Security: @@ -832,8 +1197,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/860b11d2-a87f-4b5f-8d01-ac20f6d8b99c + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3c16dec8-8125-4771-a354-eb587e874ea9 method: PATCH response: body: '{"fields": {"placement_group": ["not a valid value"]}, "message": "Validation @@ -846,7 +1211,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:33:50 GMT + - Tue, 11 Feb 2020 13:55:29 GMT Server: - scaleway_api Strict-Transport-Security: @@ -863,8 +1228,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/860b11d2-a87f-4b5f-8d01-ac20f6d8b99c + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3c16dec8-8125-4771-a354-eb587e874ea9 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -879,39 +1244,39 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:33:50.457928+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "860b11d2-a87f-4b5f-8d01-ac20f6d8b99c", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:33:50.807535+00:00", - "enable_ipv6": false, "hostname": "cli-srv-suspicious-colden", "state": "stopped", - "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:28.900188+00:00", + "public_ip": {"dynamic": false, "id": "a1b93a06-2acd-4b01-b266-9c7e0a1e94db", + "address": "51.158.102.153"}, "private_ip": null, "id": "3c16dec8-8125-4771-a354-eb587e874ea9", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:29.155333+00:00", + "enable_ipv6": false, "hostname": "cli-srv-xenodochial-matsumoto", "state": + "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-suspicious-colden", "protected": + [], "compute_cluster": null, "name": "cli-srv-xenodochial-matsumoto", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T16:33:50.718068+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:33:50.457928+00:00", "id": - "b5031d83-7f3a-4423-8210-e0af18fc02e5", "volume_type": "l_ssd", "server": {"id": - "860b11d2-a87f-4b5f-8d01-ac20f6d8b99c", "name": "cli-srv-suspicious-colden"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + "2020-02-11T13:55:29.139306+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:28.900188+00:00", "id": + "0d7f3846-fc22-429e-bbd7-3d8acf5c5994", "volume_type": "l_ssd", "server": {"id": + "3c16dec8-8125-4771-a354-eb587e874ea9", "name": "cli-srv-xenodochial-matsumoto"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2860" + - "2874" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:33:50 GMT + - Tue, 11 Feb 2020 13:55:29 GMT Server: - scaleway_api Strict-Transport-Security: @@ -928,8 +1293,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/860b11d2-a87f-4b5f-8d01-ac20f6d8b99c + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3c16dec8-8125-4771-a354-eb587e874ea9 method: DELETE response: body: "" @@ -941,7 +1306,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:33:50 GMT + - Tue, 11 Feb 2020 13:55:29 GMT Server: - scaleway_api Strict-Transport-Security: @@ -958,8 +1323,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/902dae7f-302d-4be3-a821-f361b652f308 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/a1b93a06-2acd-4b01-b266-9c7e0a1e94db method: DELETE response: body: "" @@ -971,7 +1336,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:33:50 GMT + - Tue, 11 Feb 2020 13:55:29 GMT Server: - scaleway_api Strict-Transport-Security: @@ -988,8 +1353,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b5031d83-7f3a-4423-8210-e0af18fc02e5 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0d7f3846-fc22-429e-bbd7-3d8acf5c5994 method: DELETE response: body: "" @@ -1001,7 +1366,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:33:51 GMT + - Tue, 11 Feb 2020 13:55:29 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml index ca15046af8..23592981ba 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:26 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -637,7 +959,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:35:03 GMT + - Tue, 11 Feb 2020 13:55:26 GMT Link: - ; rel="last" Server: @@ -654,32 +976,75 @@ interactions: code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:26 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "902dae7f-302d-4be3-a821-f361b652f308", "server": null, "address": - "51.15.134.93"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "dca51a04-2ff1-4430-b077-3681ae9bbc3a", "server": null, "address": + "51.158.102.76"}}' headers: Cache-Control: - no-cache Content-Length: - - "170" + - "171" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:35:03 GMT + - Tue, 11 Feb 2020 13:55:26 GMT Location: - - https://cp-par1.scaleway.com/ips/902dae7f-302d-4be3-a821-f361b652f308 + - https://cp-par1.scaleway.com/ips/dca51a04-2ff1-4430-b077-3681ae9bbc3a Server: - scaleway_api Strict-Transport-Security: @@ -692,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-stoic-lamport","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"902dae7f-302d-4be3-a821-f361b652f308","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-clever-hodgkin","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"dca51a04-2ff1-4430-b077-3681ae9bbc3a","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -714,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:35:04.123876+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "25c43cda-b6ae-431c-a3ce-1f1a28e7be0e", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:35:04.503103+00:00", - "enable_ipv6": false, "hostname": "cli-srv-stoic-lamport", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:27.027810+00:00", + "public_ip": {"dynamic": false, "id": "dca51a04-2ff1-4430-b077-3681ae9bbc3a", + "address": "51.158.102.76"}, "private_ip": null, "id": "34ed6892-b5ac-4d42-9e27-a2f030f7db33", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:27.248185+00:00", + "enable_ipv6": false, "hostname": "cli-srv-clever-hodgkin", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -726,28 +1091,29 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-stoic-lamport", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:35:04.414256+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:35:04.123876+00:00", "id": - "68c6287b-2575-4099-9459-86bfd369e446", "volume_type": "l_ssd", "server": {"id": - "25c43cda-b6ae-431c-a3ce-1f1a28e7be0e", "name": "cli-srv-stoic-lamport"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + [], "compute_cluster": null, "name": "cli-srv-clever-hodgkin", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:55:27.237484+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:27.027810+00:00", "id": + "cd2c8033-7836-42d5-9d6b-b7146d9712f1", "volume_type": "l_ssd", "server": {"id": + "34ed6892-b5ac-4d42-9e27-a2f030f7db33", "name": "cli-srv-clever-hodgkin"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2848" + - "2852" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:35:04 GMT + - Tue, 11 Feb 2020 13:55:26 GMT Location: - - https://cp-par1.scaleway.com/servers/25c43cda-b6ae-431c-a3ce-1f1a28e7be0e + - https://cp-par1.scaleway.com/servers/34ed6892-b5ac-4d42-9e27-a2f030f7db33 Server: - scaleway_api Strict-Transport-Security: @@ -764,8 +1130,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/25c43cda-b6ae-431c-a3ce-1f1a28e7be0e + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34ed6892-b5ac-4d42-9e27-a2f030f7db33 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -780,11 +1146,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:35:04.123876+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "25c43cda-b6ae-431c-a3ce-1f1a28e7be0e", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:35:04.503103+00:00", - "enable_ipv6": false, "hostname": "cli-srv-stoic-lamport", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:27.027810+00:00", + "public_ip": {"dynamic": false, "id": "dca51a04-2ff1-4430-b077-3681ae9bbc3a", + "address": "51.158.102.76"}, "private_ip": null, "id": "34ed6892-b5ac-4d42-9e27-a2f030f7db33", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:27.248185+00:00", + "enable_ipv6": false, "hostname": "cli-srv-clever-hodgkin", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -792,26 +1158,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-stoic-lamport", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:35:04.414256+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:35:04.123876+00:00", "id": - "68c6287b-2575-4099-9459-86bfd369e446", "volume_type": "l_ssd", "server": {"id": - "25c43cda-b6ae-431c-a3ce-1f1a28e7be0e", "name": "cli-srv-stoic-lamport"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + [], "compute_cluster": null, "name": "cli-srv-clever-hodgkin", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:55:27.237484+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:27.027810+00:00", "id": + "cd2c8033-7836-42d5-9d6b-b7146d9712f1", "volume_type": "l_ssd", "server": {"id": + "34ed6892-b5ac-4d42-9e27-a2f030f7db33", "name": "cli-srv-clever-hodgkin"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2848" + - "2852" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:35:04 GMT + - Tue, 11 Feb 2020 13:55:27 GMT Server: - scaleway_api Strict-Transport-Security: @@ -830,8 +1197,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/25c43cda-b6ae-431c-a3ce-1f1a28e7be0e + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34ed6892-b5ac-4d42-9e27-a2f030f7db33 method: PATCH response: body: '{"message": "\"11111111-1111-1111-1111-111111111111\" not found", "type": @@ -844,7 +1211,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:35:04 GMT + - Tue, 11 Feb 2020 13:55:27 GMT Server: - scaleway_api Strict-Transport-Security: @@ -861,8 +1228,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/25c43cda-b6ae-431c-a3ce-1f1a28e7be0e + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34ed6892-b5ac-4d42-9e27-a2f030f7db33 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -877,11 +1244,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:35:04.123876+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "25c43cda-b6ae-431c-a3ce-1f1a28e7be0e", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:35:04.503103+00:00", - "enable_ipv6": false, "hostname": "cli-srv-stoic-lamport", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:27.027810+00:00", + "public_ip": {"dynamic": false, "id": "dca51a04-2ff1-4430-b077-3681ae9bbc3a", + "address": "51.158.102.76"}, "private_ip": null, "id": "34ed6892-b5ac-4d42-9e27-a2f030f7db33", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:27.248185+00:00", + "enable_ipv6": false, "hostname": "cli-srv-clever-hodgkin", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -889,26 +1256,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-stoic-lamport", "protected": false, - "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:35:04.414256+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:35:04.123876+00:00", "id": - "68c6287b-2575-4099-9459-86bfd369e446", "volume_type": "l_ssd", "server": {"id": - "25c43cda-b6ae-431c-a3ce-1f1a28e7be0e", "name": "cli-srv-stoic-lamport"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": + [], "compute_cluster": null, "name": "cli-srv-clever-hodgkin", "protected": + false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": + "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": + "2020-02-11T13:55:27.237484+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:27.027810+00:00", "id": + "cd2c8033-7836-42d5-9d6b-b7146d9712f1", "volume_type": "l_ssd", "server": {"id": + "34ed6892-b5ac-4d42-9e27-a2f030f7db33", "name": "cli-srv-clever-hodgkin"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2848" + - "2852" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:35:04 GMT + - Tue, 11 Feb 2020 13:55:27 GMT Server: - scaleway_api Strict-Transport-Security: @@ -925,8 +1293,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/25c43cda-b6ae-431c-a3ce-1f1a28e7be0e + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34ed6892-b5ac-4d42-9e27-a2f030f7db33 method: DELETE response: body: "" @@ -938,7 +1306,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:35:04 GMT + - Tue, 11 Feb 2020 13:55:27 GMT Server: - scaleway_api Strict-Transport-Security: @@ -955,8 +1323,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/902dae7f-302d-4be3-a821-f361b652f308 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/dca51a04-2ff1-4430-b077-3681ae9bbc3a method: DELETE response: body: "" @@ -968,7 +1336,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:35:04 GMT + - Tue, 11 Feb 2020 13:55:27 GMT Server: - scaleway_api Strict-Transport-Security: @@ -985,8 +1353,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/68c6287b-2575-4099-9459-86bfd369e446 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd2c8033-7836-42d5-9d6b-b7146d9712f1 method: DELETE response: body: "" @@ -998,7 +1366,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:35:04 GMT + - Tue, 11 Feb 2020 13:55:27 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=none.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=none.cassette.yaml index 9c712bb662..1c6f38405c 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=none.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-update-no-initial-placement-group&-placement-group-id=none.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:20 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -637,7 +959,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:44 GMT + - Tue, 11 Feb 2020 13:55:20 GMT Link: - ; rel="last" Server: @@ -654,19 +976,62 @@ interactions: code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:20 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "902dae7f-302d-4be3-a821-f361b652f308", "server": null, "address": - "51.15.134.93"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "6f7deee8-8a01-441e-bcc3-701be21afeb4", "server": null, "address": + "51.15.219.55"}}' headers: Cache-Control: - no-cache @@ -677,9 +1042,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:44 GMT + - Tue, 11 Feb 2020 13:55:21 GMT Location: - - https://cp-par1.scaleway.com/ips/902dae7f-302d-4be3-a821-f361b652f308 + - https://cp-par1.scaleway.com/ips/6f7deee8-8a01-441e-bcc3-701be21afeb4 Server: - scaleway_api Strict-Transport-Security: @@ -692,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-funny-poincare","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"902dae7f-302d-4be3-a821-f361b652f308","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-gallant-wing","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"6f7deee8-8a01-441e-bcc3-701be21afeb4","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -714,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:37:45.138927+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "595120b7-4682-42ac-9b36-ae3c27637955", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:37:45.443872+00:00", - "enable_ipv6": false, "hostname": "cli-srv-funny-poincare", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:21.561213+00:00", + "public_ip": {"dynamic": false, "id": "6f7deee8-8a01-441e-bcc3-701be21afeb4", + "address": "51.15.219.55"}, "private_ip": null, "id": "ad944a40-f441-41ac-a78b-5cb6b799a683", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:21.881589+00:00", + "enable_ipv6": false, "hostname": "cli-srv-gallant-wing", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -726,29 +1091,27 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-funny-poincare", "protected": - false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T16:37:45.379310+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:37:45.138927+00:00", "id": - "89e42be3-a215-429b-b39d-8686cf5ba55b", "volume_type": "l_ssd", "server": {"id": - "595120b7-4682-42ac-9b36-ae3c27637955", "name": "cli-srv-funny-poincare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' + [], "compute_cluster": null, "name": "cli-srv-gallant-wing", "protected": false, + "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:55:21.860131+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:21.561213+00:00", "id": + "dff89ed5-6791-4d22-ac76-08eb85fa942d", "volume_type": "l_ssd", "server": {"id": + "ad944a40-f441-41ac-a78b-5cb6b799a683", "name": "cli-srv-gallant-wing"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2851" + - "2845" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:45 GMT + - Tue, 11 Feb 2020 13:55:21 GMT Location: - - https://cp-par1.scaleway.com/servers/595120b7-4682-42ac-9b36-ae3c27637955 + - https://cp-par1.scaleway.com/servers/ad944a40-f441-41ac-a78b-5cb6b799a683 Server: - scaleway_api Strict-Transport-Security: @@ -765,8 +1128,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/595120b7-4682-42ac-9b36-ae3c27637955 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ad944a40-f441-41ac-a78b-5cb6b799a683 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -781,11 +1144,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:37:45.138927+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "595120b7-4682-42ac-9b36-ae3c27637955", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:37:45.443872+00:00", - "enable_ipv6": false, "hostname": "cli-srv-funny-poincare", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:21.561213+00:00", + "public_ip": {"dynamic": false, "id": "6f7deee8-8a01-441e-bcc3-701be21afeb4", + "address": "51.15.219.55"}, "private_ip": null, "id": "ad944a40-f441-41ac-a78b-5cb6b799a683", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:21.881589+00:00", + "enable_ipv6": false, "hostname": "cli-srv-gallant-wing", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -793,27 +1156,25 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-funny-poincare", "protected": - false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T16:37:45.379310+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:37:45.138927+00:00", "id": - "89e42be3-a215-429b-b39d-8686cf5ba55b", "volume_type": "l_ssd", "server": {"id": - "595120b7-4682-42ac-9b36-ae3c27637955", "name": "cli-srv-funny-poincare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' + [], "compute_cluster": null, "name": "cli-srv-gallant-wing", "protected": false, + "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:55:21.860131+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:21.561213+00:00", "id": + "dff89ed5-6791-4d22-ac76-08eb85fa942d", "volume_type": "l_ssd", "server": {"id": + "ad944a40-f441-41ac-a78b-5cb6b799a683", "name": "cli-srv-gallant-wing"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2851" + - "2845" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:45 GMT + - Tue, 11 Feb 2020 13:55:21 GMT Server: - scaleway_api Strict-Transport-Security: @@ -832,8 +1193,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/595120b7-4682-42ac-9b36-ae3c27637955 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ad944a40-f441-41ac-a78b-5cb6b799a683 method: PATCH response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -848,11 +1209,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:37:45.138927+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "595120b7-4682-42ac-9b36-ae3c27637955", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:37:45.443872+00:00", - "enable_ipv6": false, "hostname": "cli-srv-funny-poincare", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:21.561213+00:00", + "public_ip": {"dynamic": false, "id": "6f7deee8-8a01-441e-bcc3-701be21afeb4", + "address": "51.15.219.55"}, "private_ip": null, "id": "ad944a40-f441-41ac-a78b-5cb6b799a683", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:21.881589+00:00", + "enable_ipv6": false, "hostname": "cli-srv-gallant-wing", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -860,27 +1221,25 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-funny-poincare", "protected": - false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T16:37:45.379310+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:37:45.138927+00:00", "id": - "89e42be3-a215-429b-b39d-8686cf5ba55b", "volume_type": "l_ssd", "server": {"id": - "595120b7-4682-42ac-9b36-ae3c27637955", "name": "cli-srv-funny-poincare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' + [], "compute_cluster": null, "name": "cli-srv-gallant-wing", "protected": false, + "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:55:21.860131+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:21.561213+00:00", "id": + "dff89ed5-6791-4d22-ac76-08eb85fa942d", "volume_type": "l_ssd", "server": {"id": + "ad944a40-f441-41ac-a78b-5cb6b799a683", "name": "cli-srv-gallant-wing"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2851" + - "2845" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:45 GMT + - Tue, 11 Feb 2020 13:55:21 GMT Server: - scaleway_api Strict-Transport-Security: @@ -897,8 +1256,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/595120b7-4682-42ac-9b36-ae3c27637955 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ad944a40-f441-41ac-a78b-5cb6b799a683 method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -913,11 +1272,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:37:45.138927+00:00", - "public_ip": {"dynamic": false, "id": "902dae7f-302d-4be3-a821-f361b652f308", - "address": "51.15.134.93"}, "private_ip": null, "id": "595120b7-4682-42ac-9b36-ae3c27637955", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:37:45.443872+00:00", - "enable_ipv6": false, "hostname": "cli-srv-funny-poincare", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:21.561213+00:00", + "public_ip": {"dynamic": false, "id": "6f7deee8-8a01-441e-bcc3-701be21afeb4", + "address": "51.15.219.55"}, "private_ip": null, "id": "ad944a40-f441-41ac-a78b-5cb6b799a683", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:21.881589+00:00", + "enable_ipv6": false, "hostname": "cli-srv-gallant-wing", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -925,27 +1284,25 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-funny-poincare", "protected": - false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": - "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", "modification_date": - "2020-02-07T16:37:45.379310+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:37:45.138927+00:00", "id": - "89e42be3-a215-429b-b39d-8686cf5ba55b", "volume_type": "l_ssd", "server": {"id": - "595120b7-4682-42ac-9b36-ae3c27637955", "name": "cli-srv-funny-poincare"}}}, - "security_group": {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default - security group"}, "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": - []}}' + [], "compute_cluster": null, "name": "cli-srv-gallant-wing", "protected": false, + "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", + "modification_date": "2020-02-11T13:55:21.860131+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:21.561213+00:00", "id": + "dff89ed5-6791-4d22-ac76-08eb85fa942d", "volume_type": "l_ssd", "server": {"id": + "ad944a40-f441-41ac-a78b-5cb6b799a683", "name": "cli-srv-gallant-wing"}}}, "security_group": + {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default security group"}, + "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": []}}' headers: Cache-Control: - no-cache Content-Length: - - "2851" + - "2845" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:45 GMT + - Tue, 11 Feb 2020 13:55:22 GMT Server: - scaleway_api Strict-Transport-Security: @@ -962,8 +1319,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/595120b7-4682-42ac-9b36-ae3c27637955 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ad944a40-f441-41ac-a78b-5cb6b799a683 method: DELETE response: body: "" @@ -975,7 +1332,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:37:45 GMT + - Tue, 11 Feb 2020 13:55:22 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-server-update-simple.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-server-update-simple.cassette.yaml index 4c9c0d7ef7..be7d0f9f2c 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-update-simple.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-server-update-simple.cassette.yaml @@ -6,7 +6,329 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers + method: GET + response: + body: '{"servers": {"VC1S": {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, + "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.006, "alt_names": ["X64-2GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-XS": + {"monthly_price": 39.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 4, "ram": 17179869184, "arch": "x86_64", + "volumes_constraint": {"min_size": 150000000000, "max_size": 150000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 524288000, "ipv6_support": true}, "hourly_price": + 0.078, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-M": {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 3, "ram": 4294967296, + "arch": "x86_64", "volumes_constraint": {"min_size": 40000000000, "max_size": + 40000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.016, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "DEV1-L": {"monthly_price": 15.99, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": 8589934592, + "arch": "x86_64", "volumes_constraint": {"min_size": 80000000000, "max_size": + 80000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 419430400, "ipv6_support": true}, "hourly_price": + 0.032, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-XS": {"monthly_price": 1.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 1, "ram": + 1073741824, "arch": "x86_64", "volumes_constraint": {"min_size": 25000000000, + "max_size": 25000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 104857600}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 104857600, "ipv6_support": true}, "hourly_price": 0.004, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-8GB": + {"monthly_price": 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 8589934592, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.024, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "DEV1-S": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 20000000000, "max_size": 20000000000}, "network": + {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "RENDER-S": {"monthly_price": 499.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 10, + "ram": 48318382080, "arch": "x86_64", "volumes_constraint": {"min_size": 400000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 1.0, "alt_names": [], "capabilities": + {"boot_types": ["local", "rescue"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": true, "default_boot_type": "local", "private_network": + 8}, "baremetal": false, "gpu": 1}, "GP1-XL": {"monthly_price": 569.0, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 48, + "ram": 274877906944, "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, + "max_size": 600000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 10737418240}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 10737418240, "ipv6_support": true}, "hourly_price": 1.138, "alt_names": [], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C2S": {"monthly_price": + 11.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 8589934592, "arch": "x86_64", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 2684354560, "internet_bandwidth": 314572800}], "sum_internal_bandwidth": + 2684354560, "sum_internet_bandwidth": 314572800, "ipv6_support": true}, "hourly_price": + 0.024, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "X64-15GB": {"monthly_price": 24.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 6, "ram": + 16106127360, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 262144000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 262144000, "ipv6_support": true}, "hourly_price": 0.05, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-2GB": + {"monthly_price": 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.006, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "DEV1-XL": {"monthly_price": 23.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 4, "ram": + 12884901888, "arch": "x86_64", "volumes_constraint": {"min_size": 120000000000, + "max_size": 120000000000}, "network": {"interfaces": [{"internal_bandwidth": + 104857600, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.048, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "C1": {"monthly_price": + 2.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 4, "ram": 2147483648, "arch": "arm", "volumes_constraint": + {"min_size": 50000000000, "max_size": 1000000000000}, "network": {"interfaces": + [{"internal_bandwidth": 1073741824, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + 1073741824, "sum_internet_bandwidth": 209715200, "ipv6_support": false}, "hourly_price": + 0.006, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue"], + "hot_snapshots_local_volume": false, "placement_groups": false, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + true, "gpu": null}, "VC1M": {"monthly_price": 5.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 4, "ram": + 4294967296, "arch": "x86_64", "volumes_constraint": {"min_size": 100000000000, + "max_size": 100000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 209715200, "ipv6_support": true}, "hourly_price": 0.012, "alt_names": ["X64-4GB"], + "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "C2L": + {"monthly_price": 23.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": 2684354560, "internet_bandwidth": + 629145600}, {"internal_bandwidth": 2684354560, "internet_bandwidth": null}], + "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": 629145600, "ipv6_support": + true}, "hourly_price": 0.048, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue"], "hot_snapshots_local_volume": false, "placement_groups": + false, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": true, "gpu": null}, "C2M": {"monthly_price": 17.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 17179869184, "arch": "x86_64", "volumes_constraint": {"min_size": 50000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + 2684354560, "internet_bandwidth": 524288000}, {"internal_bandwidth": 2684354560, + "internet_bandwidth": null}], "sum_internal_bandwidth": 5368709120, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.036, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue"], "hot_snapshots_local_volume": false, + "placement_groups": false, "block_storage": false, "default_boot_type": "bootscript", + "private_network": 0}, "baremetal": true, "gpu": null}, "ARM64-4GB": {"monthly_price": + 5.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "ncpus": 6, "ram": 4294967296, "arch": "arm64", "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "network": {"interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], "sum_internal_bandwidth": + null, "sum_internet_bandwidth": 209715200, "ipv6_support": true}, "hourly_price": + 0.012, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + false, "default_boot_type": "bootscript", "private_network": 0}, "baremetal": + false, "gpu": null}, "ARM64-128GB": {"monthly_price": 279.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 64, + "ram": 137438953472, "arch": "arm64", "volumes_constraint": {"min_size": 500000000000, + "max_size": 1000000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 1073741824, "ipv6_support": true}, "hourly_price": 0.56, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-S": + {"monthly_price": 3.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 2, "ram": 2147483648, "arch": "x86_64", + "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "network": + {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 209715200}], + "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, "ipv6_support": + true}, "hourly_price": 0.008, "alt_names": [], "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": true, "placement_groups": + true, "block_storage": false, "default_boot_type": "bootscript", "private_network": + 0}, "baremetal": false, "gpu": null}, "X64-30GB": {"monthly_price": 49.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 32212254720, "arch": "x86_64", "volumes_constraint": {"min_size": 300000000000, + "max_size": 400000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 524288000, "ipv6_support": true}, "hourly_price": 0.1, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-L": + {"monthly_price": 299.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 32, "ram": 137438953472, "arch": "x86_64", + "volumes_constraint": {"min_size": 600000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5368709120}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 5368709120, "ipv6_support": true}, "hourly_price": + 0.598, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "GP1-M": {"monthly_price": 159.0, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "ncpus": 16, "ram": 68719476736, + "arch": "x86_64", "volumes_constraint": {"min_size": 600000000000, "max_size": + 600000000000}, "network": {"interfaces": [{"internal_bandwidth": 104857600, + "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 1610612736}], "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 1610612736, "ipv6_support": true}, "hourly_price": 0.318, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "default_boot_type": + "local", "private_network": 8}, "baremetal": false, "gpu": null}, "ARM64-64GB": + {"monthly_price": 139.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 48, "ram": 68719476736, "arch": "arm64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 800000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.28, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "GP1-S": + {"monthly_price": 79.0, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 800000000000}}, "ncpus": 8, "ram": 34359738368, "arch": "x86_64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 300000000000}, + "network": {"interfaces": [{"internal_bandwidth": 104857600, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 838860800}], "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 838860800, "ipv6_support": true}, "hourly_price": + 0.158, "alt_names": [], "capabilities": {"boot_types": ["bootscript", "rescue", + "local"], "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "default_boot_type": "local", "private_network": 8}, "baremetal": false, + "gpu": null}, "START1-L": {"monthly_price": 15.99, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "ncpus": 8, "ram": + 8589934592, "arch": "x86_64", "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "network": {"interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 419430400}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": + 419430400, "ipv6_support": true}, "hourly_price": 0.032, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "START1-M": + {"monthly_price": 7.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 4, "ram": 4294967296, "arch": "x86_64", + "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 314572800}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 314572800, + "ipv6_support": true}, "hourly_price": 0.016, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "VC1L": + {"monthly_price": 9.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 6, "ram": 8589934592, "arch": "x86_64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 209715200}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 209715200, + "ipv6_support": true}, "hourly_price": 0.02, "alt_names": ["X64-8GB"], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-32GB": + {"monthly_price": 69.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 32, "ram": 34359738368, "arch": "arm64", + "volumes_constraint": {"min_size": 300000000000, "max_size": 600000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.14, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-120GB": + {"monthly_price": 179.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 12, "ram": 128849018880, "arch": "x86_64", + "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.36, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "ARM64-16GB": + {"monthly_price": 34.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 16, "ram": 17179869184, "arch": "arm64", + "volumes_constraint": {"min_size": 200000000000, "max_size": 400000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 524288000}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 524288000, + "ipv6_support": true}, "hourly_price": 0.07, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}, "X64-60GB": + {"monthly_price": 89.99, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "ncpus": 10, "ram": 64424509440, "arch": "x86_64", + "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "network": {"interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 1073741824}], "sum_internal_bandwidth": null, "sum_internet_bandwidth": 1073741824, + "ipv6_support": true}, "hourly_price": 0.18, "alt_names": [], "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": false, "default_boot_type": + "bootscript", "private_network": 0}, "baremetal": false, "gpu": null}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "23699" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:18 GMT + Link: + - ; rel="last" + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: @@ -637,7 +959,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:39:03 GMT + - Tue, 11 Feb 2020 13:55:18 GMT Link: - ; rel="last" Server: @@ -654,32 +976,75 @@ interactions: code: 200 duration: "" - request: - body: '{"organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f974feac-abae-4365-b988-8ec7d1cec10d + method: GET + response: + body: '{"image": {"creation_date": "2019-03-05T10:13:15.974944+00:00", "default_bootscript": + {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", + "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": + false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": + "x86_64", "title": "x86_64 mainline 4.9.93 rev1", "dtb": "", "organization": + "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", + "public": false}, "from_server": null, "arch": "x86_64", "id": "f974feac-abae-4365-b988-8ec7d1cec10d", + "root_volume": {"size": 10000000000, "id": "dd5f5c10-23b1-4c9c-8445-eb6740957c84", + "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, + "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", + "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "extra_volumes": {}, "public": true}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1004" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 11 Feb 2020 13:55:18 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "reverse": - null, "id": "e8086eeb-cca1-4fc9-ada3-1495741cdea4", "server": null, "address": - "163.172.146.186"}}' + body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": + null, "id": "a89c1b75-e965-4cba-96f1-483c0a0517d0", "server": null, "address": + "51.158.101.198"}}' headers: Cache-Control: - no-cache Content-Length: - - "173" + - "172" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:39:03 GMT + - Tue, 11 Feb 2020 13:55:19 GMT Location: - - https://cp-par1.scaleway.com/ips/e8086eeb-cca1-4fc9-ada3-1495741cdea4 + - https://cp-par1.scaleway.com/ips/a89c1b75-e965-4cba-96f1-483c0a0517d0 Server: - scaleway_api Strict-Transport-Security: @@ -692,13 +1057,13 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-cool-poitras","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"e8086eeb-cca1-4fc9-ada3-1495741cdea4","boot_type":"local","organization":"b2593aa3-d0e8-4366-89c3-6e666abe1f6f"}' + body: '{"name":"cli-srv-hopeful-kalam","commercial_type":"DEV1-S","image":"f974feac-abae-4365-b988-8ec7d1cec10d","public_ip":"a89c1b75-e965-4cba-96f1-483c0a0517d0","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -714,11 +1079,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:39:03.970868+00:00", - "public_ip": {"dynamic": false, "id": "e8086eeb-cca1-4fc9-ada3-1495741cdea4", - "address": "163.172.146.186"}, "private_ip": null, "id": "2cbc1a9a-9aab-4f04-b1cc-6b20046a0761", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:39:04.285435+00:00", - "enable_ipv6": false, "hostname": "cli-srv-cool-poitras", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:19.689489+00:00", + "public_ip": {"dynamic": false, "id": "a89c1b75-e965-4cba-96f1-483c0a0517d0", + "address": "51.158.101.198"}, "private_ip": null, "id": "d81e4089-5bb5-462c-adc5-a0072950a1bd", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:19.893824+00:00", + "enable_ipv6": false, "hostname": "cli-srv-hopeful-kalam", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -726,27 +1091,28 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-cool-poitras", "protected": false, + [], "compute_cluster": null, "name": "cli-srv-hopeful-kalam", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:39:04.216088+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:39:03.970868+00:00", "id": - "6989ed78-33d8-493f-8860-ba24bb08d5bf", "volume_type": "l_ssd", "server": {"id": - "2cbc1a9a-9aab-4f04-b1cc-6b20046a0761", "name": "cli-srv-cool-poitras"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:55:19.883708+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:19.689489+00:00", "id": + "32cdbe0b-b8ee-4914-bbdb-5c98b7e461f1", "volume_type": "l_ssd", "server": {"id": + "d81e4089-5bb5-462c-adc5-a0072950a1bd", "name": "cli-srv-hopeful-kalam"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2848" + - "2850" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:39:04 GMT + - Tue, 11 Feb 2020 13:55:19 GMT Location: - - https://cp-par1.scaleway.com/servers/2cbc1a9a-9aab-4f04-b1cc-6b20046a0761 + - https://cp-par1.scaleway.com/servers/d81e4089-5bb5-462c-adc5-a0072950a1bd Server: - scaleway_api Strict-Transport-Security: @@ -763,8 +1129,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2cbc1a9a-9aab-4f04-b1cc-6b20046a0761 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d81e4089-5bb5-462c-adc5-a0072950a1bd method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -779,11 +1145,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:39:03.970868+00:00", - "public_ip": {"dynamic": false, "id": "e8086eeb-cca1-4fc9-ada3-1495741cdea4", - "address": "163.172.146.186"}, "private_ip": null, "id": "2cbc1a9a-9aab-4f04-b1cc-6b20046a0761", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:39:04.285435+00:00", - "enable_ipv6": false, "hostname": "cli-srv-cool-poitras", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:19.689489+00:00", + "public_ip": {"dynamic": false, "id": "a89c1b75-e965-4cba-96f1-483c0a0517d0", + "address": "51.158.101.198"}, "private_ip": null, "id": "d81e4089-5bb5-462c-adc5-a0072950a1bd", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:19.893824+00:00", + "enable_ipv6": false, "hostname": "cli-srv-hopeful-kalam", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -791,25 +1157,26 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-cool-poitras", "protected": false, + [], "compute_cluster": null, "name": "cli-srv-hopeful-kalam", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:39:04.216088+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:39:03.970868+00:00", "id": - "6989ed78-33d8-493f-8860-ba24bb08d5bf", "volume_type": "l_ssd", "server": {"id": - "2cbc1a9a-9aab-4f04-b1cc-6b20046a0761", "name": "cli-srv-cool-poitras"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:55:19.883708+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:19.689489+00:00", "id": + "32cdbe0b-b8ee-4914-bbdb-5c98b7e461f1", "volume_type": "l_ssd", "server": {"id": + "d81e4089-5bb5-462c-adc5-a0072950a1bd", "name": "cli-srv-hopeful-kalam"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2848" + - "2850" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:39:04 GMT + - Tue, 11 Feb 2020 13:55:19 GMT Server: - scaleway_api Strict-Transport-Security: @@ -828,8 +1195,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2cbc1a9a-9aab-4f04-b1cc-6b20046a0761 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d81e4089-5bb5-462c-adc5-a0072950a1bd method: PATCH response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -844,11 +1211,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:39:03.970868+00:00", - "public_ip": {"dynamic": false, "id": "e8086eeb-cca1-4fc9-ada3-1495741cdea4", - "address": "163.172.146.186"}, "private_ip": null, "id": "2cbc1a9a-9aab-4f04-b1cc-6b20046a0761", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:39:04.285435+00:00", - "enable_ipv6": false, "hostname": "cli-srv-cool-poitras", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:19.689489+00:00", + "public_ip": {"dynamic": false, "id": "a89c1b75-e965-4cba-96f1-483c0a0517d0", + "address": "51.158.101.198"}, "private_ip": null, "id": "d81e4089-5bb5-462c-adc5-a0072950a1bd", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:19.893824+00:00", + "enable_ipv6": false, "hostname": "cli-srv-hopeful-kalam", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -856,25 +1223,26 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-cool-poitras", "protected": false, + [], "compute_cluster": null, "name": "cli-srv-hopeful-kalam", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:39:04.216088+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:39:03.970868+00:00", "id": - "6989ed78-33d8-493f-8860-ba24bb08d5bf", "volume_type": "l_ssd", "server": {"id": - "2cbc1a9a-9aab-4f04-b1cc-6b20046a0761", "name": "cli-srv-cool-poitras"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:55:19.883708+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:19.689489+00:00", "id": + "32cdbe0b-b8ee-4914-bbdb-5c98b7e461f1", "volume_type": "l_ssd", "server": {"id": + "d81e4089-5bb5-462c-adc5-a0072950a1bd", "name": "cli-srv-hopeful-kalam"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2848" + - "2850" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:39:04 GMT + - Tue, 11 Feb 2020 13:55:20 GMT Server: - scaleway_api Strict-Transport-Security: @@ -891,8 +1259,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2cbc1a9a-9aab-4f04-b1cc-6b20046a0761 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d81e4089-5bb5-462c-adc5-a0072950a1bd method: GET response: body: '{"server": {"allowed_actions": ["poweron", "backup"], "maintenances": [], @@ -907,11 +1275,11 @@ interactions: "volume_type": "l_ssd", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13"}, "name": "Ubuntu Bionic Beaver", "modification_date": "2019-03-05T13:32:29.274319+00:00", "state": "available", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "extra_volumes": {}, "public": true}, "creation_date": "2020-02-07T16:39:03.970868+00:00", - "public_ip": {"dynamic": false, "id": "e8086eeb-cca1-4fc9-ada3-1495741cdea4", - "address": "163.172.146.186"}, "private_ip": null, "id": "2cbc1a9a-9aab-4f04-b1cc-6b20046a0761", - "dynamic_ip_required": false, "modification_date": "2020-02-07T16:39:04.285435+00:00", - "enable_ipv6": false, "hostname": "cli-srv-cool-poitras", "state": "stopped", + "extra_volumes": {}, "public": true}, "creation_date": "2020-02-11T13:55:19.689489+00:00", + "public_ip": {"dynamic": false, "id": "a89c1b75-e965-4cba-96f1-483c0a0517d0", + "address": "51.158.101.198"}, "private_ip": null, "id": "d81e4089-5bb5-462c-adc5-a0072950a1bd", + "dynamic_ip_required": false, "modification_date": "2020-02-11T13:55:19.893824+00:00", + "enable_ipv6": false, "hostname": "cli-srv-hopeful-kalam", "state": "stopped", "bootscript": {"kernel": "http://169.254.42.24/kernel/x86_64-mainline-lts-4.9-4.9.93-rev1/vmlinuz-4.9.93", "initrd": "http://169.254.42.24/initrd/initrd-Linux-x86_64-v3.14.6.gz", "default": false, "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "architecture": @@ -919,25 +1287,26 @@ interactions: "11111111-1111-4111-8111-111111111111", "id": "15fbd2f7-a0f9-412b-8502-6a44da8d98b8", "public": false}, "location": null, "boot_type": "local", "ipv6": null, "commercial_type": "DEV1-S", "placement_group": null, "tags": [], "arch": "x86_64", "extra_networks": - [], "compute_cluster": null, "name": "cli-srv-cool-poitras", "protected": false, + [], "compute_cluster": null, "name": "cli-srv-hopeful-kalam", "protected": false, "volumes": {"0": {"size": 20000000000, "state": "available", "name": "snapshot-de728daa-0bf6-4c64-abf5-a9477e791c83-2019-03-05_10:13", - "modification_date": "2020-02-07T16:39:04.216088+00:00", "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", - "export_uri": null, "creation_date": "2020-02-07T16:39:03.970868+00:00", "id": - "6989ed78-33d8-493f-8860-ba24bb08d5bf", "volume_type": "l_ssd", "server": {"id": - "2cbc1a9a-9aab-4f04-b1cc-6b20046a0761", "name": "cli-srv-cool-poitras"}}}, "security_group": - {"id": "980142a3-a959-4aee-8325-91a6ba787439", "name": "Default security group"}, - "organization": "b2593aa3-d0e8-4366-89c3-6e666abe1f6f", "private_nics": []}}' + "modification_date": "2020-02-11T13:55:19.883708+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T13:55:19.689489+00:00", "id": + "32cdbe0b-b8ee-4914-bbdb-5c98b7e461f1", "volume_type": "l_ssd", "server": {"id": + "d81e4089-5bb5-462c-adc5-a0072950a1bd", "name": "cli-srv-hopeful-kalam"}}}, + "security_group": {"id": "49822f6c-1d32-465c-a017-720691d159b2", "name": "Default + security group"}, "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "private_nics": + []}}' headers: Cache-Control: - no-cache Content-Length: - - "2848" + - "2850" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:39:04 GMT + - Tue, 11 Feb 2020 13:55:20 GMT Server: - scaleway_api Strict-Transport-Security: @@ -954,8 +1323,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.7; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2cbc1a9a-9aab-4f04-b1cc-6b20046a0761 + - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d81e4089-5bb5-462c-adc5-a0072950a1bd method: DELETE response: body: "" @@ -967,7 +1336,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 07 Feb 2020 16:39:04 GMT + - Tue, 11 Feb 2020 13:55:20 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-server-update-simple.stdout.golden b/internal/namespaces/instance/v1/testdata/test-server-update-simple.stdout.golden index 6538ed9b7d..b76db0b02a 100644 --- a/internal/namespaces/instance/v1/testdata/test-server-update-simple.stdout.golden +++ b/internal/namespaces/instance/v1/testdata/test-server-update-simple.stdout.golden @@ -1,13 +1,13 @@ -server.id 2cbc1a9a-9aab-4f04-b1cc-6b20046a0761 -server.name cli-srv-cool-poitras -server.organization b2593aa3-d0e8-4366-89c3-6e666abe1f6f +server.id d81e4089-5bb5-462c-adc5-a0072950a1bd +server.name cli-srv-hopeful-kalam +server.organization aba2d0d0-b01d-4d88-b322-935edc96d0fd server.allowed-actions.0 poweron server.allowed-actions.1 backup server.commercial-type DEV1-S server.creation-date few seconds ago server.dynamic-ip-required false server.enable-ipv6 false -server.hostname cli-srv-cool-poitras +server.hostname cli-srv-hopeful-kalam server.image.id f974feac-abae-4365-b988-8ec7d1cec10d server.image.name Ubuntu Bionic Beaver server.image.arch x86_64 @@ -21,15 +21,15 @@ server.image.public true server.image.root-volume dd5f5c10-23b1-4c9c-8445-eb6740957c84 server.image.state available server.protected false -server.public-ip.id e8086eeb-cca1-4fc9-ada3-1495741cdea4 -server.public-ip.address 163.172.146.186 +server.public-ip.id a89c1b75-e965-4cba-96f1-483c0a0517d0 +server.public-ip.address 51.158.101.198 server.public-ip.dynamic false server.modification-date few seconds ago server.state archived server.bootscript x86_64 mainline 4.9.93 rev1 server.boot-type local server.volumes 1 -server.security-group.id 980142a3-a959-4aee-8325-91a6ba787439 +server.security-group.id 49822f6c-1d32-465c-a017-720691d159b2 server.security-group.name Default security group server.state-detail server.arch x86_64 From 9033b5fb2aa99c742b4efc001cbdfb4164fe7f01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Bourgois?= Date: Tue, 11 Feb 2020 15:05:29 +0100 Subject: [PATCH 2/6] address bot comment --- internal/namespaces/instance/v1/custom_server_create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/namespaces/instance/v1/custom_server_create.go b/internal/namespaces/instance/v1/custom_server_create.go index 424a673793..3ecd720a21 100644 --- a/internal/namespaces/instance/v1/custom_server_create.go +++ b/internal/namespaces/instance/v1/custom_server_create.go @@ -176,7 +176,7 @@ func instanceServerCreateRun(ctx context.Context, argsI interface{}) (i interfac if err != nil { logger.Warningf("cannot get server types: %s", err) } else { - serverType, _ = serverTypesRes.Servers[serverReq.CommercialType] + serverType = serverTypesRes.Servers[serverReq.CommercialType] if serverType == nil { logger.Warningf("unrecognized server type: %s", serverReq.CommercialType) } From 11b055fa989fa1e409a638bda288d3ecc8a21bbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Bourgois?= Date: Tue, 11 Feb 2020 15:18:20 +0100 Subject: [PATCH 3/6] extract getServerType func --- .../instance/v1/custom_server_create.go | 35 +++++++++++-------- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/internal/namespaces/instance/v1/custom_server_create.go b/internal/namespaces/instance/v1/custom_server_create.go index 3ecd720a21..11197f0177 100644 --- a/internal/namespaces/instance/v1/custom_server_create.go +++ b/internal/namespaces/instance/v1/custom_server_create.go @@ -166,21 +166,7 @@ func instanceServerCreateRun(ctx context.Context, argsI interface{}) (i interfac apiMarketplace := marketplace.NewAPI(client) apiInstance := instance.NewAPI(client) - // - // Server Type - // - serverType := (*instance.ServerType)(nil) - serverTypesRes, err := apiInstance.ListServersTypes(&instance.ListServersTypesRequest{ - Zone: serverReq.Zone, - }) - if err != nil { - logger.Warningf("cannot get server types: %s", err) - } else { - serverType = serverTypesRes.Servers[serverReq.CommercialType] - if serverType == nil { - logger.Warningf("unrecognized server type: %s", serverReq.CommercialType) - } - } + serverType := getServeType(apiInstance, serverReq.Zone, serverReq.CommercialType) // // Image. @@ -602,3 +588,22 @@ func instanceServerCreateImageAutoCompleteFunc(ctx context.Context, prefix strin return suggestions } + +// getServeType is a util to get a instance.ServerType by its commercialType +func getServeType(apiInstance *instance.API, zone scw.Zone, commercialType string) *instance.ServerType { + serverType := (*instance.ServerType)(nil) + + serverTypesRes, err := apiInstance.ListServersTypes(&instance.ListServersTypesRequest{ + Zone: zone, + }) + if err != nil { + logger.Warningf("cannot get server types: %s", err) + } else { + serverType = serverTypesRes.Servers[commercialType] + if serverType == nil { + logger.Warningf("unrecognized server type: %s", commercialType) + } + } + + return serverType +} From d1912b7c43bb0f091941bca3d5c4fb62efaf2124 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Bourgois?= Date: Tue, 11 Feb 2020 15:20:10 +0100 Subject: [PATCH 4/6] cleanup comment --- internal/namespaces/instance/v1/custom_server_create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/namespaces/instance/v1/custom_server_create.go b/internal/namespaces/instance/v1/custom_server_create.go index 11197f0177..663f2ae459 100644 --- a/internal/namespaces/instance/v1/custom_server_create.go +++ b/internal/namespaces/instance/v1/custom_server_create.go @@ -476,7 +476,7 @@ func validateImageServerTypeCompatibility(getImageResponse *instance.GetImageRes return nil } - if /*getImageResponse.Image.RootVolume.Size < serverType.VolumesConstraint.MinSize || */ getImageResponse.Image.RootVolume.Size > serverType.VolumesConstraint.MaxSize { + if getImageResponse.Image.RootVolume.Size > serverType.VolumesConstraint.MaxSize { return fmt.Errorf("image %s requires %s on root volume, but root volume for %s is constraigned between %s and %s", getImageResponse.Image.ID, getImageResponse.Image.RootVolume.Size, From f41e69d089e9674ee74fe18cb913134e33831593 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Bourgois?= Date: Tue, 11 Feb 2020 16:40:38 +0100 Subject: [PATCH 5/6] address comments --- .../instance/v1/custom_server_create.go | 12 ++++---- ...llow-existing-root-volume-id.stderr.golden | 2 +- ...ompatible-with-instance-type.cassette.yaml | 4 +-- ...ompatible-with-instance-type.stderr.golden | 2 +- ...rs-error:-invalid-image-uuid.cassette.yaml | 22 +++++++------- ...or:-invalid-root-volume-size.stderr.golden | 2 +- ...ocal-volumes-size:-too-high3.cassette.yaml | 30 +++++++++---------- ...ocal-volumes-size:-too-high3.stderr.golden | 2 +- 8 files changed, 38 insertions(+), 38 deletions(-) diff --git a/internal/namespaces/instance/v1/custom_server_create.go b/internal/namespaces/instance/v1/custom_server_create.go index 663f2ae459..1b5540c37e 100644 --- a/internal/namespaces/instance/v1/custom_server_create.go +++ b/internal/namespaces/instance/v1/custom_server_create.go @@ -477,12 +477,12 @@ func validateImageServerTypeCompatibility(getImageResponse *instance.GetImageRes } if getImageResponse.Image.RootVolume.Size > serverType.VolumesConstraint.MaxSize { - return fmt.Errorf("image %s requires %s on root volume, but root volume for %s is constraigned between %s and %s", + return fmt.Errorf("image %s requires %s on root volume, but root volume is constrained between %s and %s on %s", getImageResponse.Image.ID, - getImageResponse.Image.RootVolume.Size, + humanize.Bytes(uint64(getImageResponse.Image.RootVolume.Size)), + humanize.Bytes(uint64(serverType.VolumesConstraint.MinSize)), + humanize.Bytes(uint64(serverType.VolumesConstraint.MaxSize)), CommercialType, - serverType.VolumesConstraint.MinSize, - serverType.VolumesConstraint.MaxSize, ) } @@ -536,12 +536,12 @@ func validateRootVolume(getImageResponse *instance.GetImageResponse, rootVolume if rootVolume.ID != "" { return &core.CliError{ Err: fmt.Errorf("you cannot use an existing volume as a root volume"), - Details: "You must create an imageID of this volume and use its ID in the 'imageID' argument.", + Details: "You must create an image of this volume and use its ID in the 'image' argument.", } } if rootVolume.Size < getImageResponse.Image.RootVolume.Size { - return fmt.Errorf("first volume size must be at least %s for this imageID", humanize.Bytes(uint64(getImageResponse.Image.RootVolume.Size))) + return fmt.Errorf("first volume size must be at least %s for this image", humanize.Bytes(uint64(getImageResponse.Image.RootVolume.Size))) } return nil diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-disallow-existing-root-volume-id.stderr.golden b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-disallow-existing-root-volume-id.stderr.golden index ef0bcf2147..1f5e958978 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-disallow-existing-root-volume-id.stderr.golden +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-disallow-existing-root-volume-id.stderr.golden @@ -1,4 +1,4 @@ You cannot use an existing volume as a root volume Details: -You must create an imageID of this volume and use its ID in the 'imageID' argument. +You must create an image of this volume and use its ID in the 'image' argument. diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.cassette.yaml index 9c0a056a18..dd2c2f3cfc 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.cassette.yaml @@ -307,7 +307,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Feb 2020 13:55:05 GMT + - Tue, 11 Feb 2020 15:36:15 GMT Link: - ; rel="last" Server: @@ -354,7 +354,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Feb 2020 13:55:05 GMT + - Tue, 11 Feb 2020 15:36:15 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.stderr.golden b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.stderr.golden index a14ae416bf..d1ded4978c 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.stderr.golden +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-image-size-is-incompatible-with-instance-type.stderr.golden @@ -1 +1 @@ -Image d4067cdc-dc9d-4810-8a26-0dae51d7df42 requires 50000000000 on root volume, but root volume for DEV1-S is constraigned between 20000000000 and 20000000000 +Image d4067cdc-dc9d-4810-8a26-0dae51d7df42 requires 50 GB on root volume, but root volume is constrained between 20 GB and 20 GB on DEV1-S diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-uuid.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-uuid.cassette.yaml index 290c933ae4..dd682236dc 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-uuid.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-image-uuid.cassette.yaml @@ -307,7 +307,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Feb 2020 13:54:57 GMT + - Tue, 11 Feb 2020 15:37:53 GMT Link: - ; rel="last" Server: @@ -342,7 +342,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Feb 2020 13:54:57 GMT + - Tue, 11 Feb 2020 15:37:53 GMT Server: - scaleway_api Strict-Transport-Security: @@ -366,21 +366,21 @@ interactions: method: POST response: body: '{"ip": {"organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", "reverse": - null, "id": "7f7e5c46-ed0a-425f-8d43-d0cfd77386dc", "server": null, "address": - "163.172.182.243"}}' + null, "id": "95c94531-cba7-4e57-aa5e-b6a4dd7a816c", "server": null, "address": + "163.172.170.53"}}' headers: Cache-Control: - no-cache Content-Length: - - "173" + - "172" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 11 Feb 2020 13:54:57 GMT + - Tue, 11 Feb 2020 15:37:54 GMT Location: - - https://cp-par1.scaleway.com/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc + - https://cp-par1.scaleway.com/ips/95c94531-cba7-4e57-aa5e-b6a4dd7a816c Server: - scaleway_api Strict-Transport-Security: @@ -393,7 +393,7 @@ interactions: code: 201 duration: "" - request: - body: '{"name":"cli-srv-clever-roentgen","commercial_type":"DEV1-S","image":"7a892c1a-bbdc-491f-9974-4008e3708664","public_ip":"7f7e5c46-ed0a-425f-8d43-d0cfd77386dc","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' + body: '{"name":"cli-srv-infallible-kilby","commercial_type":"DEV1-S","image":"7a892c1a-bbdc-491f-9974-4008e3708664","public_ip":"95c94531-cba7-4e57-aa5e-b6a4dd7a816c","boot_type":"local","organization":"aba2d0d0-b01d-4d88-b322-935edc96d0fd"}' form: {} headers: Content-Type: @@ -413,7 +413,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Feb 2020 13:54:58 GMT + - Tue, 11 Feb 2020 15:37:54 GMT Server: - scaleway_api Strict-Transport-Security: @@ -431,7 +431,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/7f7e5c46-ed0a-425f-8d43-d0cfd77386dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/95c94531-cba7-4e57-aa5e-b6a4dd7a816c method: DELETE response: body: "" @@ -443,7 +443,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Feb 2020 13:54:58 GMT + - Tue, 11 Feb 2020 15:37:54 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-size.stderr.golden b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-size.stderr.golden index 6cfe1418fe..6dde2b6a59 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-size.stderr.golden +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-root-volume-size.stderr.golden @@ -1 +1 @@ -First volume size must be at least 10 GB for this imageID +First volume size must be at least 10 GB for this image diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.cassette.yaml b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.cassette.yaml index acf928b3d8..0a8f359da1 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.cassette.yaml +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.cassette.yaml @@ -13,9 +13,9 @@ interactions: method: POST response: body: '{"volume": {"size": 20000000000, "state": "available", "name": "cli-test", - "modification_date": "2020-02-11T13:55:00.043208+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", - "export_uri": null, "creation_date": "2020-02-11T13:55:00.043208+00:00", "id": - "685406de-e4a8-4168-9a67-177cdc90729b", "volume_type": "l_ssd", "server": null}}' + "modification_date": "2020-02-11T15:31:20.403908+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T15:31:20.403908+00:00", "id": + "bd91b6d8-ba6d-4a98-bf2c-841cb1e9d38d", "volume_type": "l_ssd", "server": null}}' headers: Cache-Control: - no-cache @@ -26,9 +26,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Feb 2020 13:54:59 GMT + - Tue, 11 Feb 2020 15:31:20 GMT Location: - - https://cp-par1.scaleway.com/volumes/685406de-e4a8-4168-9a67-177cdc90729b + - https://cp-par1.scaleway.com/volumes/bd91b6d8-ba6d-4a98-bf2c-841cb1e9d38d Server: - scaleway_api Strict-Transport-Security: @@ -346,7 +346,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Feb 2020 13:54:59 GMT + - Tue, 11 Feb 2020 15:31:20 GMT Link: - ; rel="last" Server: @@ -998,7 +998,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Feb 2020 13:55:00 GMT + - Tue, 11 Feb 2020 15:31:20 GMT Link: - ; rel="last" Server: @@ -1045,7 +1045,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Feb 2020 13:55:00 GMT + - Tue, 11 Feb 2020 15:31:20 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1063,13 +1063,13 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/685406de-e4a8-4168-9a67-177cdc90729b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd91b6d8-ba6d-4a98-bf2c-841cb1e9d38d method: GET response: body: '{"volume": {"size": 20000000000, "state": "available", "name": "cli-test", - "modification_date": "2020-02-11T13:55:00.043208+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", - "export_uri": null, "creation_date": "2020-02-11T13:55:00.043208+00:00", "id": - "685406de-e4a8-4168-9a67-177cdc90729b", "volume_type": "l_ssd", "server": null}}' + "modification_date": "2020-02-11T15:31:20.403908+00:00", "organization": "aba2d0d0-b01d-4d88-b322-935edc96d0fd", + "export_uri": null, "creation_date": "2020-02-11T15:31:20.403908+00:00", "id": + "bd91b6d8-ba6d-4a98-bf2c-841cb1e9d38d", "volume_type": "l_ssd", "server": null}}' headers: Cache-Control: - no-cache @@ -1080,7 +1080,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Feb 2020 13:55:00 GMT + - Tue, 11 Feb 2020 15:31:20 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1098,7 +1098,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.5+dev (go1.13.1; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/685406de-e4a8-4168-9a67-177cdc90729b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd91b6d8-ba6d-4a98-bf2c-841cb1e9d38d method: DELETE response: body: "" @@ -1110,7 +1110,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 11 Feb 2020 13:55:00 GMT + - Tue, 11 Feb 2020 15:31:21 GMT Server: - scaleway_api Strict-Transport-Security: diff --git a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.stderr.golden b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.stderr.golden index ef0bcf2147..1f5e958978 100644 --- a/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.stderr.golden +++ b/internal/namespaces/instance/v1/testdata/test-create-server-errors-error:-invalid-total-local-volumes-size:-too-high3.stderr.golden @@ -1,4 +1,4 @@ You cannot use an existing volume as a root volume Details: -You must create an imageID of this volume and use its ID in the 'imageID' argument. +You must create an image of this volume and use its ID in the 'image' argument. From 5b8e60bd1355327cff75b8b899fd2d437f398149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Bourgois?= Date: Wed, 12 Feb 2020 09:51:42 +0100 Subject: [PATCH 6/6] address Quentin's comments --- .../instance/v1/custom_server_create.go | 49 +++++++++---------- 1 file changed, 22 insertions(+), 27 deletions(-) diff --git a/internal/namespaces/instance/v1/custom_server_create.go b/internal/namespaces/instance/v1/custom_server_create.go index 1b5540c37e..6b834a6b40 100644 --- a/internal/namespaces/instance/v1/custom_server_create.go +++ b/internal/namespaces/instance/v1/custom_server_create.go @@ -166,8 +166,6 @@ func instanceServerCreateRun(ctx context.Context, argsI interface{}) (i interfac apiMarketplace := marketplace.NewAPI(client) apiInstance := instance.NewAPI(client) - serverType := getServeType(apiInstance, serverReq.Zone, serverReq.CommercialType) - // // Image. // @@ -199,11 +197,14 @@ func instanceServerCreateRun(ctx context.Context, argsI interface{}) (i interfac logger.Warningf("cannot get image %s: %s", serverReq.Image, err) } - // - // Check Image / Server-Type compatibility - // - if err := validateImageServerTypeCompatibility(getImageResponse, serverType, serverReq.CommercialType); err != nil { - return nil, err + serverType := getServeType(apiInstance, serverReq.Zone, serverReq.CommercialType) + + if serverType != nil && getImageResponse != nil { + if err := validateImageServerTypeCompatibility(getImageResponse.Image, serverType, serverReq.CommercialType); err != nil { + return nil, err + } + } else { + logger.Warningf("skipping image server-type compatibility validation") } // @@ -258,13 +259,17 @@ func instanceServerCreateRun(ctx context.Context, argsI interface{}) (i interfac } // Validate root volume type and size. - if err := validateRootVolume(getImageResponse, volumes["0"]); err != nil { + if err := validateRootVolume(getImageResponse.Image.RootVolume.Size, volumes["0"]); err != nil { return nil, err } // Validate total local volume sizes. - if err := validateLocalVolumeSizes(volumes, serverType, serverReq.CommercialType); err != nil { - return nil, err + if serverType != nil { + if err := validateLocalVolumeSizes(volumes, serverType, serverReq.CommercialType); err != nil { + return nil, err + } + } else { + logger.Warningf("skip local volume size validation") } // Sanitize the volume map to respect API schemas @@ -470,16 +475,11 @@ func buildVolumeTemplateFromUUID(api *instance.API, zone scw.Zone, volumeUUID st }, nil } -func validateImageServerTypeCompatibility(getImageResponse *instance.GetImageResponse, serverType *instance.ServerType, CommercialType string) error { - if serverType == nil || getImageResponse == nil { - logger.Warningf("skipping image server-type compatibility validation") - return nil - } - - if getImageResponse.Image.RootVolume.Size > serverType.VolumesConstraint.MaxSize { +func validateImageServerTypeCompatibility(image *instance.Image, serverType *instance.ServerType, CommercialType string) error { + if image.RootVolume.Size > serverType.VolumesConstraint.MaxSize { return fmt.Errorf("image %s requires %s on root volume, but root volume is constrained between %s and %s on %s", - getImageResponse.Image.ID, - humanize.Bytes(uint64(getImageResponse.Image.RootVolume.Size)), + image.ID, + humanize.Bytes(uint64(image.RootVolume.Size)), humanize.Bytes(uint64(serverType.VolumesConstraint.MinSize)), humanize.Bytes(uint64(serverType.VolumesConstraint.MaxSize)), CommercialType, @@ -491,11 +491,6 @@ func validateImageServerTypeCompatibility(getImageResponse *instance.GetImageRes // validateLocalVolumeSizes validates the total size of local volumes. func validateLocalVolumeSizes(volumes map[string]*instance.VolumeTemplate, serverType *instance.ServerType, commercialType string) error { - if serverType == nil { - logger.Warningf("skip local volume size validation") - return nil - } - // Calculate local volume total size. var localVolumeTotalSize scw.Size for _, volume := range volumes { @@ -524,7 +519,7 @@ func validateLocalVolumeSizes(volumes map[string]*instance.VolumeTemplate, serve return nil } -func validateRootVolume(getImageResponse *instance.GetImageResponse, rootVolume *instance.VolumeTemplate) error { +func validateRootVolume(imageRequiredSize scw.Size, rootVolume *instance.VolumeTemplate) error { if rootVolume == nil { return nil } @@ -540,8 +535,8 @@ func validateRootVolume(getImageResponse *instance.GetImageResponse, rootVolume } } - if rootVolume.Size < getImageResponse.Image.RootVolume.Size { - return fmt.Errorf("first volume size must be at least %s for this image", humanize.Bytes(uint64(getImageResponse.Image.RootVolume.Size))) + if rootVolume.Size < imageRequiredSize { + return fmt.Errorf("first volume size must be at least %s for this image", humanize.Bytes(uint64(imageRequiredSize))) } return nil