From da4aa832895db844fb8b43b1e32571fe621ba7c5 Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Thu, 13 Apr 2023 09:46:00 +0200 Subject: [PATCH 1/4] feat(vpc): improve get private-network to show all attached resources --- .../vpc/v1/custom_private_network.go | 222 +- .../vpc/v1/custom_private_network_test.go | 29 + internal/namespaces/vpc/v1/helper_test.go | 48 + ...get-private-network-multiple.cassette.yaml | 3465 +++++++++++++++++ .../test-get-private-network-multiple.golden | 74 + ...t-get-private-network-simple.cassette.yaml | 2629 +++++++------ .../test-get-private-network-simple.golden | 61 +- 7 files changed, 5325 insertions(+), 1203 deletions(-) create mode 100644 internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.cassette.yaml create mode 100644 internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.golden diff --git a/internal/namespaces/vpc/v1/custom_private_network.go b/internal/namespaces/vpc/v1/custom_private_network.go index baab925a0d..fb81fb3304 100644 --- a/internal/namespaces/vpc/v1/custom_private_network.go +++ b/internal/namespaces/vpc/v1/custom_private_network.go @@ -4,19 +4,53 @@ import ( "context" "github.com/scaleway/scaleway-cli/v2/internal/core" + "github.com/scaleway/scaleway-sdk-go/api/baremetal/v1" "github.com/scaleway/scaleway-sdk-go/api/instance/v1" + "github.com/scaleway/scaleway-sdk-go/api/lb/v1" + "github.com/scaleway/scaleway-sdk-go/api/rdb/v1" + "github.com/scaleway/scaleway-sdk-go/api/redis/v1" "github.com/scaleway/scaleway-sdk-go/api/vpc/v1" + "github.com/scaleway/scaleway-sdk-go/api/vpcgw/v1" "github.com/scaleway/scaleway-sdk-go/scw" ) func privateNetworkGetBuilder(c *core.Command) *core.Command { - type customServer struct { + type customInstanceServer struct { ID string `json:"id"` Name string `json:"name"` State instance.ServerState `json:"state"` NicID string `json:"nic_id"` MacAddress string `json:"mac"` } + type customBaremetalServer struct { + ID string `json:"id"` + Name string `json:"server_id"` + State baremetal.ServerStatus `json:"state"` + BaremetalNetworkID string `json:"baremetal_network_id"` + } + type customLB struct { + ID string `json:"id"` + Name string `json:"server_id"` + State lb.LBStatus `json:"state"` + } + type customRdb struct { + ID string `json:"id"` + Name string `json:"server_id"` + State rdb.InstanceStatus `json:"state"` + EndpointID string `json:"endpoint_id"` + } + type customRedis struct { + ID string `json:"id"` + Name string `json:"server_id"` + State redis.ClusterStatus `json:"state"` + EndpointID string `json:"endpoint_id"` + } + type customGateway struct { + ID string `json:"id"` + Name string `json:"server_id"` + State vpcgw.GatewayStatus `json:"state"` + GatewayNetworkID string `json:"gateway_network_id"` + } c.Interceptor = func(ctx context.Context, argsI interface{}, runner core.CommandRunner) (interface{}, error) { getPNResp, err := runner(ctx, argsI) @@ -26,19 +60,20 @@ func privateNetworkGetBuilder(c *core.Command) *core.Command { pn := getPNResp.(*vpc.PrivateNetwork) client := core.ExtractClient(ctx) + + // Instance instanceAPI := instance.NewAPI(client) - listServers, err := instanceAPI.ListServers(&instance.ListServersRequest{ + listInstanceServers, err := instanceAPI.ListServers(&instance.ListServersRequest{ PrivateNetwork: &pn.ID, }, scw.WithAllPages()) if err != nil { - return getPNResp, err + return nil, err } - - customServers := []customServer{} - for _, server := range listServers.Servers { + var customInstanceServers []customInstanceServer + for _, server := range listInstanceServers.Servers { for _, nic := range server.PrivateNics { if nic.PrivateNetworkID == pn.ID { - customServers = append(customServers, customServer{ + customInstanceServers = append(customInstanceServers, customInstanceServer{ NicID: nic.ID, ID: nic.ServerID, MacAddress: nic.MacAddress, @@ -49,18 +84,185 @@ func privateNetworkGetBuilder(c *core.Command) *core.Command { } } + // Baremetal + baremtalPNAPI := baremetal.NewPrivateNetworkAPI(client) + baremetalAPI := baremetal.NewAPI(client) + listBaremetalServers, err := baremtalPNAPI.ListServerPrivateNetworks(&baremetal.PrivateNetworkAPIListServerPrivateNetworksRequest{ + Zone: pn.Zone, + PrivateNetworkID: &pn.ID, + }, scw.WithAllPages()) + if err != nil { + return nil, err + } + var customBaremetalServers []customBaremetalServer + for _, server := range listBaremetalServers.ServerPrivateNetworks { + if server.PrivateNetworkID == pn.ID { + getBaremetalServer, err := baremetalAPI.GetServer(&baremetal.GetServerRequest{ + Zone: pn.Zone, + ServerID: server.ServerID, + }) + if err != nil { + return nil, err + } + customBaremetalServers = append(customBaremetalServers, customBaremetalServer{ + ID: server.ServerID, + State: getBaremetalServer.Status, + BaremetalNetworkID: server.ID, + Name: getBaremetalServer.Name, + }) + } + } + + // LB + LBAPI := lb.NewZonedAPI(client) + listLbs, err := LBAPI.ListLBs(&lb.ZonedAPIListLBsRequest{ + Zone: pn.Zone, + }) + var filteredLBs []*lb.LB + for _, loadbalancer := range listLbs.LBs { + if loadbalancer.PrivateNetworkCount >= 1 { + filteredLBs = append(filteredLBs, loadbalancer) + } + } + if err != nil { + return nil, err + } + + var customLBs []customLB + for _, loadbalancer := range filteredLBs { + listLBpns, err := LBAPI.ListLBPrivateNetworks(&lb.ZonedAPIListLBPrivateNetworksRequest{ + Zone: loadbalancer.Zone, + LBID: loadbalancer.ID, + }, scw.WithAllPages()) + if err != nil { + return nil, err + } + for _, res := range listLBpns.PrivateNetwork { + if res.PrivateNetworkID == pn.ID { + customLBs = append(customLBs, customLB{ + ID: res.LB.ID, + Name: res.LB.Name, + State: res.LB.Status, + }) + } + } + } + + // Rdb + rdbAPI := rdb.NewAPI(client) + region, err := scw.Zone.Region(pn.Zone) + if err != nil { + return nil, err + } + listDBs, err := rdbAPI.ListInstances(&rdb.ListInstancesRequest{ + Region: region, + }, scw.WithAllPages()) + if err != nil { + return nil, err + } + var customRdbs []customRdb + for _, db := range listDBs.Instances { + for _, endpoint := range db.Endpoints { + if endpoint.PrivateNetwork != nil && endpoint.PrivateNetwork.PrivateNetworkID == pn.ID { + customRdbs = append(customRdbs, customRdb{ + EndpointID: endpoint.ID, + ID: db.ID, + Name: db.Name, + State: db.Status, + }) + } + } + } + + // Redis + redisAPI := redis.NewAPI(client) + listRedisClusters, err := redisAPI.ListClusters(&redis.ListClustersRequest{ + Zone: pn.Zone, + }, scw.WithAllPages()) + if err != nil { + return nil, err + } + var customClusters []customRedis + for _, cluster := range listRedisClusters.Clusters { + for _, endpoint := range cluster.Endpoints { + if endpoint.PrivateNetwork.ID == pn.ID { + customClusters = append(customClusters, customRedis{ + ID: cluster.ID, + Name: cluster.Name, + State: cluster.Status, + EndpointID: endpoint.ID, + }) + } + } + } + + // VPCGateway + vpcgwAPI := vpcgw.NewAPI(client) + listGateways, err := vpcgwAPI.ListGateways(&vpcgw.ListGatewaysRequest{ + Zone: pn.Zone, + }, scw.WithAllPages()) + if err != nil { + return nil, err + } + var customGateways []customGateway + for _, gateway := range listGateways.Gateways { + for _, gatewayNetwork := range gateway.GatewayNetworks { + if gatewayNetwork.PrivateNetworkID == pn.ID { + customGateways = append(customGateways, customGateway{ + ID: gateway.ID, + Name: gateway.Name, + State: gateway.Status, + GatewayNetworkID: gatewayNetwork.GatewayID, + }) + } + } + } + return &struct { *vpc.PrivateNetwork - Servers []customServer `json:"servers"` + InstanceServers []customInstanceServer `json:"instance_servers"` + BaremetalServers []customBaremetalServer `json:"baremetal_servers"` + LBs []customLB `json:"lbs"` + RdbInstances []customRdb `json:"rdb_instances"` + RedisClusters []customRedis `json:"redis_clusters"` + Gateways []customGateway `json:"gateways"` }{ pn, - customServers, + customInstanceServers, + customBaremetalServers, + customLBs, + customRdbs, + customClusters, + customGateways, }, nil } c.View = &core.View{ Sections: []*core.ViewSection{ - {FieldName: "Servers", Title: "Servers"}, + { + FieldName: "InstanceServers", + Title: "InstanceServers", + }, + { + FieldName: "BaremetalServers", + Title: "BaremetalServers", + }, + { + FieldName: "LBs", + Title: "LBs", + }, + { + FieldName: "RdbInstances", + Title: "RdbInstances", + }, + { + FieldName: "RedisClusters", + Title: "RedisClusters", + }, + { + FieldName: "Gateways", + Title: "Gateways", + }, }, } diff --git a/internal/namespaces/vpc/v1/custom_private_network_test.go b/internal/namespaces/vpc/v1/custom_private_network_test.go index a959b1c1d5..fbd160a529 100644 --- a/internal/namespaces/vpc/v1/custom_private_network_test.go +++ b/internal/namespaces/vpc/v1/custom_private_network_test.go @@ -5,11 +5,17 @@ import ( "github.com/scaleway/scaleway-cli/v2/internal/core" "github.com/scaleway/scaleway-cli/v2/internal/namespaces/instance/v1" + "github.com/scaleway/scaleway-cli/v2/internal/namespaces/lb/v1" + "github.com/scaleway/scaleway-cli/v2/internal/namespaces/rdb/v1" + "github.com/scaleway/scaleway-cli/v2/internal/namespaces/redis/v1" ) func Test_GetPrivateNetwork(t *testing.T) { cmds := GetCommands() cmds.Merge(instance.GetCommands()) + cmds.Merge(lb.GetCommands()) + cmds.Merge(rdb.GetCommands()) + cmds.Merge(redis.GetCommands()) t.Run("Simple", core.Test(&core.TestConfig{ Commands: cmds, @@ -25,4 +31,27 @@ func Test_GetPrivateNetwork(t *testing.T) { deletePN(), ), })) + + t.Run("Multiple", core.Test(&core.TestConfig{ + Commands: cmds, + BeforeFunc: core.BeforeFuncCombine( + createPN(), + createInstance(), + createNIC(), + createLB(), + attachLB(), + createRdbInstance(), + ), + Cmd: "scw vpc private-network get {{ .PN.ID }}", + Check: core.TestCheckGolden(), + AfterFunc: core.AfterFuncCombine( + detachLB(), + deleteLB(), + deleteInstance(), + detachRdbInstance(), + waitRdbInstance(), + deleteRdbInstance(), + deletePN(), + ), + })) } diff --git a/internal/namespaces/vpc/v1/helper_test.go b/internal/namespaces/vpc/v1/helper_test.go index 063425ef2c..e931b6eb74 100644 --- a/internal/namespaces/vpc/v1/helper_test.go +++ b/internal/namespaces/vpc/v1/helper_test.go @@ -1,6 +1,8 @@ package vpc import ( + "fmt" + "github.com/scaleway/scaleway-cli/v2/internal/core" ) @@ -32,3 +34,49 @@ func createNIC() core.BeforeFunc { "scw instance private-nic create server-id={{ .Instance.ID }} private-network-id={{ .PN.ID }}", ) } + +func createLB() core.BeforeFunc { + return core.ExecStoreBeforeCmd( + "LB", + "scw lb lb create name=cli-test description=cli-test --wait", + ) +} + +func attachLB() core.BeforeFunc { + return core.ExecBeforeCmd( + "scw lb private-network attach {{ .LB.ID }} private-network-id={{ .PN.ID }}", + ) +} + +func detachLB() core.AfterFunc { + return core.ExecAfterCmd( + "scw lb private-network detach {{ .LB.ID }} private-network-id={{ .PN.ID }}", + ) +} + +func deleteLB() core.AfterFunc { + return core.ExecAfterCmd("scw lb lb delete {{ .LB.ID }}") +} + +func createRdbInstance() core.BeforeFunc { + return core.ExecStoreBeforeCmd( + "RDB", + fmt.Sprintf("scw rdb instance create node-type=DB-DEV-S is-ha-cluster=false name=cli-test engine=PostgreSQL-12 user-name=foobar password={4xdl*#QOoP+&3XRkGA)] init-endpoints.0.private-network.private-network-id={{ .PN.ID }} init-endpoints.0.private-network.service-ip=192.168.0.1/24 --wait"), + ) +} + +func detachRdbInstance() core.AfterFunc { + return core.ExecAfterCmd( + "scw rdb endpoint delete endpoint-id={{ (index .RDB.Endpoints 0).ID }}", + ) +} + +func waitRdbInstance() core.AfterFunc { + return core.ExecAfterCmd( + "scw rdb instance wait {{ .RDB.ID }}", + ) +} + +func deleteRdbInstance() core.AfterFunc { + return core.ExecAfterCmd("scw rdb instance delete {{ .RDB.ID }}") +} diff --git a/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.cassette.yaml b/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.cassette.yaml new file mode 100644 index 0000000000..3794e566b9 --- /dev/null +++ b/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.cassette.yaml @@ -0,0 +1,3465 @@ +--- +version: 1 +interactions: +- request: + body: '{"name":"cli-pn-practical-austin","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks + method: POST + response: + body: '{"id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", "name":"cli-pn-practical-austin", + "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-04-13T07:36:40.254021Z", + "updated_at":"2023-04-13T07:36:40.254021Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "subnets":["172.16.184.0/22", "fd46:78ab:30b8:e6b::/64"], "zone":"fr-par-1"}' + headers: + Content-Length: + - "366" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:36:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 715f2cf9-f30a-45f3-ba77-a04e3bc3d023 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/marketplace/v1/images?page=1 + method: GET + response: + body: '{"images": [{"id": "0d3a22da-c634-45d6-a7dd-aff402f88b0c", "name": "AlmaLinux + 8", "label": "almalinux_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", + "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux + distribution, governed and driven by the community, focused on long-term stability + and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "73b7fe3c-6545-4f6e-aad0-e76c02404fbe", + "name": "2023-03-27T10:14:00.576321+00:00", "local_images": [{"id": "61d98e45-5103-4b3c-8ac6-060d65d0a2a5", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "690989ec-6014-4bc0-aa91-8b25de109120", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8947e592-8e0b-4e96-be26-f2bec8c9b2fd", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "ac946746-0bb6-4be4-abd3-198eb122c9d6", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "0ccb174b-2ee2-48da-90dc-c437169b7c8c", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "57a0b470-123a-4c73-a41f-89a9a249cf0e", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "ce0dc6f9-3c96-4b2f-88eb-9926f173196a", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "6afebd6c-2c3d-4e52-a200-305d94d8e844", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO"]}, {"id": "d03b8ce7-b36d-41dc-a1fb-558d94e8dbd0", "zone": "ams1", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", + "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", + "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d979b82f-2a8e-414f-8e0f-7c198cded9eb", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], + "creation_date": "2023-03-27T10:14:00.744971+00:00", "modification_date": "2023-03-27T10:14:00.744971+00:00"}], + "categories": ["distribution"], "current_public_version": "73b7fe3c-6545-4f6e-aad0-e76c02404fbe", + "creation_date": "2021-10-05T13:36:52.246490+00:00", "modification_date": "2023-03-28T15:03:59.569897+00:00", + "valid_until": null}, {"id": "486ead23-9656-41d1-aa74-a5a780b2ae1b", "name": + "AlmaLinux 9", "label": "almalinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", + "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux + distribution, governed and driven by the community, focused on long-term stability + and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "ea9150d8-7c8e-4bd6-9312-ef9619890757", + "name": "2023-03-27T12:40:38.225508+00:00", "local_images": [{"id": "62a0e992-a6df-4180-aea7-a371a56a5f59", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8a7f5fbb-0984-4732-904a-feb3f56df078", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "cc73f0cb-306a-419d-b8eb-0f951eb9283d", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "f0c3e2f5-72d8-43b2-a139-ab850f6865bb", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "a7c67fb1-27c1-4349-9d92-c4ddf119510a", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "c0a63d89-725b-4be6-b13e-967f11a85a1f", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "2cd027ac-0747-48b0-9f20-f2c1d364e2d1", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "ae4dd3e9-d980-4a2d-bdfa-0ad420882713", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO"]}, {"id": "718685dd-d66d-42fe-b74c-1f4895600496", "zone": "ams1", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", + "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", + "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "31c40954-2b15-4104-99e0-16184d8bc7c6", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], + "creation_date": "2023-03-27T12:40:38.405478+00:00", "modification_date": "2023-03-27T12:40:38.405478+00:00"}], + "categories": ["distribution"], "current_public_version": "ea9150d8-7c8e-4bd6-9312-ef9619890757", + "creation_date": "2022-08-24T09:21:26.315925+00:00", "modification_date": "2023-03-28T15:05:12.419108+00:00", + "valid_until": null}, {"id": "8f60c5dd-e659-48da-97e3-fb7de42195f5", "name": + "Arch Linux", "label": "arch_linux", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/archlinux.png", + "description": "Arch Linux is an independently developed Linux distribution + versatile enough to suit any role.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "fa0ae29c-27d3-4551-bb34-1a659a96d3c2", + "name": "2022-01-24T16:08:58.141740+00:00", "local_images": [{"id": "b57ecf7e-5b57-4ad7-8a57-30584aeb4c26", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XS", "ENT1-XXS"]}, {"id": "e9543979-6125-473d-9d62-398724da0c7f", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB", "ENT1-XS", "ENT1-XXS"]}, {"id": "6849a7e3-65e2-4c53-bfb4-18c157a9cd66", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS"]}, {"id": "6219dbd0-091e-4a64-9891-dfcbb586f6dd", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", + "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS"]}, {"id": "a1326795-478b-4ba1-be4b-592ecc100cac", "zone": "pl-waw-1", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", + "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", + "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", + "ENT1-XXS", "ENT1-XS"]}, {"id": "77184ad4-f7ba-486c-bdc3-509acae544a8", "zone": + "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "ENT1-XS", "ENT1-XXS"]}, + {"id": "2f64d38e-96d3-47d6-80b3-379893b2803a", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "ENT1-XXS", "ENT1-XS"]}], + "creation_date": "2022-01-24T16:08:58.198257+00:00", "modification_date": "2022-01-24T16:08:58.198257+00:00"}], + "categories": ["distribution"], "current_public_version": "fa0ae29c-27d3-4551-bb34-1a659a96d3c2", + "creation_date": "2016-03-07T20:55:32.213089+00:00", "modification_date": "2022-01-26T12:54:47.557608+00:00", + "valid_until": null}, {"id": "dc947de3-ddc7-4056-bc35-d51a316ebbb4", "name": + "CentOS 7.9", "label": "centos_7.9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/centos.png", + "description": "The CentOS Project is a community-driven free software effort + focused on delivering a robust open source ecosystem.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "16dda4a4-874a-4e6c-a39b-f007457038d8", "name": + "2022-11-17T16:45:12.127950+00:00", "local_images": [{"id": "7fde748b-5475-4d4a-90a9-34292d227fa3", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "8d8e561a-67ba-414d-9567-fdb9b70761da", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "80f07490-eda6-4402-9273-001d059f2f40", "zone": + "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "d202a177-e307-4fe4-8e33-c014f15e1988", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "fc13535c-d2b6-4062-b4a6-e5b93fbbdf7a", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "6306e909-ba53-4bb7-898f-f425b95a2848", "zone": + "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "620b5307-1861-4c88-8938-1e45afc9d3f6", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2022-11-17T16:45:12.324670+00:00", "modification_date": "2022-11-17T16:45:12.324670+00:00"}], + "categories": ["distribution"], "current_public_version": "16dda4a4-874a-4e6c-a39b-f007457038d8", + "creation_date": "2019-12-25T00:00:00+00:00", "modification_date": "2022-11-21T09:57:07.222778+00:00", + "valid_until": null}, {"id": "f49dc23e-82d1-48c3-b80e-6c697b1dda92", "name": + "Centos Stream 8", "label": "centos_stream_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/centos.png", + "description": "The CentOS Project is a community-driven free software effort + focused on delivering a robust open source ecosystem.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "f5daf351-659e-4f06-b7e7-86925f9c7011", "name": + "2023-03-28T07:17:56.324937+00:00", "local_images": [{"id": "5333864b-3235-4098-af75-f35f5239e35b", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "3e937622-375c-43ba-bff3-42a71d3077c6", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "033be0a0-e9ef-40ac-aefd-c8318c3d8ba6", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "4b75df8b-0d27-4437-b0a0-bf5dbcce1a65", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "d3328600-e772-4fd9-9135-1cade6626730", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8e922e6b-4291-421a-8bae-62b94506fe86", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "144fea20-72db-4be9-ae4a-54bde78ebcef", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "7f8365a3-68b3-43dd-b623-7bc903bc1c5b", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "147faa2b-ccef-412a-a359-9141f21f6a32", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "f4c9b209-6aef-4285-8eab-db9bf958a875", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-03-28T07:17:56.469669+00:00", + "modification_date": "2023-03-28T07:17:56.469669+00:00"}], "categories": ["distribution"], + "current_public_version": "f5daf351-659e-4f06-b7e7-86925f9c7011", "creation_date": + "2022-02-03T10:23:22.168515+00:00", "modification_date": "2023-03-28T15:00:55.387802+00:00", + "valid_until": null}, {"id": "cfb3fa01-6406-4be8-9e9d-29daee2582fa", "name": + "Centos Stream 9", "label": "centos_stream_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/centos.png", + "description": "The CentOS Project is a community-driven free software effort + focused on delivering a robust open source ecosystem.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "adcd38b6-0b86-4541-ac22-8746872f2f3f", "name": + "2023-03-27T15:41:43.491902+00:00", "local_images": [{"id": "6fc0bfd2-c4f5-4919-859b-ae020053fe65", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f33b7754-23be-4ad2-98ad-18af1b2da9ca", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "0204f372-964c-44bc-b9eb-214bf8ad1c08", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "faf2ef33-c477-4003-9de6-20e6210063a1", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "00d03911-c48d-4ae9-937c-aa16fd01d720", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "ea30b451-3c8c-4111-ae5f-c74a517da3fa", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "3dfd58df-f9ae-4c5c-87b8-76f14ccf9261", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "5e634970-32a9-4e6c-abab-9ed3df387f55", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "25d7c97d-36ec-456b-ad3c-a8739a17b50b", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "0f6dc654-fbd7-404b-83f8-9d415a6ab6b9", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-03-27T15:41:43.614858+00:00", + "modification_date": "2023-03-27T15:41:43.614858+00:00"}], "categories": ["distribution"], + "current_public_version": "adcd38b6-0b86-4541-ac22-8746872f2f3f", "creation_date": + "2022-02-03T10:35:17.004309+00:00", "modification_date": "2023-03-28T15:02:34.973875+00:00", + "valid_until": null}, {"id": "7bdc1afb-231f-486a-9b85-1b0478bc0e4a", "name": + "Debian Buster", "label": "debian_buster", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/debian.png", + "description": "Debian is a free operating system, developed by thousands of + volunteers from all over the world who collaborate via the Internet.", "organization": + {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources + Build System"}, "versions": [{"id": "8bd9d92c-2b86-475e-9d3d-4f9b69b7c795", + "name": "2022-11-22T14:21:22.175009+00:00", "local_images": [{"id": "d03f9dd6-6329-4aed-ad61-1973efd27cac", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "51d60da2-7ae9-45e7-81d1-9fb56a6adab7", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "641b3cdd-c70c-41cc-9ff2-6e803b928f34", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "1934aaa0-a0bf-4725-b5b3-1adc9954424b", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "5cca9d53-612a-4a59-be02-817d977dda64", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "116721d2-6af0-4d27-9505-2bbb26b63a92", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "1761dcf5-4396-4a5d-8b28-7d7cb6dc72f5", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2022-11-22T14:21:22.304730+00:00", "modification_date": "2022-11-22T14:21:22.304730+00:00"}], + "categories": ["distribution"], "current_public_version": "8bd9d92c-2b86-475e-9d3d-4f9b69b7c795", + "creation_date": "2019-07-16T13:55:36.377559+00:00", "modification_date": "2022-11-22T15:03:29.064893+00:00", + "valid_until": null}, {"id": "213b02cb-3d8d-4967-ba8d-e5767a57574e", "name": + "Debian Bullseye", "label": "debian_bullseye", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/debian.png", + "description": "Debian is a free operating system, developed by thousands of + volunteers from all over the world who collaborate via the Internet.", "organization": + {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources + Build System"}, "versions": [{"id": "66dac370-33e4-4c6b-8132-c63bf93d10d9", + "name": "2023-03-24T10:27:03.235790+00:00", "local_images": [{"id": "5979b981-b30b-4d05-80fa-a432a8a79a83", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "214fe4be-6b16-4d5d-9cdb-7698ee91659a", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO"]}, {"id": "09cfbb91-f7c2-498a-ba0b-b54e19cb9d0f", "zone": "fr-par-2", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", + "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", + "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "ebb10763-4f0d-40b0-86bb-266f2275b9a5", + "zone": "nl-ams-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "0024830b-143b-4186-8c99-3e5effd07f04", "zone": "pl-waw-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "7c972b6f-0165-45b0-9dfa-52ff6c39ac4d", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "ca4c6d52-bb47-4d4d-98b6-a201825b5b9a", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "fef3e360-8c03-4861-bde3-a4176a41a3e5", + "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "4d03625b-965c-4468-97bd-f7c52637e8ba", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "fd88fc57-4acc-4cc8-a1fc-3f352110001b", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "41ed9bc9-94ed-4c31-9610-cd701a7cb76c", + "zone": "pl-waw-1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "665ae928-07f3-4068-a7ed-a7a185ef35ed", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "b639fa8c-16f9-493f-9af0-33e83edd6f66", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "fc73b422-af26-43d7-a989-ca54ce46fe11", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-24T10:27:03.393581+00:00", + "modification_date": "2023-03-24T10:27:03.393581+00:00"}], "categories": ["distribution"], + "current_public_version": "66dac370-33e4-4c6b-8132-c63bf93d10d9", "creation_date": + "2021-07-21T09:09:36.581723+00:00", "modification_date": "2023-03-28T14:59:44.265262+00:00", + "valid_until": null}, {"id": "c1b530d8-0ca0-45c4-80db-ba06608287b2", "name": + "Docker", "label": "docker", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/docker.png", + "description": "Docker is an open platform for developers and sysadmins to build, + ship, and run distributed applications.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "80f14577-c821-44f2-aa51-fcd09ef74ccd", + "name": "2022-11-17T16:49:13.103479+00:00", "local_images": [{"id": "b9335185-d1bb-4904-adaf-da88c8e6c05b", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "b1895cdd-a79b-4f18-9644-e5ab2434be06", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "ef114000-7fe5-455c-afd1-714c15fdd3f3", "zone": + "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "b6c5990a-ee1d-45b6-a9bc-15edb6f6d354", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "9f945d00-71b9-436a-8a45-311babee406d", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "a0c05cf2-8805-412c-acb6-45d047773732", "zone": + "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "f50af9e3-8b75-4c63-b2e5-355a2404f6dd", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2022-11-17T16:49:13.211153+00:00", "modification_date": "2022-11-17T16:49:13.211153+00:00"}], + "categories": ["instantapp"], "current_public_version": "80f14577-c821-44f2-aa51-fcd09ef74ccd", + "creation_date": "2016-03-05T15:11:26.847640+00:00", "modification_date": "2022-11-21T09:58:41.216589+00:00", + "valid_until": null}, {"id": "186859f6-0152-45dd-9eb8-21fc5e8d774e", "name": + "Fedora 36", "label": "fedora_36", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", + "description": "Fedora is a powerful, flexible operating system that includes + the best and latest datacenter technologies. It puts you in control of all your + infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "5f758103-8e34-40cd-b28d-6e5893ff54e3", + "name": "2023-03-28T07:19:02.568289+00:00", "local_images": [{"id": "ed49624c-0d21-4e19-beca-eb940fa0928f", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "74490113-256a-4bdf-bcb1-581f9d88e97f", "zone": "par1", "arch": "arm64", "compatible_commercial_types": + ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", + "AMP2-C60"]}, {"id": "aa0e328b-fe85-4773-b8d9-f4a86db0860b", "zone": "pl-waw-2", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", + "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", + "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "5642623f-7b90-4568-8149-843a7c07c1e4", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "3f936ceb-4e63-498d-94e0-5231caaaef3f", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "0997826f-bb9c-4a7f-b442-0f95250c22b0", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f76711a4-8846-44d2-b381-a189dd095b36", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "2b72a96d-e146-49fe-b161-5e5b0b56f053", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "caf7b73d-f0d3-4d42-8db4-8ee9370de5b7", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8cee1f9b-c123-4028-b422-e3565c1176d4", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-28T07:19:02.692506+00:00", + "modification_date": "2023-03-28T07:19:02.692506+00:00"}], "categories": ["distribution"], + "current_public_version": "5f758103-8e34-40cd-b28d-6e5893ff54e3", "creation_date": + "2022-04-14T15:45:29.069701+00:00", "modification_date": "2023-03-28T15:10:42.492768+00:00", + "valid_until": null}, {"id": "2b0e5802-eb82-4fd5-ac8f-6877c46aa14b", "name": + "Fedora 37", "label": "fedora_37", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", + "description": "Fedora is a powerful, flexible operating system that includes + the best and latest datacenter technologies. It puts you in control of all your + infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "09c9a703-7526-4b50-8333-337f1f26190d", + "name": "2023-03-27T15:49:13.458836+00:00", "local_images": [{"id": "f0f9abba-c98f-4be8-b191-88f40b5d7b27", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "4942ff7b-a79d-4654-bf6a-db74ac0f2bc2", "zone": "par1", "arch": "arm64", "compatible_commercial_types": + ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", + "AMP2-C60"]}, {"id": "fa30bf3f-7dca-412a-9d90-6ab1764c1b73", "zone": "pl-waw-2", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", + "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", + "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "3977ad18-9cb6-4a89-9e69-4c6caac95227", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "1556e65e-642d-4bbb-a13e-ad2e677e3881", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "addb1b2d-95ff-4cf7-9410-9cf94a74df4d", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "e1e0a7dc-bd18-465c-886d-0ca793ac7875", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "b8a2c6bc-06d9-41bd-948a-1cf313ce6fba", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "0b1e1955-b880-476f-961c-36d3967585d5", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "886332b4-dff8-43d8-a432-a9cec8796343", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-27T15:49:13.669277+00:00", + "modification_date": "2023-03-27T15:49:13.669277+00:00"}], "categories": ["distribution"], + "current_public_version": "09c9a703-7526-4b50-8333-337f1f26190d", "creation_date": + "2022-11-14T10:48:04.097063+00:00", "modification_date": "2023-03-28T15:12:10.818444+00:00", + "valid_until": null}, {"id": "233074b9-e2ba-4e78-818e-dd4930ce6bee", "name": + "GitLab", "label": "gitlab", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/gitlab.png", + "description": "GitLab is a web-based Git repository manager with wiki and issue + tracking features.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "5aaa1f5b-6b83-431a-b12c-57db770bfa78", + "name": "2022-11-18T10:02:54.423998+00:00", "local_images": [{"id": "98244fe8-83ce-4076-bddc-a613eb646b91", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "1fa73760-65fd-4350-85b4-1ffb203bcbfe", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "b0d4d06c-f535-493f-b57c-e6379c4f18bc", "zone": + "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "d0f5a66a-519a-401c-b96f-8f9b10e49552", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "1ad486c3-d9c4-458e-90fe-4c8ed31adc7e", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "0b54e819-1051-4a01-8026-053c2523c45d", "zone": + "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "31fd1cfc-27bd-4baf-86e9-df0beb72efb4", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2022-11-18T10:02:54.554344+00:00", "modification_date": "2022-11-18T10:02:54.554344+00:00"}], + "categories": ["instantapp"], "current_public_version": "5aaa1f5b-6b83-431a-b12c-57db770bfa78", + "creation_date": "2016-03-07T21:06:22.770864+00:00", "modification_date": "2022-11-21T09:59:01.854428+00:00", + "valid_until": null}, {"id": "7d4a7cb1-1fd5-4a64-920b-c79f47367254", "name": + "NextCloud", "label": "nextcloud", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/nextcloud.png", + "description": "Nextcloud is an open source, self-hosted file share and communication + platform.", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": + "OCS"}, "versions": [{"id": "36e53418-c1c9-49db-bc59-f6c87e2cb96f", "name": + "2022-11-17T16:53:39.941145+00:00", "local_images": [{"id": "c604583d-dd01-4edc-b3f5-7eb5d4596e61", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "671ccef0-003d-44fc-8da3-f4a8979482e3", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "69f87cf6-ed99-433c-b939-ce5883993150", "zone": + "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "54414b23-6028-4a9b-ba5f-98cca3e335e5", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "edae369a-f1ac-4054-8996-b95aa1b20846", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "e19a0ff7-bf8a-48ac-a50f-6de58a659035", "zone": + "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "1057097d-0a23-4480-9a34-566342fb3265", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2022-11-17T16:53:40.112145+00:00", "modification_date": "2022-11-17T16:53:40.112145+00:00"}], + "categories": ["instantapp"], "current_public_version": "36e53418-c1c9-49db-bc59-f6c87e2cb96f", + "creation_date": "2019-04-16T12:22:56.930842+00:00", "modification_date": "2022-11-21T09:58:50.824677+00:00", + "valid_until": null}, {"id": "b6f4edc8-21e6-4aa2-8f52-1030cf6d4dd8", "name": + "OpenVPN", "label": "openvpn", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/openvpn.png", + "description": "Surf the web in a secure and anonymous way with OpenVPN InstantApp.", + "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "auth-team+ocs-organization@scaleway.com"}, + "versions": [{"id": "c07d4bc9-b947-4945-a739-78b7cda73bfa", "name": "2022-11-17T16:50:41.032881+00:00", + "local_images": [{"id": "c82757c7-a639-49a1-bd3a-5841a0da5931", "zone": "par1", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", + "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "7bb740d3-da25-4176-baec-41afe9f9a543", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "ed92b3b8-9656-4937-9169-8484d153f9e3", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "5ba4b7be-5524-4a85-9008-b50360778c9b", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "75b23340-1d7f-4241-b28d-3773989ad833", "zone": + "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "35da23b9-440b-44e3-bad2-143b60502a7d", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "fd6124df-8f3a-40a0-92f0-9dc393f73186", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}], "creation_date": "2022-11-17T16:50:41.148343+00:00", + "modification_date": "2022-11-17T16:50:41.148343+00:00"}], "categories": ["instantapp"], + "current_public_version": "c07d4bc9-b947-4945-a739-78b7cda73bfa", "creation_date": + "2016-03-07T21:04:57.667667+00:00", "modification_date": "2022-11-21T09:58:29.002209+00:00", + "valid_until": null}, {"id": "1576bf6b-f640-47f2-9117-968419d0546e", "name": + "Rocky Linux 8", "label": "rockylinux_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/rockylinux.png", + "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, + production-ready Linux.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "1df404de-3e28-4021-8c1c-8e167f1b390a", + "name": "2023-03-27T13:51:48.477663+00:00", "local_images": [{"id": "6b2282dc-51b1-4952-938e-8290e6365209", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "59bb9cf7-c0a2-4994-bc25-217dec852718", "zone": "par1", "arch": "arm64", "compatible_commercial_types": + ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", + "AMP2-C60"]}, {"id": "82d729dd-2a56-4f9a-b235-0344ed96350a", "zone": "pl-waw-2", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", + "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", + "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "58f3e5f0-0f66-4ee7-8e12-5c7f91945a3b", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "6fe7bac2-948e-43ef-9daa-6e3dab7e9d49", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "ab1a8029-524e-4d8c-a458-ddaf5a7685de", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "7c34c483-af23-47d6-9688-4fa5c9bd59d6", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "f93585c2-91c5-4371-b11d-22ded124b331", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "cc408539-d3c8-4a96-bb79-37987a52142b", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "119d3bc2-76f3-4664-bfeb-4c3b1f849f4d", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-27T13:51:48.645782+00:00", + "modification_date": "2023-03-27T13:51:48.645782+00:00"}], "categories": ["distribution"], + "current_public_version": "1df404de-3e28-4021-8c1c-8e167f1b390a", "creation_date": + "2021-06-25T10:16:16.254240+00:00", "modification_date": "2023-03-28T15:06:21.067890+00:00", + "valid_until": null}, {"id": "589c35a9-20ce-4ed9-92d7-16dc061be52b", "name": + "Rocky Linux 9", "label": "rockylinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/rockylinux.png", + "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, + production-ready Linux.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "af5d0eb1-1246-46b9-9769-e0efcc95ab1b", + "name": "2023-03-27T14:28:13.225003+00:00", "local_images": [{"id": "61392b4d-22bb-40da-acdd-b08d35213297", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "d0281001-81a9-4922-ad94-bac49e2dfd46", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "146f823e-7024-4ad1-a89f-e4a7da951d57", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "65deaabd-215d-4790-a324-7d2874f0af9d", "zone": "par1", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "3bdd781e-2dae-4880-a4ee-9135057424cb", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "e0aaf648-5767-4533-92b0-7bd87eaa5dbb", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f0f50b4a-16b7-48db-996d-a9c7a0cbff88", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "876933bd-7e2d-4f0f-8bf1-837a1e31ac65", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "b18e2393-d19b-4101-ba5b-226252d2b628", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "7c2d400e-b9b3-44c2-9391-1071de7db77f", "zone": "ams1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO"]}], "creation_date": "2023-03-27T14:28:13.417555+00:00", "modification_date": + "2023-03-27T14:28:13.417555+00:00"}], "categories": ["distribution"], "current_public_version": + "af5d0eb1-1246-46b9-9769-e0efcc95ab1b", "creation_date": "2022-08-24T09:26:33.639016+00:00", + "modification_date": "2023-03-28T15:09:22.188518+00:00", "valid_until": null}, + {"id": "3f1b9623-71ba-4fe3-b994-27fcdaa850ba", "name": "Ubuntu 20.04 Focal Fossa", + "label": "ubuntu_focal", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu + Server helps you make the most of your infrastructure.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "e85973e4-b50b-42cc-b5ce-16ab440c9886", "name": + "2023-03-24T09:19:43.870485+00:00", "local_images": [{"id": "d23d89d5-b0f8-4393-8554-5e9775c5d1b7", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO"]}, {"id": "2f5cdf98-817d-4fcc-9ecc-8b0fc8aed493", "zone": "fr-par-2", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", + "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", + "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d90ce4cc-f7eb-406d-9bf6-87ca8265f55c", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "8ddfeedd-2fb0-4cc3-b6d4-47cdd8f4b23f", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "0951cd32-05d9-48a5-b26f-26e52b2cbec3", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "7ae2282c-0a01-47c1-8338-c321c8326edb", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "c747046d-7c51-4a5a-b9bb-ef8336d974c4", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "448f073e-e8f0-4e2a-8e84-3bba5bd9a71e", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d16ad76d-5bbb-425b-b0c2-b00f43802517", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-24T09:19:44.058257+00:00", + "modification_date": "2023-03-24T09:19:44.058257+00:00"}], "categories": ["distribution"], + "current_public_version": "e85973e4-b50b-42cc-b5ce-16ab440c9886", "creation_date": + "2020-02-17T15:50:48.980694+00:00", "modification_date": "2023-03-28T14:57:19.746983+00:00", + "valid_until": null}, {"id": "1123148c-7660-4cb2-9fd3-7b5b4896f72f", "name": + "Ubuntu 22.04 Jammy Jellyfish", "label": "ubuntu_jammy", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu + Server helps you make the most of your infrastructure.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "9eeca005-d3cf-4845-b9ae-fa9c926038b8", "name": + "2023-03-23T16:23:08.656307+00:00", "local_images": [{"id": "06bf3f16-930e-48ba-b5c2-eacd1fad129a", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "11cad2e3-47ab-4dac-a62c-033d5a6f2b61", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "350a06b2-ecd0-48b9-ba9e-495a51345a68", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", + "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", + "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "fba44936-9f63-44b3-a723-9f17eff837e1", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "94299452-12c4-4d79-9c79-ced52967d75f", "zone": "par1", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "9abe9fff-dedf-4c8a-b879-0472faacd569", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "660b8a19-6061-4afb-8834-17b86f2179ae", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "c7463c52-b051-4359-9edf-132484baf46a", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "908ed483-edab-48ac-9309-2fdd0b26776e", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "6dbf3c88-3138-4ce6-841a-63ee5b059ce0", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], + "creation_date": "2023-03-23T16:23:08.853769+00:00", "modification_date": "2023-03-23T16:23:08.853769+00:00"}], + "categories": ["distribution"], "current_public_version": "9eeca005-d3cf-4845-b9ae-fa9c926038b8", + "creation_date": "2022-04-07T13:35:54.966630+00:00", "modification_date": "2023-03-28T14:55:21.771024+00:00", + "valid_until": null}, {"id": "b381b2bf-804a-4b12-91f6-9f4ff273462f", "name": + "Ubuntu Bionic", "label": "ubuntu_bionic", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu + Server helps you make the most of your infrastructure.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "ff84a566-a05f-4306-9e42-9f2304f9378f", "name": + "2023-03-28T12:43:02.328403+00:00", "local_images": [{"id": "d3b6ff11-34b3-4156-8850-d954fff9df13", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "2b2b1cf4-4af1-4a27-9753-e5a0e971d321", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "a9d19ff4-ae29-417e-b1d4-6deb185922db", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "48585eba-5185-472a-97f4-5df64355ffe7", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "96458957-9645-4d2a-8c2d-2efb1d20032c", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "a898d995-6011-4ce4-b802-8e8dfc4c871f", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "fc07e364-653b-4223-8e16-9f88e59e528e", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-03-28T12:43:02.430071+00:00", + "modification_date": "2023-03-28T12:43:02.430071+00:00"}], "categories": ["distribution"], + "current_public_version": "ff84a566-a05f-4306-9e42-9f2304f9378f", "creation_date": + "2018-04-27T14:07:25.221998+00:00", "modification_date": "2023-03-28T14:58:39.344565+00:00", + "valid_until": null}, {"id": "4dcc771c-820f-405c-b663-4564bdc2ed56", "name": + "Ubuntu Focal GPU OS 11", "label": "ubuntu_focal_gpu_os_11", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu 20.04 Focal Fossa for Nvidia GPU and Machine Learning", + "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances + User Resources Build System"}, "versions": [{"id": "5cff6a19-a5e0-46bb-bcbc-4942c836ca46", + "name": "2022-09-15T19:11:26.000595+00:00", "local_images": [{"id": "d22f119d-400b-4792-9d2c-985be3fe0a2b", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", + "GPU-3070-S"]}, {"id": "04ac2de1-2c99-4cf8-a533-ea92e7809d32", "zone": "fr-par-2", + "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", "GPU-3070-S"]}], + "creation_date": "2022-09-15T19:11:26.061606+00:00", "modification_date": "2022-09-15T19:11:26.061606+00:00"}], + "categories": ["Machine Learning"], "current_public_version": "5cff6a19-a5e0-46bb-bcbc-4942c836ca46", + "creation_date": "2021-11-30T12:37:45.971134+00:00", "modification_date": "2022-09-19T14:10:37.648361+00:00", + "valid_until": null}, {"id": "a6c68db3-5613-4b08-acaa-2c92d8baf26c", "name": + "Ubuntu Jammy GPU OS 12", "label": "ubuntu_jammy_gpu_os_12", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu 22.04 Jammy Jellyfish for Nvidia GPU and Machine Learning + (GPU passthrough)", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "acac98cc-db99-47f7-882c-693e895d8b21", + "name": "2023-02-15T09:47:38.749339+00:00", "local_images": [{"id": "7dbfc0d2-0699-4e38-8664-45971a24af33", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", + "GPU-3070-S"]}, {"id": "819cb4c0-b0d3-475e-a18a-014f1998853c", "zone": "fr-par-2", + "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", "GPU-3070-S"]}], + "creation_date": "2023-02-15T09:47:38.843433+00:00", "modification_date": "2023-02-15T09:47:38.843433+00:00"}], + "categories": ["Machine Learning"], "current_public_version": "acac98cc-db99-47f7-882c-693e895d8b21", + "creation_date": "2023-01-20T14:30:57.496021+00:00", "modification_date": "2023-02-15T10:00:58.861108+00:00", + "valid_until": null}, {"id": "215a50f9-0ba8-4e9c-a4e7-10caf50e3586", "name": + "WordPress", "label": "wordpress", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/wordpress.png", + "description": "WordPress is the most popular web software you can use to create + a beautiful website or blog.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "49917541-e725-478f-9ed3-866bb71215fc", + "name": "2022-11-17T16:54:23.010448+00:00", "local_images": [{"id": "8640db59-ce11-466f-9124-cfe85e57c03c", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "c28c8c9d-1b46-4712-8aba-3f2737dda564", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "5affe637-67dd-475e-aaa3-eb4a11530270", "zone": + "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "e28a34cf-3118-47bf-9c5c-40419ce519d5", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "60e8d7b5-1d50-4934-a1fb-708025031d48", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "6d79accc-3d62-4ae1-98c7-20f6f1164438", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "6c17a18f-ea38-488f-bd91-76ca33e4e11f", "zone": + "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": + "2022-11-17T16:54:23.150832+00:00", "modification_date": "2022-11-17T16:54:23.150832+00:00"}], + "categories": ["instantapp"], "current_public_version": "49917541-e725-478f-9ed3-866bb71215fc", + "creation_date": "2016-03-07T21:03:59.783534+00:00", "modification_date": "2022-11-21T09:58:15.549240+00:00", + "valid_until": null}]}' + headers: + Content-Length: + - "98384" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:36:40 GMT + Link: + - ; rel="last" + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 04b7c020-e2b9-4ffe-91f2-bba6959e7709 + X-Total-Count: + - "22" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/834a6c39-41a9-4b92-a3d4-44dfafc47d6b + method: GET + response: + body: '{"image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", "name": "Ubuntu + 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", + "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "614" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:36:40 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e4f10647-b352-4d4b-a82b-bef288b70b43 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + method: GET + response: + body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, + "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": + 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "baremetal": false, "monthly_price": 36.1496, "hourly_price": + 0.04952, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": + 4294967296, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": + 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 300000000}]}}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 12884901888, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": + 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 500000000}]}}, "ENT1-2XL": {"alt_names": [], "arch": "x86_64", "ncpus": 96, + "ram": 412316860416, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": + false, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": + ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + false, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": + 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 20000000000}]}}, "ENT1-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}}, "ENT1-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 3200000000}]}}, "ENT1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}}, "ENT1-XL": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}}, "ENT1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "ENT1-XXS": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "GP1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": + 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": + 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5000000000}]}}, "GP1-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": + 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1500000000}]}}, "GP1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "GP1-VIZ": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 72.0, "hourly_price": 0.1, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "GP1-XL": + {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": + 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 10000000000}]}}, "GP1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "PLAY2-MICRO": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "PLAY2-NANO": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "PLAY2-PICO": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}}, "PRO2-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, + "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 6000000000}]}}, "PRO2-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 3000000000}]}}, "PRO2-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 1500000000}]}}, "PRO2-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, + "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 700000000}]}}, "PRO2-XXS": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, + "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 350000000}]}}, "RENDER-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": + 1, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": + ["local", "rescue"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": + 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1000000000}]}}, "STARDUST1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}}, "START1-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, + "baremetal": false, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 400000000}]}}, "START1-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": + 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 300000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 300000000}]}}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "baremetal": false, "monthly_price": 7.738, "hourly_price": + 0.0106, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "START1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, + "volumes_constraint": {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": + false, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 100000000}]}}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": + 6, "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "baremetal": false, "monthly_price": 18.0164, "hourly_price": + 0.02468, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "VC1M": {"alt_names": + ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": + false, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": + 2, "ram": 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 50000000000, + "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "baremetal": false, "monthly_price": 6.2926, "hourly_price": + 0.00862, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "X64-120GB": + {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": + 0, "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, + "baremetal": false, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1000000000}]}}, "X64-15GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "volumes_constraint": {"min_size": + 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": + 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 250000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 250000000}]}}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 32212254720, "gpu": 0, "volumes_constraint": {"min_size": 300000000000, "max_size": + 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "baremetal": false, "monthly_price": 86.9138, "hourly_price": + 0.11906, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 500000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "X64-60GB": + {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": + 0, "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, + "baremetal": false, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1000000000}]}}}}' + headers: + Content-Length: + - "28044" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:36:40 GMT + Link: + - ; rel="last" + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e295d8f-7706-4b6b-a784-2ed3bb3f2754 + X-Total-Count: + - "38" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + body: '{"ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", + "reverse": null, "server": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", "tags": + []}}' + headers: + Content-Length: + - "252" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:36:41 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/10aa800f-40e1-43a1-9bba-d826b33776a9 + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bed2788e-b6d0-4999-b641-547d9cc8e98d + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"name":"cli-srv-flamboyant-mayer","commercial_type":"DEV1-S","image":"834a6c39-41a9-4b92-a3d4-44dfafc47d6b","public_ip":"10aa800f-40e1-43a1-9bba-d826b33776a9","boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + body: '{"server": {"id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", "name": "cli-srv-flamboyant-mayer", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", + "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", + "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "c4a503a4-b026-415c-a757-9cda4b7dfb2f", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, + "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", "name": "cli-srv-flamboyant-mayer"}, + "size": 20000000000, "state": "available", "creation_date": "2023-04-13T07:36:41.718299+00:00", + "modification_date": "2023-04-13T07:36:41.718299+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", + "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-04-13T07:36:41.718299+00:00", + "modification_date": "2023-04-13T07:36:41.718299+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", + "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": + ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' + headers: + Content-Length: + - "2637" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:36:42 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2248b9b4-dd07-44bc-bde3-3be1c6ec9483 + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e3e05a9c-cbb3-434c-815f-50b8751aaed2 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2248b9b4-dd07-44bc-bde3-3be1c6ec9483/private_nics + method: POST + response: + body: '{"private_nic": {"id": "461b407b-b628-4750-97bc-5db35b781355", "private_network_id": + "f99b7ebb-a524-4394-81d7-b0ff710054c4", "server_id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", + "mac_address": "02:00:00:12:b4:60", "state": "available", "creation_date": "2023-04-13T07:36:42.183980+00:00", + "modification_date": "2023-04-13T07:36:42.183980+00:00", "zone": "fr-par-1", + "tags": []}}' + headers: + Content-Length: + - "378" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:36:42 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa150c1f-ee35-4f1a-8be6-f2fb408a2360 + status: 201 Created + code: 201 + duration: "" +- request: + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"cli-test","description":"cli-test","ip_id":null,"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs + method: POST + response: + body: '{"id":"a3840e61-695d-46a1-b9a7-131640743150", "name":"cli-test", "description":"cli-test", + "status":"to_create", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"4eb91793-c51e-4e95-bd60-55b05021c286", + "ip_address":"51.159.204.71", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"a3840e61-695d-46a1-b9a7-131640743150", + "reverse":"51-159-204-71.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":[], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-04-13T07:36:42.843796271Z", + "updated_at":"2023-04-13T07:36:42.843796271Z", "private_network_count":0, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}' + headers: + Content-Length: + - "893" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:36:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 820b3e12-f744-46a5-9611-74ccfe62d5be + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a3840e61-695d-46a1-b9a7-131640743150 + method: GET + response: + body: '{"id":"a3840e61-695d-46a1-b9a7-131640743150", "name":"cli-test", "description":"cli-test", + "status":"creating", "instances":[{"id":"394ca748-a040-4b7e-ac74-88f4d15a2262", + "status":"unknown", "ip_address":"10.64.92.51", "created_at":"2023-04-13T07:30:42.773083Z", + "updated_at":"2023-04-13T07:36:43.131666Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"4eb91793-c51e-4e95-bd60-55b05021c286", "ip_address":"51.159.204.71", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"a3840e61-695d-46a1-b9a7-131640743150", "reverse":"51-159-204-71.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-04-13T07:36:42.843796Z", "updated_at":"2023-04-13T07:36:43.150536Z", + "private_network_count":0, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + headers: + Content-Length: + - "1105" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:36:43 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 280b163f-486f-4aec-8f54-f1881f6c86da + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a3840e61-695d-46a1-b9a7-131640743150 + method: GET + response: + body: '{"id":"a3840e61-695d-46a1-b9a7-131640743150", "name":"cli-test", "description":"cli-test", + "status":"ready", "instances":[{"id":"394ca748-a040-4b7e-ac74-88f4d15a2262", + "status":"ready", "ip_address":"10.64.92.51", "created_at":"2023-04-13T07:30:42.773083Z", + "updated_at":"2023-04-13T07:36:43.726829Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"4eb91793-c51e-4e95-bd60-55b05021c286", "ip_address":"51.159.204.71", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"a3840e61-695d-46a1-b9a7-131640743150", "reverse":"51-159-204-71.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-04-13T07:36:42.843796Z", "updated_at":"2023-04-13T07:36:44.944587Z", + "private_network_count":0, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + headers: + Content-Length: + - "1100" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:36:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7e728e43-4320-4cde-9c4b-977c5e435949 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a3840e61-695d-46a1-b9a7-131640743150/private-networks/f99b7ebb-a524-4394-81d7-b0ff710054c4/attach + method: POST + response: + body: '{"lb":{"id":"a3840e61-695d-46a1-b9a7-131640743150", "name":"cli-test", + "description":"cli-test", "status":"ready", "instances":[{"id":"394ca748-a040-4b7e-ac74-88f4d15a2262", + "status":"ready", "ip_address":"10.64.92.51", "created_at":"2023-04-13T07:30:42.773083Z", + "updated_at":"2023-04-13T07:36:43.726829Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"4eb91793-c51e-4e95-bd60-55b05021c286", "ip_address":"51.159.204.71", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"a3840e61-695d-46a1-b9a7-131640743150", "reverse":"51-159-204-71.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-04-13T07:36:42.843796Z", "updated_at":"2023-04-13T07:36:44.944587Z", + "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}, + "private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", "status":"pending", + "created_at":"2023-04-13T07:36:45.535594626Z", "updated_at":"2023-04-13T07:36:45.535594626Z", + "dhcp_config":{}}' + headers: + Content-Length: + - "1300" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:36:45 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 788c1b63-f6c8-4885-9215-6fb89ed4d9a0 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"cli-test","engine":"PostgreSQL-12","user_name":"foobar","password":"{4xdl*#QOoP+\u00263XRkGA)]","node_type":"db-dev-s","is_ha_cluster":false,"disable_backup":false,"tags":null,"init_settings":null,"volume_type":"lssd","volume_size":0,"init_endpoints":[{"private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4","service_ip":"192.168.0.1/24"}}],"backup_same_region":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances + method: POST + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:36:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 05dd60b8-71c0-4d1c-a445-37a6d572375b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:36:46 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - edd105fa-f9b5-43bc-8651-67cbdb2f6b37 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:37:01 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8ae47cc7-1d1f-4b0f-85ef-d5b34502c5df + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:37:16 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 254f9214-ff84-44a2-aa50-4f4a91de8f30 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:37:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0e45be9a-c56d-4635-877a-0c12278c6474 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:37:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9c86202d-5edb-4f66-bb70-b7b102c8b636 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:38:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 12151e7d-e462-4b0c-bc10-df68c7d0084e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:38:17 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 133c33b9-190c-4f6f-98ba-ff2c299ec6e2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:38:32 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 14cb16ed-b4a0-4233-aee1-64c766a62a06 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:38:47 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2b5691cd-61c2-4f3b-b3f0-a511a446e080 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:39:02 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ef764197-f477-4e66-bbea-207ae4c67f0b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:39:17 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7c15c363-b442-4a08-b6e6-2cdd40472b41 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:39:33 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 00afea5a-46e8-4328-81ad-536a0ad81500 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:39:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c54120a8-328b-44c5-9d05-f76562edd25b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:03 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a233992f-43c4-4b11-829d-c4aa6fa37c6d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:18 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 82b0cbce-8bc0-469d-8dba-b07fe7ee4f00 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "912" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:33 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a14b6e71-3d25-44e8-b6dd-19eb62703631 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "engine":"PostgreSQL-12", + "upgradable_version":[], "endpoint":{"ip":"51.159.24.161", "port":24701, "name":null, + "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}, {"ip":"51.159.24.161", "port":24701, + "name":null, "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "1406" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c0710023-f45c-4541-803a-3158affa6189 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/f99b7ebb-a524-4394-81d7-b0ff710054c4 + method: GET + response: + body: '{"id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", "name":"cli-pn-practical-austin", + "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-04-13T07:36:40.254021Z", + "updated_at":"2023-04-13T07:36:40.254021Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "subnets":["172.16.184.0/22", "fd46:78ab:30b8:e6b::/64"], "zone":"fr-par-1"}' + headers: + Content-Length: + - "366" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:48 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa39fcd6-6ad4-47ad-8dff-7281e5562a3d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&page=1&private_network=f99b7ebb-a524-4394-81d7-b0ff710054c4 + method: GET + response: + body: '{"servers": [{"id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", "name": "cli-srv-flamboyant-mayer", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", + "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", + "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "c4a503a4-b026-415c-a757-9cda4b7dfb2f", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, + "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", "name": "cli-srv-flamboyant-mayer"}, + "size": 20000000000, "state": "available", "creation_date": "2023-04-13T07:36:41.718299+00:00", + "modification_date": "2023-04-13T07:36:41.718299+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", + "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-04-13T07:36:41.718299+00:00", + "modification_date": "2023-04-13T07:36:41.718299+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", + "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "461b407b-b628-4750-97bc-5db35b781355", + "private_network_id": "f99b7ebb-a524-4394-81d7-b0ff710054c4", "server_id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", + "mac_address": "02:00:00:12:b4:60", "state": "available", "creation_date": "2023-04-13T07:36:42.183980+00:00", + "modification_date": "2023-04-13T07:36:43.473804+00:00", "zone": "fr-par-1", + "tags": []}], "zone": "fr-par-1"}]}' + headers: + Content-Length: + - "3001" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:48 GMT + Link: + - ; + rel="last" + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a75ea442-f185-40bc-8ce9-0af9ad46ec54 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&page=1&private_network_id=f99b7ebb-a524-4394-81d7-b0ff710054c4 + method: GET + response: + body: '{"server_private_networks":[], "total_count":0}' + headers: + Content-Length: + - "47" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2b460028-8f28-48f0-8c2a-30c897c6d825 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?order_by=created_at_asc + method: GET + response: + body: '{"lbs":[{"id":"a3840e61-695d-46a1-b9a7-131640743150", "name":"cli-test", + "description":"cli-test", "status":"ready", "instances":[{"id":"394ca748-a040-4b7e-ac74-88f4d15a2262", + "status":"ready", "ip_address":"10.64.92.51", "created_at":"2023-04-13T07:30:42.773083Z", + "updated_at":"2023-04-13T07:36:43.726829Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"4eb91793-c51e-4e95-bd60-55b05021c286", "ip_address":"51.159.204.71", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"a3840e61-695d-46a1-b9a7-131640743150", "reverse":"51-159-204-71.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-04-13T07:36:42.843796Z", "updated_at":"2023-04-13T07:36:44.944587Z", + "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}], + "total_count":1}' + headers: + Content-Length: + - "1127" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 98ca7658-7328-4324-b2aa-1e81ffa09406 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a3840e61-695d-46a1-b9a7-131640743150/private-networks?order_by=created_at_asc&page=1 + method: GET + response: + body: '{"private_network":[{"lb":{"id":"a3840e61-695d-46a1-b9a7-131640743150", + "name":"cli-test", "description":"cli-test", "status":"ready", "instances":[], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"4eb91793-c51e-4e95-bd60-55b05021c286", "ip_address":"51.159.204.71", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"a3840e61-695d-46a1-b9a7-131640743150", "reverse":"51-159-204-71.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-04-13T07:36:42.843796Z", "updated_at":"2023-04-13T07:36:44.944587Z", + "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}, + "private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", "status":"ready", + "created_at":"2023-04-13T07:36:45.535595Z", "updated_at":"2023-04-13T07:36:53.148692Z", + "dhcp_config":{}}], "total_count":1}' + headers: + Content-Length: + - "1114" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 70bb2139-966e-46c2-b88a-6328f763576d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances?order_by=created_at_asc&page=1 + method: GET + response: + body: '{"instances":[{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "status":"ready", "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":{"ip":"51.159.24.161", + "port":24701, "name":null, "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}, {"ip":"51.159.24.161", "port":24701, + "name":null, "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}], + "total_count":1}' + headers: + Content-Length: + - "1439" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bc057e50-7810-411c-9936-a9556023b0fb + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters?order_by=created_at_asc&page=1 + method: GET + response: + body: '{"clusters":[], "total_count":0}' + headers: + Content-Length: + - "32" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 018228bc-376a-48de-a1d9-398aa6599b66 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + body: '{"gateways":[], "total_count":0}' + headers: + Content-Length: + - "32" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 09d330dc-d7c8-4903-8923-e818898843bc + status: 200 OK + code: 200 + duration: "" +- request: + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a3840e61-695d-46a1-b9a7-131640743150/private-networks/f99b7ebb-a524-4394-81d7-b0ff710054c4/detach + method: POST + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 78b9fd87-e593-4736-991f-7648f2b94d61 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a3840e61-695d-46a1-b9a7-131640743150?release_ip=false + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:49 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 15ef1fd5-c930-4e55-854a-d9dc97476792 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a3840e61-695d-46a1-b9a7-131640743150 + method: GET + response: + body: '{"id":"a3840e61-695d-46a1-b9a7-131640743150", "name":"cli-test", "description":"cli-test", + "status":"to_delete", "instances":[{"id":"394ca748-a040-4b7e-ac74-88f4d15a2262", + "status":"ready", "ip_address":"10.64.92.51", "created_at":"2023-04-13T07:30:42.773083Z", + "updated_at":"2023-04-13T07:36:43.726829Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"4eb91793-c51e-4e95-bd60-55b05021c286", "ip_address":"51.159.204.71", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"a3840e61-695d-46a1-b9a7-131640743150", "reverse":"51-159-204-71.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-04-13T07:36:42.843796Z", "updated_at":"2023-04-13T07:40:49.804504Z", + "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + headers: + Content-Length: + - "1104" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8d02d0cc-027d-46f8-921d-56d6d1343049 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2248b9b4-dd07-44bc-bde3-3be1c6ec9483 + method: GET + response: + body: '{"server": {"id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", "name": "cli-srv-flamboyant-mayer", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", + "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", + "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "c4a503a4-b026-415c-a757-9cda4b7dfb2f", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, + "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", "name": "cli-srv-flamboyant-mayer"}, + "size": 20000000000, "state": "available", "creation_date": "2023-04-13T07:36:41.718299+00:00", + "modification_date": "2023-04-13T07:36:41.718299+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", + "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-04-13T07:36:41.718299+00:00", + "modification_date": "2023-04-13T07:36:41.718299+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", + "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "461b407b-b628-4750-97bc-5db35b781355", + "private_network_id": "f99b7ebb-a524-4394-81d7-b0ff710054c4", "server_id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", + "mac_address": "02:00:00:12:b4:60", "state": "available", "creation_date": "2023-04-13T07:36:42.183980+00:00", + "modification_date": "2023-04-13T07:36:43.473804+00:00", "zone": "fr-par-1", + "tags": []}], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "2998" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7552db86-d627-4a92-9974-ff9444285cc5 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2248b9b4-dd07-44bc-bde3-3be1c6ec9483 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Date: + - Thu, 13 Apr 2023 07:40:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 675bf538-dc29-4df5-83f3-1592c347cd63 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c4a503a4-b026-415c-a757-9cda4b7dfb2f + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Date: + - Thu, 13 Apr 2023 07:40:50 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 18ae0d70-de14-489b-bdfc-772f62d487ec + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/09cd306e-1cc3-4652-8e47-cf00dcdd63ad + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec9da88f-0135-4350-aabc-12f5cc9d5785 + status: 204 No Content + code: 204 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"configuring", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":{"ip":"51.159.24.161", + "port":24701, "name":null, "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}, {"ip":"51.159.24.161", "port":24701, + "name":null, "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "1412" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:40:51 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d3d7cc36-587f-4633-a0a7-32204fd6bb4b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: GET + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "engine":"PostgreSQL-12", + "upgradable_version":[], "endpoint":{"ip":"51.159.24.161", "port":24701, "name":null, + "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"51.159.24.161", + "port":24701, "name":null, "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "1182" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:41:06 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 480b9710-4bc3-421d-a9f9-889bec3334a5 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + method: DELETE + response: + body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"deleting", "engine":"PostgreSQL-12", + "upgradable_version":[], "endpoint":{"ip":"51.159.24.161", "port":24701, "name":null, + "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"51.159.24.161", + "port":24701, "name":null, "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + headers: + Content-Length: + - "1185" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:41:06 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dff4798f-cdbd-4bdf-9006-8a50c248e4ee + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/f99b7ebb-a524-4394-81d7-b0ff710054c4 + method: DELETE + response: + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:41:06 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2cf289e5-5039-4ee2-86fa-68ac220f73a9 + status: 204 No Content + code: 204 + duration: "" diff --git a/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.golden b/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.golden new file mode 100644 index 0000000000..4669d92f10 --- /dev/null +++ b/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.golden @@ -0,0 +1,74 @@ +🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 +🟩🟩🟩 STDOUT️ 🟩🟩🟩️ +ID f99b7ebb-a524-4394-81d7-b0ff710054c4 +Name cli-pn-practical-austin +OrganizationID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 +ProjectID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 +Zone fr-par-1 +CreatedAt few seconds ago +UpdatedAt few seconds ago +Subnets.0 172.16.184.0/22 +Subnets.1 fd46:78ab:30b8:e6b::/64 + +InstanceServers: +ID NAME STATE NIC ID MAC ADDRESS +2248b9b4-dd07-44bc-bde3-3be1c6ec9483 cli-srv-flamboyant-mayer archived 461b407b-b628-4750-97bc-5db35b781355 02:00:00:12:b4:60 + +BaremetalServers: +ID NAME STATE BAREMETAL NETWORK ID + +LBs: +ID NAME STATE +a3840e61-695d-46a1-b9a7-131640743150 cli-test ready + +RdbInstances: +ID NAME STATE ENDPOINT ID +7c1719cb-b4f1-4953-ba1a-a4439ba842f5 cli-test ready 09cd306e-1cc3-4652-8e47-cf00dcdd63ad + +RedisClusters: +ID NAME STATE ENDPOINT ID + +Gateways: +ID NAME STATE GATEWAY NETWORK ID +🟩🟩🟩 JSON STDOUT 🟩🟩🟩 +{ + "id": "f99b7ebb-a524-4394-81d7-b0ff710054c4", + "name": "cli-pn-practical-austin", + "organization_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "zone": "fr-par-1", + "tags": [], + "created_at": "1970-01-01T00:00:00.0Z", + "updated_at": "1970-01-01T00:00:00.0Z", + "subnets": [ + "172.16.184.0/22", + "fd46:78ab:30b8:e6b::/64" + ], + "instance_servers": [ + { + "id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", + "name": "cli-srv-flamboyant-mayer", + "state": "stopped", + "nic_id": "461b407b-b628-4750-97bc-5db35b781355", + "mac": "02:00:00:12:b4:60" + } + ], + "baremetal_servers": null, + "lbs": [ + { + "id": "a3840e61-695d-46a1-b9a7-131640743150", + "server_id": "cli-test", + "state": "ready" + } + ], + "rdb_instances": [ + { + "id": "7c1719cb-b4f1-4953-ba1a-a4439ba842f5", + "server_id": "cli-test", + "state": "ready", + "endpoint_id": "09cd306e-1cc3-4652-8e47-cf00dcdd63ad" + } + ], + "redis_clusters": null, + "gateways": null +} diff --git a/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.cassette.yaml b/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.cassette.yaml index 16c19ad95d..22873b56ee 100644 --- a/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.cassette.yaml +++ b/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.cassette.yaml @@ -2,26 +2,29 @@ version: 1 interactions: - request: - body: '{"name":"cli-pn-frosty-bouman","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","tags":null,"subnets":null}' + body: '{"name":"cli-pn-recursing-clarke","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.18.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks method: POST response: - body: '{"id":"085acd2d-1207-45ff-8001-7c1075f42b06","name":"cli-pn-frosty-bouman","tags":[],"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2022-06-06T14:32:06.645703Z","updated_at":"2022-06-06T14:32:06.645703Z","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","subnets":[],"zone":"fr-par-1"}' + body: '{"id":"1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1", "name":"cli-pn-recursing-clarke", + "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-04-13T07:41:50.374622Z", + "updated_at":"2023-04-13T07:41:50.374622Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "subnets":["172.16.184.0/22", "fd46:78ab:30b8:ab9b::/64"], "zone":"fr-par-1"}' headers: Content-Length: - - "311" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 06 Jun 2022 14:32:06 GMT + - Thu, 13 Apr 2023 07:41:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -31,7 +34,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 749ec726-1019-491c-9787-fd942d618230 + - c3f9cb45-4439-4f9a-8a60-803d9da97c82 status: 200 OK code: 200 duration: "" @@ -40,174 +43,130 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.18.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: - body: '{"images": [{"id": "b381b2bf-804a-4b12-91f6-9f4ff273462f", "name": "Ubuntu - Bionic", "label": "ubuntu_bionic", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu - Server helps you make the most of your infrastructure.", "organization": {"id": - "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "70c78c0a-a32d-47b6-bb0a-7e13f813ca56", "name": - "2022-01-21T15:02:06.245901+00:00", "local_images": [{"id": "e37b9985-ad8b-47ce-99d7-df0501cc7839", - "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + body: '{"images": [{"id": "0d3a22da-c634-45d6-a7dd-aff402f88b0c", "name": "AlmaLinux + 8", "label": "almalinux_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", + "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux + distribution, governed and driven by the community, focused on long-term stability + and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "73b7fe3c-6545-4f6e-aad0-e76c02404fbe", + "name": "2023-03-27T10:14:00.576321+00:00", "local_images": [{"id": "61d98e45-5103-4b3c-8ac6-060d65d0a2a5", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "5cacd0da-b3f1-4d5c-b22b-2ad19c57a844", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "c21d4bf0-0d0a-4166-849a-950a554fe61c", "zone": - "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", "ENT1-L", - "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", - "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "002cafd5-4e01-4091-bb82-0d9c8a8c769a", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "690989ec-6014-4bc0-aa91-8b25de109120", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "3c1aed50-75ee-485d-ae54-eea935ef4710", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "c9d9bddc-19ae-4691-92a4-ad8b39b95a5c", "zone": - "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS"]}], "creation_date": "2022-01-21T15:02:06.301690+00:00", - "modification_date": "2022-01-21T15:02:06.301690+00:00"}], "categories": ["distribution"], - "current_public_version": "70c78c0a-a32d-47b6-bb0a-7e13f813ca56", "creation_date": - "2018-04-27T14:07:25.221998+00:00", "modification_date": "2022-01-26T13:05:53.411389+00:00", - "valid_until": null}, {"id": "acf93867-88d9-40ee-99ea-6b2bb1ee8f0c", "name": - "Ubuntu Xenial", "label": "ubuntu_xenial", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu - Server helps you make the most of your infrastructure.", "organization": {"id": - "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "2777a5d7-88f9-428a-9579-2588f86be9b1", "name": - "2022-01-24T09:13:24.619046+00:00", "local_images": [{"id": "15ce51f9-32f0-4b44-b6d5-4338a6e8c350", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", - "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "6bb6b119-b23a-4b99-8c23-2a8bff9e5555", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "d0e114fe-f438-4743-aac3-d35c367d4886", "zone": - "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "049e3ca3-4bcd-45db-a3ca-2b78207c7755", "zone": - "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "9c82cfc8-86a7-44f8-b9f0-9b584d461c1a", "zone": "ams1", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8947e592-8e0b-4e96-be26-f2bec8c9b2fd", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "ac946746-0bb6-4be4-abd3-198eb122c9d6", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "0ccb174b-2ee2-48da-90dc-c437169b7c8c", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "57a0b470-123a-4c73-a41f-89a9a249cf0e", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "ce0dc6f9-3c96-4b2f-88eb-9926f173196a", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "6afebd6c-2c3d-4e52-a200-305d94d8e844", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO"]}, {"id": "d03b8ce7-b36d-41dc-a1fb-558d94e8dbd0", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", - "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", + "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "f6d8541e-a173-4c51-a6c9-d3c11462bdd6", "zone": "nl-ams-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", - "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS"]}], "creation_date": "2022-01-24T09:13:24.685973+00:00", - "modification_date": "2022-01-24T09:13:24.685973+00:00"}], "categories": ["distribution"], - "current_public_version": "2777a5d7-88f9-428a-9579-2588f86be9b1", "creation_date": - "2016-04-22T13:27:33.769932+00:00", "modification_date": "2022-01-26T13:06:59.788163+00:00", - "valid_until": null}, {"id": "c94b5df7-e698-4ac9-b273-565d18f5f8d2", "name": - "Debian Stretch", "label": "debian_stretch", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", - "description": "Debian is a free, powerful and stable operating system.", "organization": - {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources - Build System"}, "versions": [{"id": "2d07c5dc-d931-45ea-b6de-9ca8c48464f8", - "name": "2022-01-25T13:09:50.892495+00:00", "local_images": [{"id": "996bd1a9-8d25-4fa3-a6ec-75e94aa588b5", + "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d979b82f-2a8e-414f-8e0f-7c198cded9eb", "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "5f7ab0cd-d10e-49a0-91c8-315ed8a6a1a4", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": - ["C2L", "C2M", "C2S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "d954dc33-c52e-4960-93e1-b69c85d169be", "zone": "ams1", "arch": "arm", "compatible_commercial_types": - []}, {"id": "22a1bd8d-4498-4800-a8e5-4bc85001176c", "zone": "ams1", "arch": - "x86_64", "compatible_commercial_types": ["C2L", "C2M", "C2S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "37938de8-e3be-479a-895d-095158f76212", - "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["ARM64-128GB", - "ARM64-16GB", "ARM64-2GB", "ARM64-32GB", "ARM64-4GB", "ARM64-64GB", "ARM64-8GB"]}, - {"id": "86740237-62fc-4538-9b70-4373942f53d3", "zone": "par1", "arch": "arm", - "compatible_commercial_types": ["C1"]}, {"id": "bd6ba96e-d4c4-41f9-88e2-8dad3e6f085b", - "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["ARM64-128GB", - "ARM64-16GB", "ARM64-2GB", "ARM64-32GB", "ARM64-4GB", "ARM64-64GB", "ARM64-8GB"]}, - {"id": "de5db6f2-9a33-4669-ba2a-4f6ad4ddf376", "zone": "pl-waw-1", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "2028a835-093c-47d2-ab68-d022713ba3eb", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": - ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", - "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "11471277-149e-4216-8dbb-82863607480f", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], + "creation_date": "2023-03-27T10:14:00.744971+00:00", "modification_date": "2023-03-27T10:14:00.744971+00:00"}], + "categories": ["distribution"], "current_public_version": "73b7fe3c-6545-4f6e-aad0-e76c02404fbe", + "creation_date": "2021-10-05T13:36:52.246490+00:00", "modification_date": "2023-03-28T15:03:59.569897+00:00", + "valid_until": null}, {"id": "486ead23-9656-41d1-aa74-a5a780b2ae1b", "name": + "AlmaLinux 9", "label": "almalinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", + "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux + distribution, governed and driven by the community, focused on long-term stability + and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "ea9150d8-7c8e-4bd6-9312-ef9619890757", + "name": "2023-03-27T12:40:38.225508+00:00", "local_images": [{"id": "62a0e992-a6df-4180-aea7-a371a56a5f59", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "b54adcf0-b3b0-4dfa-982d-6e3f2613892e", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "a39b11db-500a-46f1-8524-6ef53dbf5a79", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8a7f5fbb-0984-4732-904a-feb3f56df078", "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS"]}], - "creation_date": "2022-01-25T13:09:50.854821+00:00", "modification_date": "2022-01-25T13:09:50.854821+00:00"}], - "categories": ["distribution"], "current_public_version": "2d07c5dc-d931-45ea-b6de-9ca8c48464f8", - "creation_date": "2017-06-26T15:37:13.460764+00:00", "modification_date": "2022-01-26T13:10:41.963132+00:00", - "valid_until": null}, {"id": "1d47b370-ac63-43b1-9f34-7328675e5e18", "name": - "CentOS 7.6", "label": "centos_7.6", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "description": "The CentOS Project is a community-driven free software effort - focused on delivering a robust open source ecosystem.", "organization": {"id": - "11111111-1111-4111-8111-111111111111", "name": "OCS"}, "versions": [{"id": - "53138072-3099-4566-8b18-de7b2739696a", "name": "2019-03-18T09:29:00.168590", - "local_images": [{"id": "05794ee5-c6d2-4d69-86dd-f1fc9032921d", "zone": "ams1", - "arch": "x86_64", "compatible_commercial_types": ["C2L", "C2M", "C2S", "DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", - "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "0f44b130-2bc7-4f82-993e-de9d1042c56e", - "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["C2L", "C2M", - "C2S", "DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", - "GP1-XL", "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "10aae8d8-0073-44f9-ac19-a171ac40bc78", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["C2L", - "C2M", "C2S", "DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", - "GP1-XL", "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "775a2a9f-551a-4309-838f-64ed7438c263", "zone": - "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["C2L", "C2M", - "C2S", "DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", - "GP1-XL", "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "0396714a-d3aa-4213-8230-4bd4906a73ae", "zone": - "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS"]}], "creation_date": "2019-03-18T09:29:00.247544+00:00", "modification_date": - "2019-03-18T09:29:00.247544+00:00"}], "categories": ["distribution"], "current_public_version": - "53138072-3099-4566-8b18-de7b2739696a", "creation_date": "2019-03-06T11:27:48.406290+00:00", - "modification_date": "2022-02-01T10:02:51.878666+00:00", "valid_until": null}, - {"id": "8f60c5dd-e659-48da-97e3-fb7de42195f5", "name": "Arch Linux", "label": - "arch_linux", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/archlinux.png", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "cc73f0cb-306a-419d-b8eb-0f951eb9283d", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "f0c3e2f5-72d8-43b2-a139-ab850f6865bb", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "a7c67fb1-27c1-4349-9d92-c4ddf119510a", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "c0a63d89-725b-4be6-b13e-967f11a85a1f", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "2cd027ac-0747-48b0-9f20-f2c1d364e2d1", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "ae4dd3e9-d980-4a2d-bdfa-0ad420882713", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO"]}, {"id": "718685dd-d66d-42fe-b74c-1f4895600496", "zone": "ams1", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", + "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", + "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "31c40954-2b15-4104-99e0-16184d8bc7c6", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], + "creation_date": "2023-03-27T12:40:38.405478+00:00", "modification_date": "2023-03-27T12:40:38.405478+00:00"}], + "categories": ["distribution"], "current_public_version": "ea9150d8-7c8e-4bd6-9312-ef9619890757", + "creation_date": "2022-08-24T09:21:26.315925+00:00", "modification_date": "2023-03-28T15:05:12.419108+00:00", + "valid_until": null}, {"id": "8f60c5dd-e659-48da-97e3-fb7de42195f5", "name": + "Arch Linux", "label": "arch_linux", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/archlinux.png", "description": "Arch Linux is an independently developed Linux distribution versatile enough to suit any role.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "fa0ae29c-27d3-4551-bb34-1a659a96d3c2", @@ -217,908 +176,1047 @@ interactions: "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "e9543979-6125-473d-9d62-398724da0c7f", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XS", "ENT1-XXS"]}, {"id": "e9543979-6125-473d-9d62-398724da0c7f", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "6849a7e3-65e2-4c53-bfb4-18c157a9cd66", "zone": - "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "6219dbd0-091e-4a64-9891-dfcbb586f6dd", "zone": - "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", "ENT1-L", - "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", - "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "a1326795-478b-4ba1-be4b-592ecc100cac", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "77184ad4-f7ba-486c-bdc3-509acae544a8", "zone": - "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS"]}], "creation_date": "2022-01-24T16:08:58.198257+00:00", - "modification_date": "2022-01-24T16:08:58.198257+00:00"}], "categories": ["distribution"], - "current_public_version": "fa0ae29c-27d3-4551-bb34-1a659a96d3c2", "creation_date": - "2016-03-07T20:55:32.213089+00:00", "modification_date": "2022-01-26T12:54:47.557608+00:00", - "valid_until": null}, {"id": "0d3a22da-c634-45d6-a7dd-aff402f88b0c", "name": - "AlmaLinux 8", "label": "almalinux_8", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/almalinux.png", - "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux - distribution, governed and driven by the community, focused on long-term stability - and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "5f91e20c-98c7-4d0a-a4aa-b07882d4eada", - "name": "2022-01-24T11:08:46.347591+00:00", "local_images": [{"id": "f37b032b-0f43-4f8e-961c-5a5a56dbe6d8", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "6d69dc27-723c-47d0-ae1d-179772d710c9", "zone": - "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", "ENT1-L", - "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", - "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "463a0199-a5de-4680-b269-5c36b2fab67b", + "X64-30GB", "X64-60GB", "ENT1-XS", "ENT1-XXS"]}, {"id": "6849a7e3-65e2-4c53-bfb4-18c157a9cd66", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "0004fa1e-7a1b-4c29-b8a4-fb008364e504", - "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "5e4386ac-3ee7-451a-8c07-226cb3c15384", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "8dfe6024-319b-425d-b60a-2fd7aae4b67e", "zone": + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS"]}, {"id": "6219dbd0-091e-4a64-9891-dfcbb586f6dd", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", + "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS"]}, {"id": "a1326795-478b-4ba1-be4b-592ecc100cac", "zone": "pl-waw-1", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", + "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", + "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", + "ENT1-XXS", "ENT1-XS"]}, {"id": "77184ad4-f7ba-486c-bdc3-509acae544a8", "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS"]}], "creation_date": "2022-01-24T11:08:46.424890+00:00", - "modification_date": "2022-01-24T11:08:46.424890+00:00"}], "categories": ["distribution"], - "current_public_version": "5f91e20c-98c7-4d0a-a4aa-b07882d4eada", "creation_date": - "2021-10-05T13:36:52.246490+00:00", "modification_date": "2022-01-26T13:12:38.766597+00:00", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "ENT1-XS", "ENT1-XXS"]}, + {"id": "2f64d38e-96d3-47d6-80b3-379893b2803a", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "ENT1-XXS", "ENT1-XS"]}], + "creation_date": "2022-01-24T16:08:58.198257+00:00", "modification_date": "2022-01-24T16:08:58.198257+00:00"}], + "categories": ["distribution"], "current_public_version": "fa0ae29c-27d3-4551-bb34-1a659a96d3c2", + "creation_date": "2016-03-07T20:55:32.213089+00:00", "modification_date": "2022-01-26T12:54:47.557608+00:00", "valid_until": null}, {"id": "dc947de3-ddc7-4056-bc35-d51a316ebbb4", "name": - "CentOS 7.9", "label": "centos_7.9", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", + "CentOS 7.9", "label": "centos_7.9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/centos.png", "description": "The CentOS Project is a community-driven free software effort focused on delivering a robust open source ecosystem.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "e987d9aa-49d2-4ae4-9fa1-973e2d0a8c1a", "name": - "2022-03-22T16:57:25.569637+00:00", "local_images": [{"id": "3dcbc2a7-bd87-4ae7-8ed8-c19e91ec3bce", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + System"}, "versions": [{"id": "16dda4a4-874a-4e6c-a39b-f007457038d8", "name": + "2022-11-17T16:45:12.127950+00:00", "local_images": [{"id": "7fde748b-5475-4d4a-90a9-34292d227fa3", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "26b2d924-ee8d-45c5-8503-3c51a1e24b72", "zone": - "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "8d8e561a-67ba-414d-9567-fdb9b70761da", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "46adf4a0-593f-47ac-8a0d-499aafb85359", "zone": - "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "4a8ad4d2-6fb4-4dd0-ae91-89d8a1b973d8", "zone": "pl-waw-1", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", - "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", - "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, - {"id": "7b0630c0-be89-42fb-b8be-a9b4413af163", "zone": "fr-par-3", "arch": "x86_64", - "compatible_commercial_types": ["ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "99af30ad-ba30-4b8d-a706-4939d3c9653e", "zone": + "X64-30GB", "X64-60GB"]}, {"id": "80f07490-eda6-4402-9273-001d059f2f40", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}], "creation_date": "2022-03-22T16:57:25.706655+00:00", - "modification_date": "2022-03-22T16:57:25.706655+00:00"}], "categories": ["distribution"], - "current_public_version": "e987d9aa-49d2-4ae4-9fa1-973e2d0a8c1a", "creation_date": - "2019-12-25T00:00:00+00:00", "modification_date": "2022-03-23T10:52:21.942686+00:00", - "valid_until": null}, {"id": "293a2ddf-6e33-4e63-81f0-fbdd90641480", "name": - "CentOS 8", "label": "centos_8", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", - "description": "The CentOS Project is a community-driven free software effort - focused on delivering a robust open source ecosystem.", "organization": {"id": - "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "dc3cae1b-8215-47ee-ae64-e3df6534d436", "name": - "2022-01-24T10:21:37.136105+00:00", "local_images": [{"id": "55aec987-4474-4fef-a8b9-3a1c27afe059", - "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "d202a177-e307-4fe4-8e33-c014f15e1988", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "d6b15756-9cc0-436f-a771-ccd78256ef24", "zone": "fr-par-2", "arch": "x86_64", + "fc13535c-d2b6-4062-b4a6-e5b93fbbdf7a", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "ec877b58-6835-438b-aedb-327e4df139c7", "zone": "pl-waw-1", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "97a2b42c-39c0-492e-a896-a5034a87e76f", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "f8e90e8b-acfe-4ffe-bbc7-eb11ebc4dbe7", "zone": "ams1", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "6306e909-ba53-4bb7-898f-f425b95a2848", "zone": + "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": - "2022-01-24T10:21:37.185428+00:00", "modification_date": "2022-01-24T10:21:37.185428+00:00"}], - "categories": ["distribution"], "current_public_version": "dc3cae1b-8215-47ee-ae64-e3df6534d436", - "creation_date": "2020-04-29T11:48:57.810456+00:00", "modification_date": "2022-01-26T13:11:41.972368+00:00", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "620b5307-1861-4c88-8938-1e45afc9d3f6", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2022-11-17T16:45:12.324670+00:00", "modification_date": "2022-11-17T16:45:12.324670+00:00"}], + "categories": ["distribution"], "current_public_version": "16dda4a4-874a-4e6c-a39b-f007457038d8", + "creation_date": "2019-12-25T00:00:00+00:00", "modification_date": "2022-11-21T09:57:07.222778+00:00", "valid_until": null}, {"id": "f49dc23e-82d1-48c3-b80e-6c697b1dda92", "name": - "Centos Stream 8", "label": "centos_stream_8", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", + "Centos Stream 8", "label": "centos_stream_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/centos.png", "description": "The CentOS Project is a community-driven free software effort focused on delivering a robust open source ecosystem.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "8a4428df-0ca0-4f20-9eb1-af15568b7ecc", "name": - "2022-02-03T16:45:36.002945+00:00", "local_images": [{"id": "4fba0598-119b-4fcd-b54f-e99f68b99730", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS"]}, {"id": "5fa8bf55-2bcb-4f0d-94c7-3fc6282ea2fb", "zone": - "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS"]}, {"id": "6a2ec385-3a95-43d9-93e7-02df54c5ce23", + System"}, "versions": [{"id": "f5daf351-659e-4f06-b7e7-86925f9c7011", "name": + "2023-03-28T07:17:56.324937+00:00", "local_images": [{"id": "5333864b-3235-4098-af75-f35f5239e35b", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "3e937622-375c-43ba-bff3-42a71d3077c6", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "033be0a0-e9ef-40ac-aefd-c8318c3d8ba6", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "4b75df8b-0d27-4437-b0a0-bf5dbcce1a65", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "d3328600-e772-4fd9-9135-1cade6626730", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8e922e6b-4291-421a-8bae-62b94506fe86", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "01930fdf-807f-4896-ae25-3c460d1189b8", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS"]}, {"id": - "f9316ac4-52da-44f4-9a56-744379fd4b9a", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": - ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", - "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S"]}, - {"id": "b7d022b9-9508-482a-b9c1-cb32e8f02f7d", "zone": "nl-ams-2", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS"]}], "creation_date": "2022-02-03T16:45:36.078437+00:00", - "modification_date": "2022-02-03T16:45:36.078437+00:00"}], "categories": ["distribution"], - "current_public_version": "8a4428df-0ca0-4f20-9eb1-af15568b7ecc", "creation_date": - "2022-02-03T10:23:22.168515+00:00", "modification_date": "2022-02-08T10:25:19.990723+00:00", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "144fea20-72db-4be9-ae4a-54bde78ebcef", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "7f8365a3-68b3-43dd-b623-7bc903bc1c5b", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "147faa2b-ccef-412a-a359-9141f21f6a32", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "f4c9b209-6aef-4285-8eab-db9bf958a875", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-03-28T07:17:56.469669+00:00", + "modification_date": "2023-03-28T07:17:56.469669+00:00"}], "categories": ["distribution"], + "current_public_version": "f5daf351-659e-4f06-b7e7-86925f9c7011", "creation_date": + "2022-02-03T10:23:22.168515+00:00", "modification_date": "2023-03-28T15:00:55.387802+00:00", "valid_until": null}, {"id": "cfb3fa01-6406-4be8-9e9d-29daee2582fa", "name": - "Centos Stream 9", "label": "centos_stream_9", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/centos.png", + "Centos Stream 9", "label": "centos_stream_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/centos.png", "description": "The CentOS Project is a community-driven free software effort focused on delivering a robust open source ecosystem.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "785106b7-6341-4910-87a2-5f6af1013156", "name": - "2022-02-03T16:35:06.537120+00:00", "local_images": [{"id": "9f5fede0-8143-43dc-82fd-5cc906dc20bb", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS"]}, {"id": "aecd9bbd-19ee-40c5-961c-d248dec6ecd7", "zone": - "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS"]}, {"id": "ca037987-4b79-4ed0-ae9f-d471223743ad", + System"}, "versions": [{"id": "adcd38b6-0b86-4541-ac22-8746872f2f3f", "name": + "2023-03-27T15:41:43.491902+00:00", "local_images": [{"id": "6fc0bfd2-c4f5-4919-859b-ae020053fe65", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f33b7754-23be-4ad2-98ad-18af1b2da9ca", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "0204f372-964c-44bc-b9eb-214bf8ad1c08", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "faf2ef33-c477-4003-9de6-20e6210063a1", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "00d03911-c48d-4ae9-937c-aa16fd01d720", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "ea30b451-3c8c-4111-ae5f-c74a517da3fa", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "96a5e85b-cd28-4c73-91d9-1b6ac36fce35", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS"]}, {"id": - "e24ce212-b103-48af-8d64-515a6b06f4df", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": - ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", - "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S"]}, - {"id": "f1dc6bd5-b014-4600-b79f-7b81bb0aa4ab", "zone": "nl-ams-2", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS"]}], "creation_date": "2022-02-03T16:35:06.575708+00:00", - "modification_date": "2022-02-03T16:35:06.575708+00:00"}], "categories": ["distribution"], - "current_public_version": "785106b7-6341-4910-87a2-5f6af1013156", "creation_date": - "2022-02-03T10:35:17.004309+00:00", "modification_date": "2022-02-08T10:25:33.397209+00:00", - "valid_until": null}, {"id": "213b02cb-3d8d-4967-ba8d-e5767a57574e", "name": - "Debian Bullseye", "label": "debian_bullseye", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "3dfd58df-f9ae-4c5c-87b8-76f14ccf9261", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "5e634970-32a9-4e6c-abab-9ed3df387f55", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "25d7c97d-36ec-456b-ad3c-a8739a17b50b", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "0f6dc654-fbd7-404b-83f8-9d415a6ab6b9", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-03-27T15:41:43.614858+00:00", + "modification_date": "2023-03-27T15:41:43.614858+00:00"}], "categories": ["distribution"], + "current_public_version": "adcd38b6-0b86-4541-ac22-8746872f2f3f", "creation_date": + "2022-02-03T10:35:17.004309+00:00", "modification_date": "2023-03-28T15:02:34.973875+00:00", + "valid_until": null}, {"id": "7bdc1afb-231f-486a-9b85-1b0478bc0e4a", "name": + "Debian Buster", "label": "debian_buster", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/debian.png", "description": "Debian is a free operating system, developed by thousands of volunteers from all over the world who collaborate via the Internet.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources - Build System"}, "versions": [{"id": "9c0f7ec3-39a3-4141-8e07-0c1b8f501591", - "name": "2022-05-04T15:03:07.848449+00:00", "local_images": [{"id": "6382e761-4208-41a8-8b8e-57a24fdc1ea9", - "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "0e252873-9911-4f86-899f-6df314429a78", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "7a1b510e-0643-411a-916a-1eae00264e23", "zone": - "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "905f1090-3f48-43ce-9ea5-09557ad8e7db", "zone": "fr-par-3", - "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", "ENT1-L", "ENT1-M", - "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + Build System"}, "versions": [{"id": "8bd9d92c-2b86-475e-9d3d-4f9b69b7c795", + "name": "2022-11-22T14:21:22.175009+00:00", "local_images": [{"id": "d03f9dd6-6329-4aed-ad61-1973efd27cac", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "51d60da2-7ae9-45e7-81d1-9fb56a6adab7", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "641b3cdd-c70c-41cc-9ff2-6e803b928f34", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "1934aaa0-a0bf-4725-b5b3-1adc9954424b", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "39cc6437-43c0-41cd-912a-cc37d19c1b61", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "5cca9d53-612a-4a59-be02-817d977dda64", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "116721d2-6af0-4d27-9505-2bbb26b63a92", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "5c9589b8-f0eb-4e82-b850-4479284a4b6e", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}], "creation_date": "2022-05-04T15:03:07.923369+00:00", - "modification_date": "2022-05-04T15:03:07.923369+00:00"}], "categories": ["distribution"], - "current_public_version": "9c0f7ec3-39a3-4141-8e07-0c1b8f501591", "creation_date": - "2021-07-21T09:09:36.581723+00:00", "modification_date": "2022-05-05T08:31:48.422794+00:00", - "valid_until": null}, {"id": "7bdc1afb-231f-486a-9b85-1b0478bc0e4a", "name": - "Debian Buster", "label": "debian_buster", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/debian.png", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "1761dcf5-4396-4a5d-8b28-7d7cb6dc72f5", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2022-11-22T14:21:22.304730+00:00", "modification_date": "2022-11-22T14:21:22.304730+00:00"}], + "categories": ["distribution"], "current_public_version": "8bd9d92c-2b86-475e-9d3d-4f9b69b7c795", + "creation_date": "2019-07-16T13:55:36.377559+00:00", "modification_date": "2022-11-22T15:03:29.064893+00:00", + "valid_until": null}, {"id": "213b02cb-3d8d-4967-ba8d-e5767a57574e", "name": + "Debian Bullseye", "label": "debian_bullseye", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/debian.png", "description": "Debian is a free operating system, developed by thousands of volunteers from all over the world who collaborate via the Internet.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources - Build System"}, "versions": [{"id": "aec7af9d-bef4-4c30-bf35-b64da9bf5437", - "name": "2022-05-04T14:37:48.370794+00:00", "local_images": [{"id": "33c023c5-89c2-4f19-b2bb-45306d5a88e0", - "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + Build System"}, "versions": [{"id": "66dac370-33e4-4c6b-8132-c63bf93d10d9", + "name": "2023-03-24T10:27:03.235790+00:00", "local_images": [{"id": "5979b981-b30b-4d05-80fa-a432a8a79a83", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "214fe4be-6b16-4d5d-9cdb-7698ee91659a", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO"]}, {"id": "09cfbb91-f7c2-498a-ba0b-b54e19cb9d0f", "zone": "fr-par-2", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", + "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", + "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "ebb10763-4f0d-40b0-86bb-266f2275b9a5", + "zone": "nl-ams-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "0024830b-143b-4186-8c99-3e5effd07f04", "zone": "pl-waw-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "7c972b6f-0165-45b0-9dfa-52ff6c39ac4d", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "c8006c4a-94c7-458a-9e85-38c90980e93a", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "ca4c6d52-bb47-4d4d-98b6-a201825b5b9a", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "fef3e360-8c03-4861-bde3-a4176a41a3e5", + "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "4d03625b-965c-4468-97bd-f7c52637e8ba", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "fd88fc57-4acc-4cc8-a1fc-3f352110001b", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "41ed9bc9-94ed-4c31-9610-cd701a7cb76c", + "zone": "pl-waw-1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "665ae928-07f3-4068-a7ed-a7a185ef35ed", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "b639fa8c-16f9-493f-9af0-33e83edd6f66", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "fc73b422-af26-43d7-a989-ca54ce46fe11", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-24T10:27:03.393581+00:00", + "modification_date": "2023-03-24T10:27:03.393581+00:00"}], "categories": ["distribution"], + "current_public_version": "66dac370-33e4-4c6b-8132-c63bf93d10d9", "creation_date": + "2021-07-21T09:09:36.581723+00:00", "modification_date": "2023-03-28T14:59:44.265262+00:00", + "valid_until": null}, {"id": "c1b530d8-0ca0-45c4-80db-ba06608287b2", "name": + "Docker", "label": "docker", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/docker.png", + "description": "Docker is an open platform for developers and sysadmins to build, + ship, and run distributed applications.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "80f14577-c821-44f2-aa51-fcd09ef74ccd", + "name": "2022-11-17T16:49:13.103479+00:00", "local_images": [{"id": "b9335185-d1bb-4904-adaf-da88c8e6c05b", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "770656bd-5e2e-4b0c-8a85-de0c6f5ce330", "zone": - "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "a730e21c-798c-48f6-a6b8-540907b234c9", "zone": - "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", "ENT1-L", - "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "a31a551b-82be-4227-969d-b174d43451f4", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "b1895cdd-a79b-4f18-9644-e5ab2434be06", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "8d7eeb09-5370-4501-abb1-e260eb9257fe", "zone": - "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}], "creation_date": "2022-05-04T14:37:48.440692+00:00", "modification_date": - "2022-05-04T14:37:48.440692+00:00"}], "categories": ["distribution"], "current_public_version": - "aec7af9d-bef4-4c30-bf35-b64da9bf5437", "creation_date": "2019-07-16T13:55:36.377559+00:00", - "modification_date": "2022-05-05T08:32:02.262001+00:00", "valid_until": null}, - {"id": "c1b530d8-0ca0-45c4-80db-ba06608287b2", "name": "Docker", "label": "docker", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/docker.png", "description": - "Docker is an open platform for developers and sysadmins to build, ship, and - run distributed applications.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "d40888dc-eb73-4dd5-87ae-58673a3f226c", - "name": "2022-01-24T15:58:06.351381+00:00", "local_images": [{"id": "00c5e040-a1b6-4066-aa0c-f73ae74b08b6", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "6c2c4cc8-e50b-474b-b565-0081df393584", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "X64-30GB", "X64-60GB"]}, {"id": "ef114000-7fe5-455c-afd1-714c15fdd3f3", "zone": + "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "b6c5990a-ee1d-45b6-a9bc-15edb6f6d354", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "9f945d00-71b9-436a-8a45-311babee406d", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "966553ea-03c4-45ac-b32f-14d9ff670168", "zone": - "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "fc142864-68d5-4298-bd8b-f1f00dc0455a", "zone": "par1", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", - "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "519b1602-c5cd-455c-93e5-4e29d0a2f4d7", "zone": "fr-par-3", - "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", "ENT1-L", "ENT1-M", - "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "X64-30GB", "X64-60GB"]}, {"id": "a0c05cf2-8805-412c-acb6-45d047773732", "zone": + "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "98ad9a61-2ac3-45fe-a107-7d7714047fe8", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "f50af9e3-8b75-4c63-b2e5-355a2404f6dd", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS"]}], "creation_date": - "2022-01-24T15:58:06.575806+00:00", "modification_date": "2022-01-24T15:58:06.575806+00:00"}], - "categories": ["instantapp"], "current_public_version": "d40888dc-eb73-4dd5-87ae-58673a3f226c", - "creation_date": "2016-03-05T15:11:26.847640+00:00", "modification_date": "2022-01-26T13:23:18.201495+00:00", - "valid_until": null}, {"id": "e549e5b4-33eb-4c97-950a-8baf107f895f", "name": - "Fedora 32", "label": "fedora_32", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2022-11-17T16:49:13.211153+00:00", "modification_date": "2022-11-17T16:49:13.211153+00:00"}], + "categories": ["instantapp"], "current_public_version": "80f14577-c821-44f2-aa51-fcd09ef74ccd", + "creation_date": "2016-03-05T15:11:26.847640+00:00", "modification_date": "2022-11-21T09:58:41.216589+00:00", + "valid_until": null}, {"id": "186859f6-0152-45dd-9eb8-21fc5e8d774e", "name": + "Fedora 36", "label": "fedora_36", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", "description": "Fedora is a powerful, flexible operating system that includes the best and latest datacenter technologies. It puts you in control of all your infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "219d404b-8ed7-4097-9708-9ad180f56f78", - "name": "2022-01-24T12:54:10.097783+00:00", "local_images": [{"id": "b5eddac4-90bf-4655-9dab-03efee81f425", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "2540160a-f0c7-4f64-9ccd-fc2b52d64068", "zone": "fr-par-2", + "name": "Instances User Resources Build System"}, "versions": [{"id": "5f758103-8e34-40cd-b28d-6e5893ff54e3", + "name": "2023-03-28T07:19:02.568289+00:00", "local_images": [{"id": "ed49624c-0d21-4e19-beca-eb940fa0928f", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "74490113-256a-4bdf-bcb1-581f9d88e97f", "zone": "par1", "arch": "arm64", "compatible_commercial_types": + ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", + "AMP2-C60"]}, {"id": "aa0e328b-fe85-4773-b8d9-f4a86db0860b", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", + "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", + "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "5642623f-7b90-4568-8149-843a7c07c1e4", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "3f936ceb-4e63-498d-94e0-5231caaaef3f", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "0997826f-bb9c-4a7f-b442-0f95250c22b0", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "bb9a6e9c-87fb-413d-b126-db281bb66817", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f76711a4-8846-44d2-b381-a189dd095b36", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "9ce3a277-a9e5-4c84-99b7-6bf3b9002f28", "zone": "pl-waw-1", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "0c8cd118-fc22-4631-ab79-c35c29f90c49", "zone": "par1", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "448a6c06-1bdd-4c7c-a482-c88b4e9a0c9e", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "2b72a96d-e146-49fe-b161-5e5b0b56f053", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "caf7b73d-f0d3-4d42-8db4-8ee9370de5b7", "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS"]}], "creation_date": "2022-01-24T12:54:10.163020+00:00", - "modification_date": "2022-01-24T12:54:10.163020+00:00"}], "categories": ["distribution"], - "current_public_version": "219d404b-8ed7-4097-9708-9ad180f56f78", "creation_date": - "2020-05-19T08:21:31.875735+00:00", "modification_date": "2022-01-26T13:18:43.331640+00:00", - "valid_until": null}, {"id": "7eb82eb3-1f41-4479-927b-34568223b206", "name": - "Fedora 34", "label": "fedora_34", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8cee1f9b-c123-4028-b422-e3565c1176d4", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-28T07:19:02.692506+00:00", + "modification_date": "2023-03-28T07:19:02.692506+00:00"}], "categories": ["distribution"], + "current_public_version": "5f758103-8e34-40cd-b28d-6e5893ff54e3", "creation_date": + "2022-04-14T15:45:29.069701+00:00", "modification_date": "2023-03-28T15:10:42.492768+00:00", + "valid_until": null}, {"id": "2b0e5802-eb82-4fd5-ac8f-6877c46aa14b", "name": + "Fedora 37", "label": "fedora_37", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", "description": "Fedora is a powerful, flexible operating system that includes the best and latest datacenter technologies. It puts you in control of all your infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "77fcdef9-1ea3-4841-9281-dbdf9835df47", - "name": "2022-01-24T14:06:17.995575+00:00", "local_images": [{"id": "9545c477-bdda-4a55-9f8e-cb2f29a9a54c", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "9e027998-3f81-4713-bb8d-b3d81c11fa74", "zone": "fr-par-2", + "name": "Instances User Resources Build System"}, "versions": [{"id": "09c9a703-7526-4b50-8333-337f1f26190d", + "name": "2023-03-27T15:49:13.458836+00:00", "local_images": [{"id": "f0f9abba-c98f-4be8-b191-88f40b5d7b27", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "4942ff7b-a79d-4654-bf6a-db74ac0f2bc2", "zone": "par1", "arch": "arm64", "compatible_commercial_types": + ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", + "AMP2-C60"]}, {"id": "fa30bf3f-7dca-412a-9d90-6ab1764c1b73", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", + "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", + "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "3977ad18-9cb6-4a89-9e69-4c6caac95227", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "1556e65e-642d-4bbb-a13e-ad2e677e3881", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "addb1b2d-95ff-4cf7-9410-9cf94a74df4d", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "555a8bda-be65-45a6-8788-1ecd522b60fd", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "e1e0a7dc-bd18-465c-886d-0ca793ac7875", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "b8a2c6bc-06d9-41bd-948a-1cf313ce6fba", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "0b1e1955-b880-476f-961c-36d3967585d5", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "886332b4-dff8-43d8-a432-a9cec8796343", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-27T15:49:13.669277+00:00", + "modification_date": "2023-03-27T15:49:13.669277+00:00"}], "categories": ["distribution"], + "current_public_version": "09c9a703-7526-4b50-8333-337f1f26190d", "creation_date": + "2022-11-14T10:48:04.097063+00:00", "modification_date": "2023-03-28T15:12:10.818444+00:00", + "valid_until": null}, {"id": "233074b9-e2ba-4e78-818e-dd4930ce6bee", "name": + "GitLab", "label": "gitlab", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/gitlab.png", + "description": "GitLab is a web-based Git repository manager with wiki and issue + tracking features.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "5aaa1f5b-6b83-431a-b12c-57db770bfa78", + "name": "2022-11-18T10:02:54.423998+00:00", "local_images": [{"id": "98244fe8-83ce-4076-bddc-a613eb646b91", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "94e42a7e-7c69-4fc9-9788-3b64fddbd0a1", "zone": "pl-waw-1", "arch": "x86_64", + "1fa73760-65fd-4350-85b4-1ffb203bcbfe", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "42455be3-1971-487b-870f-9502bc2b63dc", "zone": "par1", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB"]}, {"id": "b0d4d06c-f535-493f-b57c-e6379c4f18bc", "zone": + "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "9f9ef5ec-4345-4b6c-957b-925c9ecb0580", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS"]}], "creation_date": "2022-01-24T14:06:18.045306+00:00", - "modification_date": "2022-01-24T14:06:18.045306+00:00"}], "categories": ["distribution"], - "current_public_version": "77fcdef9-1ea3-4841-9281-dbdf9835df47", "creation_date": - "2021-04-22T07:01:10.910765+00:00", "modification_date": "2022-01-26T13:19:38.485883+00:00", - "valid_until": null}, {"id": "198bbff7-c136-4b9c-9e28-8770df451fc1", "name": - "Fedora 35", "label": "fedora_35", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", - "description": "Fedora is a powerful, flexible operating system that includes - the best and latest datacenter technologies. It puts you in control of all your - infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "72159330-b721-4048-9852-3244e7f5f3bf", - "name": "2022-01-24T14:42:30.064130+00:00", "local_images": [{"id": "2a21d5d4-37f2-4c8e-b6ba-624c6de4ae1c", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "d0f5a66a-519a-401c-b96f-8f9b10e49552", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "46901bff-cb18-4028-86ff-7a9d78fc25dc", "zone": - "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", "ENT1-L", - "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "9a1001cc-6217-4bf8-acc7-67cdbb28d9b1", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "ed62204a-cfc5-4c10-bc9f-fbbf7d60cf08", "zone": - "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "7db23f33-7444-4175-96d3-03f4b590aa58", "zone": - "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "1ad486c3-d9c4-458e-90fe-4c8ed31adc7e", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "36607426-543e-408d-aa7c-f6cc84e7f835", "zone": - "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS"]}], "creation_date": "2022-01-24T14:42:30.198105+00:00", - "modification_date": "2022-01-24T14:42:30.198105+00:00"}], "categories": ["distribution"], - "current_public_version": "72159330-b721-4048-9852-3244e7f5f3bf", "creation_date": - "2021-11-15T16:12:25.586923+00:00", "modification_date": "2022-01-26T13:20:27.560904+00:00", - "valid_until": null}, {"id": "186859f6-0152-45dd-9eb8-21fc5e8d774e", "name": - "Fedora 36", "label": "fedora_36", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/fedora.png", - "description": "Fedora is a powerful, flexible operating system that includes - the best and latest datacenter technologies. It puts you in control of all your - infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "303b8088-2f68-482c-9ab1-d6fe77edac22", - "name": "2022-05-10T14:59:59.023028+00:00", "local_images": [{"id": "844d3520-a4f4-496e-8db7-ca82f3307d26", + "X64-30GB", "X64-60GB"]}, {"id": "0b54e819-1051-4a01-8026-053c2523c45d", "zone": + "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "31fd1cfc-27bd-4baf-86e9-df0beb72efb4", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "79924b58-d6ac-4413-8551-0cbce12cf804", "zone": - "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", "ENT1-L", - "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "75cb4b23-2b3d-4b28-b23d-953966e707ad", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2022-11-18T10:02:54.554344+00:00", "modification_date": "2022-11-18T10:02:54.554344+00:00"}], + "categories": ["instantapp"], "current_public_version": "5aaa1f5b-6b83-431a-b12c-57db770bfa78", + "creation_date": "2016-03-07T21:06:22.770864+00:00", "modification_date": "2022-11-21T09:59:01.854428+00:00", + "valid_until": null}, {"id": "7d4a7cb1-1fd5-4a64-920b-c79f47367254", "name": + "NextCloud", "label": "nextcloud", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/nextcloud.png", + "description": "Nextcloud is an open source, self-hosted file share and communication + platform.", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": + "OCS"}, "versions": [{"id": "36e53418-c1c9-49db-bc59-f6c87e2cb96f", "name": + "2022-11-17T16:53:39.941145+00:00", "local_images": [{"id": "c604583d-dd01-4edc-b3f5-7eb5d4596e61", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "af93015e-ad09-47c7-8d24-a47a0d2dfd99", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "ede810b5-077d-43b9-b83b-4281c0cdce15", "zone": - "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "671ccef0-003d-44fc-8da3-f4a8979482e3", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "7a49eea4-63da-489b-8d76-789cefa34df7", "zone": - "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}], "creation_date": "2022-05-10T14:59:59.085131+00:00", "modification_date": - "2022-05-10T14:59:59.085131+00:00"}], "categories": ["distribution"], "current_public_version": - "303b8088-2f68-482c-9ab1-d6fe77edac22", "creation_date": "2022-04-14T15:45:29.069701+00:00", - "modification_date": "2022-05-10T15:12:40.289410+00:00", "valid_until": null}, - {"id": "233074b9-e2ba-4e78-818e-dd4930ce6bee", "name": "GitLab", "label": "gitlab", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/gitlab.png", "description": - "GitLab is a web-based Git repository manager with wiki and issue tracking features.", - "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "auth-team+ocs-organization@scaleway.com"}, - "versions": [{"id": "4a07b2c4-580d-494a-a4f3-1f4a948899ef", "name": "2022-04-12T16:03:20.253030+00:00", - "local_images": [{"id": "16116d68-f0fb-4212-b607-2378e8bd1868", "zone": "par1", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", - "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "5f065613-1a0e-4437-afd4-907241e89239", "zone": "nl-ams-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", - "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", - "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, - {"id": "9d0a7f9a-69e2-4d77-89bc-11b674444285", "zone": "pl-waw-1", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", - "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "df5eefe6-ed10-4d62-b399-d406dfe5267a", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", - "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "77f44699-ce96-40bc-bd3e-3d0f3bb5012c", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "ac901b21-3413-4629-941d-9ead8b3580f9", + "X64-30GB", "X64-60GB"]}, {"id": "69f87cf6-ed99-433c-b939-ce5883993150", "zone": + "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "54414b23-6028-4a9b-ba5f-98cca3e335e5", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "edae369a-f1ac-4054-8996-b95aa1b20846", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}], "creation_date": "2022-04-12T16:03:20.334219+00:00", - "modification_date": "2022-04-12T16:03:20.334219+00:00"}], "categories": ["instantapp"], - "current_public_version": "4a07b2c4-580d-494a-a4f3-1f4a948899ef", "creation_date": - "2016-03-07T21:06:22.770864+00:00", "modification_date": "2022-04-14T10:17:31.766785+00:00", - "valid_until": null}, {"id": "7d4a7cb1-1fd5-4a64-920b-c79f47367254", "name": - "NextCloud", "label": "nextcloud", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/nextcloud.png", - "description": "Nextcloud is an open source, self-hosted file share and communication - platform.", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": - "OCS"}, "versions": [{"id": "3a94060b-bef3-403d-be16-f93d9e605de5", "name": - "2022-04-13T15:35:06.453367+00:00", "local_images": [{"id": "0196a27b-f7e6-4b5d-b0a7-41f2fa533baa", - "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "X64-30GB", "X64-60GB"]}, {"id": "e19a0ff7-bf8a-48ac-a50f-6de58a659035", "zone": + "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "1057097d-0a23-4480-9a34-566342fb3265", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2022-11-17T16:53:40.112145+00:00", "modification_date": "2022-11-17T16:53:40.112145+00:00"}], + "categories": ["instantapp"], "current_public_version": "36e53418-c1c9-49db-bc59-f6c87e2cb96f", + "creation_date": "2019-04-16T12:22:56.930842+00:00", "modification_date": "2022-11-21T09:58:50.824677+00:00", + "valid_until": null}, {"id": "b6f4edc8-21e6-4aa2-8f52-1030cf6d4dd8", "name": + "OpenVPN", "label": "openvpn", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/openvpn.png", + "description": "Surf the web in a secure and anonymous way with OpenVPN InstantApp.", + "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "auth-team+ocs-organization@scaleway.com"}, + "versions": [{"id": "c07d4bc9-b947-4945-a739-78b7cda73bfa", "name": "2022-11-17T16:50:41.032881+00:00", + "local_images": [{"id": "c82757c7-a639-49a1-bd3a-5841a0da5931", "zone": "par1", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", + "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "6e11521d-d905-498d-bf30-cb5e3c402901", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "7bb740d3-da25-4176-baec-41afe9f9a543", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "a17ce4e4-38df-490f-bb50-a34acc0abfdf", "zone": - "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "f299d717-5350-4154-9b57-d612a421103a", "zone": - "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", "ENT1-L", - "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "45c99e58-7bee-42c6-80f0-5a7a78a13f7b", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "0cb4c7ab-9d02-494a-84fd-8938c2ee126c", "zone": - "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}], "creation_date": "2022-04-13T15:35:06.545763+00:00", "modification_date": - "2022-04-13T15:35:06.545763+00:00"}], "categories": ["instantapp"], "current_public_version": - "3a94060b-bef3-403d-be16-f93d9e605de5", "creation_date": "2019-04-16T12:22:56.930842+00:00", - "modification_date": "2022-04-14T12:09:05.473363+00:00", "valid_until": null}, - {"id": "b6f4edc8-21e6-4aa2-8f52-1030cf6d4dd8", "name": "OpenVPN", "label": "openvpn", - "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/openvpn.png", "description": - "Surf the web in a secure and anonymous way with OpenVPN InstantApp.", "organization": - {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "auth-team+ocs-organization@scaleway.com"}, - "versions": [{"id": "c44855d2-28bb-4ac1-8502-f610af1d3d1b", "name": "2022-01-24T16:58:01.815085+00:00", - "local_images": [{"id": "83d760cb-7f3d-4f78-8baa-ae47428862c1", "zone": "par1", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", - "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "32298c1d-5ad7-4829-970d-75763cd86271", "zone": "fr-par-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", - "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", - "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, - {"id": "666d6bec-76ea-4f27-ab48-289f19671213", "zone": "ams1", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "ed92b3b8-9656-4937-9169-8484d153f9e3", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "37c6346e-10de-4878-a56d-a7f94311a363", "zone": "fr-par-3", "arch": "x86_64", - "compatible_commercial_types": ["ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", + "5ba4b7be-5524-4a85-9008-b50360778c9b", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "2cfd9056-fe7c-4c7d-aeae-66238e8c5f5c", "zone": - "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "7bfa5aff-8c97-4b9c-b37a-4d96b981f5c1", "zone": "nl-ams-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", - "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS"]}], "creation_date": "2022-01-24T16:58:01.868577+00:00", - "modification_date": "2022-01-24T16:58:01.868577+00:00"}], "categories": ["instantapp"], - "current_public_version": "c44855d2-28bb-4ac1-8502-f610af1d3d1b", "creation_date": - "2016-03-07T21:04:57.667667+00:00", "modification_date": "2022-01-26T13:22:22.650016+00:00", - "valid_until": null}, {"id": "e22a5d54-ecb5-4fdd-a130-a473737ff7ab", "name": - "ownCloud", "label": "owncloud", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/owncloud.png", - "description": "ownCloud lets you sync & share your files, calendar, contacts - and more. Access your data from all your devices, on an open platform you can - extend and modify.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "c9c02a9c-e072-48af-aefd-bf6be9028022", - "name": "2018-04-18T10:09:38.952503", "local_images": [{"id": "a5fb716a-1c60-4740-a179-98ce315ca3d7", - "zone": "ams1", "arch": "arm", "compatible_commercial_types": []}, {"id": "2fdbbbb4-3b63-403b-9604-27713971efd6", - "zone": "par1", "arch": "arm", "compatible_commercial_types": ["C1"]}, {"id": - "4208a611-a789-40ea-ac0e-fb3001ee39a9", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": - ["X64-120GB", "C2M", "START1-S", "VC1S", "C2L", "X64-15GB", "C2S", "X64-30GB", - "START1-L", "START1-M", "X64-60GB", "VC1L", "VC1M"]}, {"id": "93de8eae-535f-47bd-88fa-84af7b5eaf76", - "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", - "DEV1-L", "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", - "X64-30GB", "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", - "X64-120GB", "X64-60GB"]}, {"id": "7ad0b56b-1128-418d-9a5c-c006375e63ff", "zone": - "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", - "GP1-XL", "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", - "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", - "X64-60GB"]}, {"id": "1dc04f4a-6d85-4f21-b6e8-0de9ea3efabf", "zone": "fr-par-2", - "arch": "x86_64", "compatible_commercial_types": ["GP1-XS", "DEV1-L", "GP1-XL", - "C2S", "X64-15GB", "DEV1-XL", "C2L", "C2M", "VC1S", "START1-S", "X64-30GB", - "GP1-L", "GP1-M", "GP1-S", "START1-L", "START1-M", "VC1L", "VC1M", "X64-120GB", - "X64-60GB"]}], "creation_date": "2018-04-18T10:09:39.010195+00:00", "modification_date": - "2018-04-18T10:09:39.010195+00:00"}], "categories": ["instantapp"], "current_public_version": - "c9c02a9c-e072-48af-aefd-bf6be9028022", "creation_date": "2016-03-07T21:05:14.365925+00:00", - "modification_date": "2019-03-26T14:00:52.457272+00:00", "valid_until": null}, - {"id": "1576bf6b-f640-47f2-9117-968419d0546e", "name": "Rocky Linux 8", "label": - "rockylinux_8", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/rockylinux.png", - "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, - production-ready Linux.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "338b0e2a-83c9-4e4a-bfc9-facf1ddc00f2", - "name": "2022-01-24T12:08:51.640671+00:00", "local_images": [{"id": "fc0c7dd0-85a6-4af3-bf30-003d4eb58ebc", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "X64-30GB", "X64-60GB"]}, {"id": "75b23340-1d7f-4241-b28d-3773989ad833", "zone": + "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "35da23b9-440b-44e3-bad2-143b60502a7d", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "a07f9e29-f4a9-484a-a697-eb6a5828921c", "zone": - "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", "ENT1-L", - "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "a3235004-1193-414f-97fd-501877db6679", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "7381ea99-4d1c-4c5a-b591-777e2cbf42a4", "zone": - "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "998e2d98-54fe-4c27-a2c6-e82e4f8f9f28", "zone": - "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "fd6124df-8f3a-40a0-92f0-9dc393f73186", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "2d67dd4b-5617-4aaa-8381-3421d370c393", "zone": - "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS"]}], "creation_date": "2022-01-24T12:08:51.698131+00:00", - "modification_date": "2022-01-24T12:08:51.698131+00:00"}], "categories": ["distribution"], - "current_public_version": "338b0e2a-83c9-4e4a-bfc9-facf1ddc00f2", "creation_date": - "2021-06-25T10:16:16.254240+00:00", "modification_date": "2022-01-26T13:13:47.302603+00:00", - "valid_until": null}, {"id": "3f1b9623-71ba-4fe3-b994-27fcdaa850ba", "name": - "Ubuntu 20.04 Focal Fossa", "label": "ubuntu_focal", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu - Server helps you make the most of your infrastructure.", "organization": {"id": - "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "b7119610-137f-4da7-87b6-f35dcd664f07", "name": - "2022-01-21T08:40:28.059364+00:00", "local_images": [{"id": "487a813f-4de4-4fa8-bbb7-01c398ff99f2", + "X64-30GB", "X64-60GB"]}], "creation_date": "2022-11-17T16:50:41.148343+00:00", + "modification_date": "2022-11-17T16:50:41.148343+00:00"}], "categories": ["instantapp"], + "current_public_version": "c07d4bc9-b947-4945-a739-78b7cda73bfa", "creation_date": + "2016-03-07T21:04:57.667667+00:00", "modification_date": "2022-11-21T09:58:29.002209+00:00", + "valid_until": null}, {"id": "1576bf6b-f640-47f2-9117-968419d0546e", "name": + "Rocky Linux 8", "label": "rockylinux_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/rockylinux.png", + "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, + production-ready Linux.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "1df404de-3e28-4021-8c1c-8e167f1b390a", + "name": "2023-03-27T13:51:48.477663+00:00", "local_images": [{"id": "6b2282dc-51b1-4952-938e-8290e6365209", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "59bb9cf7-c0a2-4994-bc25-217dec852718", "zone": "par1", "arch": "arm64", "compatible_commercial_types": + ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", + "AMP2-C60"]}, {"id": "82d729dd-2a56-4f9a-b235-0344ed96350a", "zone": "pl-waw-2", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", + "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", + "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "58f3e5f0-0f66-4ee7-8e12-5c7f91945a3b", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "6fe7bac2-948e-43ef-9daa-6e3dab7e9d49", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "ab1a8029-524e-4d8c-a458-ddaf5a7685de", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "7c34c483-af23-47d6-9688-4fa5c9bd59d6", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "90a692e9-a7dc-4c10-b340-d2cb326c7e26", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "f93585c2-91c5-4371-b11d-22ded124b331", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "cc408539-d3c8-4a96-bb79-37987a52142b", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "119d3bc2-76f3-4664-bfeb-4c3b1f849f4d", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "d7bb4c0f-4510-4584-8fe1-36c2bf292f8e", "zone": - "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "881d7a33-4cfa-4046-b5cf-c33cb9c62fb6", "zone": "par1", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-27T13:51:48.645782+00:00", + "modification_date": "2023-03-27T13:51:48.645782+00:00"}], "categories": ["distribution"], + "current_public_version": "1df404de-3e28-4021-8c1c-8e167f1b390a", "creation_date": + "2021-06-25T10:16:16.254240+00:00", "modification_date": "2023-03-28T15:06:21.067890+00:00", + "valid_until": null}, {"id": "589c35a9-20ce-4ed9-92d7-16dc061be52b", "name": + "Rocky Linux 9", "label": "rockylinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/rockylinux.png", + "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, + production-ready Linux.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "af5d0eb1-1246-46b9-9769-e0efcc95ab1b", + "name": "2023-03-27T14:28:13.225003+00:00", "local_images": [{"id": "61392b4d-22bb-40da-acdd-b08d35213297", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "d0281001-81a9-4922-ad94-bac49e2dfd46", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "146f823e-7024-4ad1-a89f-e4a7da951d57", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "65deaabd-215d-4790-a324-7d2874f0af9d", "zone": "par1", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "3bdd781e-2dae-4880-a4ee-9135057424cb", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "e0aaf648-5767-4533-92b0-7bd87eaa5dbb", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f0f50b4a-16b7-48db-996d-a9c7a0cbff88", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "876933bd-7e2d-4f0f-8bf1-837a1e31ac65", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "b18e2393-d19b-4101-ba5b-226252d2b628", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "7c2d400e-b9b3-44c2-9391-1071de7db77f", "zone": "ams1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO"]}], "creation_date": "2023-03-27T14:28:13.417555+00:00", "modification_date": + "2023-03-27T14:28:13.417555+00:00"}], "categories": ["distribution"], "current_public_version": + "af5d0eb1-1246-46b9-9769-e0efcc95ab1b", "creation_date": "2022-08-24T09:26:33.639016+00:00", + "modification_date": "2023-03-28T15:09:22.188518+00:00", "valid_until": null}, + {"id": "3f1b9623-71ba-4fe3-b994-27fcdaa850ba", "name": "Ubuntu 20.04 Focal Fossa", + "label": "ubuntu_focal", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu + Server helps you make the most of your infrastructure.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "e85973e4-b50b-42cc-b5ce-16ab440c9886", "name": + "2023-03-24T09:19:43.870485+00:00", "local_images": [{"id": "d23d89d5-b0f8-4393-8554-5e9775c5d1b7", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO"]}, {"id": "2f5cdf98-817d-4fcc-9ecc-8b0fc8aed493", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", - "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", + "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "3120c5a1-0c24-4ae0-bcd3-86d1ca35a59c", "zone": "fr-par-3", - "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", "ENT1-L", "ENT1-M", - "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", + "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d90ce4cc-f7eb-406d-9bf6-87ca8265f55c", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "8ddfeedd-2fb0-4cc3-b6d4-47cdd8f4b23f", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "0951cd32-05d9-48a5-b26f-26e52b2cbec3", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "10d767ea-0965-4283-a345-546dfe6b812d", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS"]}], "creation_date": - "2022-01-21T08:40:28.108485+00:00", "modification_date": "2022-01-21T08:40:28.108485+00:00"}], - "categories": ["distribution"], "current_public_version": "b7119610-137f-4da7-87b6-f35dcd664f07", - "creation_date": "2020-02-17T15:50:48.980694+00:00", "modification_date": "2022-01-26T13:03:28.243818+00:00", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "7ae2282c-0a01-47c1-8338-c321c8326edb", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "c747046d-7c51-4a5a-b9bb-ef8336d974c4", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "448f073e-e8f0-4e2a-8e84-3bba5bd9a71e", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d16ad76d-5bbb-425b-b0c2-b00f43802517", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-24T09:19:44.058257+00:00", + "modification_date": "2023-03-24T09:19:44.058257+00:00"}], "categories": ["distribution"], + "current_public_version": "e85973e4-b50b-42cc-b5ce-16ab440c9886", "creation_date": + "2020-02-17T15:50:48.980694+00:00", "modification_date": "2023-03-28T14:57:19.746983+00:00", "valid_until": null}, {"id": "1123148c-7660-4cb2-9fd3-7b5b4896f72f", "name": - "Ubuntu 22.04 Jammy Jellyfish", "label": "ubuntu_jammy", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", + "Ubuntu 22.04 Jammy Jellyfish", "label": "ubuntu_jammy", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu Server helps you make the most of your infrastructure.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "b2f0c5f2-3256-482e-92f0-fffa34f93d3c", "name": - "2022-04-21T15:57:41.272452+00:00", "local_images": [{"id": "c49ab828-39a1-41d2-8ffe-8a66dc57ef4b", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", + System"}, "versions": [{"id": "9eeca005-d3cf-4845-b9ae-fa9c926038b8", "name": + "2023-03-23T16:23:08.656307+00:00", "local_images": [{"id": "06bf3f16-930e-48ba-b5c2-eacd1fad129a", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "11cad2e3-47ab-4dac-a62c-033d5a6f2b61", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "350a06b2-ecd0-48b9-ba9e-495a51345a68", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", + "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", + "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "fba44936-9f63-44b3-a723-9f17eff837e1", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "94299452-12c4-4d79-9c79-ced52967d75f", "zone": "par1", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "9abe9fff-dedf-4c8a-b879-0472faacd569", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "660b8a19-6061-4afb-8834-17b86f2179ae", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "c7463c52-b051-4359-9edf-132484baf46a", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "908ed483-edab-48ac-9309-2fdd0b26776e", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "6dbf3c88-3138-4ce6-841a-63ee5b059ce0", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], + "creation_date": "2023-03-23T16:23:08.853769+00:00", "modification_date": "2023-03-23T16:23:08.853769+00:00"}], + "categories": ["distribution"], "current_public_version": "9eeca005-d3cf-4845-b9ae-fa9c926038b8", + "creation_date": "2022-04-07T13:35:54.966630+00:00", "modification_date": "2023-03-28T14:55:21.771024+00:00", + "valid_until": null}, {"id": "b381b2bf-804a-4b12-91f6-9f4ff273462f", "name": + "Ubuntu Bionic", "label": "ubuntu_bionic", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu + Server helps you make the most of your infrastructure.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "ff84a566-a05f-4306-9e42-9f2304f9378f", "name": + "2023-03-28T12:43:02.328403+00:00", "local_images": [{"id": "d3b6ff11-34b3-4156-8850-d954fff9df13", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "2b2b1cf4-4af1-4a27-9753-e5a0e971d321", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", - "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "7ccc25a9-19b6-4d02-8dd1-96d318556962", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "a9d19ff4-ae29-417e-b1d4-6deb185922db", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "48585eba-5185-472a-97f4-5df64355ffe7", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "c913c95d-f416-4e91-87aa-7343bd4b6214", "zone": - "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "0f574e31-f0b9-45f6-a826-e26f3686b315", "zone": - "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "efcc25a8-7333-463f-b46e-b22b5d59a0eb", "zone": "ams1", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", - "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "8b660290-3f3c-45eb-a528-6b98fa78bfac", "zone": "nl-ams-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", - "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", - "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], - "creation_date": "2022-04-21T15:57:41.354587+00:00", "modification_date": "2022-04-21T15:57:41.354587+00:00"}], - "categories": ["distribution"], "current_public_version": "b2f0c5f2-3256-482e-92f0-fffa34f93d3c", - "creation_date": "2022-04-07T13:35:54.966630+00:00", "modification_date": "2022-04-21T16:12:29.566434+00:00", - "valid_until": null}, {"id": "e0808ca5-1e0a-4070-8aff-d2e49e9600c1", "name": - "Ubuntu Bionic ML 10.1", "label": "ubuntu_bionic_ml_10.1", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "description": "Ubuntu Bionic for Machine Learning 10.1", "organization": {"id": - "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "b8ef9d2a-a561-41e3-866e-d4c460e6ab1a", "name": - "2022-05-11T18:46:33.471537+00:00", "local_images": [{"id": "d1478661-7573-4508-b470-fa936898d45e", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}, - {"id": "9afa1441-9474-4815-8336-ba83a7206a55", "zone": "par1", "arch": "x86_64", - "compatible_commercial_types": ["RENDER-S"]}], "creation_date": "2022-05-11T18:46:33.571454+00:00", - "modification_date": "2022-05-11T18:46:33.571454+00:00"}], "categories": ["Machine - Learning"], "current_public_version": "b8ef9d2a-a561-41e3-866e-d4c460e6ab1a", - "creation_date": "2019-03-06T17:24:56.871317+00:00", "modification_date": "2022-05-11T19:09:37.068277+00:00", - "valid_until": null}, {"id": "7e48e55a-7b46-4e4f-b2d2-6b7316cdca8c", "name": - "Ubuntu Bionic ML 9.2", "label": "ubuntu_bionic_ml_9.2", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", - "description": "Ubuntu Bionic for Machine Learning 9.2", "organization": {"id": - "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "a99b7b24-fffe-4865-8cff-3e4f941e9679", "name": - "2022-05-11T18:46:34.452437+00:00", "local_images": [{"id": "207b70f3-7033-45ce-8db8-4724fdeb7fce", - "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S"]}, - {"id": "9a992904-72bd-46b9-9199-406804321874", "zone": "fr-par-2", "arch": "x86_64", - "compatible_commercial_types": ["RENDER-S"]}], "creation_date": "2022-05-11T18:46:34.523551+00:00", - "modification_date": "2022-05-11T18:46:34.523551+00:00"}], "categories": ["Machine - Learning"], "current_public_version": "a99b7b24-fffe-4865-8cff-3e4f941e9679", - "creation_date": "2019-03-06T17:24:29.909001+00:00", "modification_date": "2022-05-11T19:06:22.701292+00:00", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "96458957-9645-4d2a-8c2d-2efb1d20032c", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "a898d995-6011-4ce4-b802-8e8dfc4c871f", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "fc07e364-653b-4223-8e16-9f88e59e528e", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-03-28T12:43:02.430071+00:00", + "modification_date": "2023-03-28T12:43:02.430071+00:00"}], "categories": ["distribution"], + "current_public_version": "ff84a566-a05f-4306-9e42-9f2304f9378f", "creation_date": + "2018-04-27T14:07:25.221998+00:00", "modification_date": "2023-03-28T14:58:39.344565+00:00", "valid_until": null}, {"id": "4dcc771c-820f-405c-b663-4564bdc2ed56", "name": - "Ubuntu Focal GPU OS 11", "label": "ubuntu_focal_gpu_os_11", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/ubuntu.png", + "Ubuntu Focal GPU OS 11", "label": "ubuntu_focal_gpu_os_11", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", "description": "Ubuntu 20.04 Focal Fossa for Nvidia GPU and Machine Learning", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances - User Resources Build System"}, "versions": [{"id": "3b47fb82-a6fd-48d8-b7c5-54d29f0b97a9", - "name": "2022-05-06T10:25:13.330383+00:00", "local_images": [{"id": "1df6a6a9-14a5-403b-965a-23886ebda877", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", - "GPU-3070-S"]}, {"id": "a719ac9e-2702-403b-a4b5-95ecd4760b46", "zone": "par1", + User Resources Build System"}, "versions": [{"id": "5cff6a19-a5e0-46bb-bcbc-4942c836ca46", + "name": "2022-09-15T19:11:26.000595+00:00", "local_images": [{"id": "d22f119d-400b-4792-9d2c-985be3fe0a2b", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", + "GPU-3070-S"]}, {"id": "04ac2de1-2c99-4cf8-a533-ea92e7809d32", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", "GPU-3070-S"]}], - "creation_date": "2022-05-06T10:25:13.387960+00:00", "modification_date": "2022-05-06T10:25:13.387960+00:00"}], - "categories": ["Machine Learning"], "current_public_version": "3b47fb82-a6fd-48d8-b7c5-54d29f0b97a9", - "creation_date": "2021-11-30T12:37:45.971134+00:00", "modification_date": "2022-05-09T10:24:13.218182+00:00", + "creation_date": "2022-09-15T19:11:26.061606+00:00", "modification_date": "2022-09-15T19:11:26.061606+00:00"}], + "categories": ["Machine Learning"], "current_public_version": "5cff6a19-a5e0-46bb-bcbc-4942c836ca46", + "creation_date": "2021-11-30T12:37:45.971134+00:00", "modification_date": "2022-09-19T14:10:37.648361+00:00", + "valid_until": null}, {"id": "a6c68db3-5613-4b08-acaa-2c92d8baf26c", "name": + "Ubuntu Jammy GPU OS 12", "label": "ubuntu_jammy_gpu_os_12", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu 22.04 Jammy Jellyfish for Nvidia GPU and Machine Learning + (GPU passthrough)", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "acac98cc-db99-47f7-882c-693e895d8b21", + "name": "2023-02-15T09:47:38.749339+00:00", "local_images": [{"id": "7dbfc0d2-0699-4e38-8664-45971a24af33", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", + "GPU-3070-S"]}, {"id": "819cb4c0-b0d3-475e-a18a-014f1998853c", "zone": "fr-par-2", + "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", "GPU-3070-S"]}], + "creation_date": "2023-02-15T09:47:38.843433+00:00", "modification_date": "2023-02-15T09:47:38.843433+00:00"}], + "categories": ["Machine Learning"], "current_public_version": "acac98cc-db99-47f7-882c-693e895d8b21", + "creation_date": "2023-01-20T14:30:57.496021+00:00", "modification_date": "2023-02-15T10:00:58.861108+00:00", "valid_until": null}, {"id": "215a50f9-0ba8-4e9c-a4e7-10caf50e3586", "name": - "WordPress", "label": "wordpress", "logo": "https://marketplace-logos.s3.nl-ams.scw.cloud/wordpress.png", + "WordPress", "label": "wordpress", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/wordpress.png", "description": "WordPress is the most popular web software you can use to create a beautiful website or blog.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "f04cd751-50fa-459f-b00c-e15a9ae71bc1", - "name": "2022-02-16T14:19:23.006699+00:00", "local_images": [{"id": "28f3a3b7-42fa-4d86-bf0b-d08f376cef15", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", - "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", - "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "5c9052c3-8138-40d9-97e3-088e131f4388", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "49917541-e725-478f-9ed3-866bb71215fc", + "name": "2022-11-17T16:54:23.010448+00:00", "local_images": [{"id": "8640db59-ce11-466f-9124-cfe85e57c03c", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", - "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "c28c8c9d-1b46-4712-8aba-3f2737dda564", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "844da841-0644-491d-ae39-1ea1fcbd8385", "zone": + "X64-30GB", "X64-60GB"]}, {"id": "5affe637-67dd-475e-aaa3-eb4a11530270", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "e28a34cf-3118-47bf-9c5c-40419ce519d5", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "60e8d7b5-1d50-4934-a1fb-708025031d48", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "6d79accc-3d62-4ae1-98c7-20f6f1164438", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "1b34b137-338c-44d6-bf79-144f7d061fa8", "zone": - "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "5d20771a-2476-4f44-a0ba-1961a5ff02e3", "zone": "ams1", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", - "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB"]}, {"id": "3d0dfb5a-a597-4691-97f4-445c4293942f", "zone": "nl-ams-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", - "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", - "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS"]}], "creation_date": "2022-02-16T14:19:23.235951+00:00", - "modification_date": "2022-02-16T14:19:23.235951+00:00"}], "categories": ["instantapp"], - "current_public_version": "f04cd751-50fa-459f-b00c-e15a9ae71bc1", "creation_date": - "2016-03-07T21:03:59.783534+00:00", "modification_date": "2022-02-17T08:32:33.217413+00:00", + "X64-30GB", "X64-60GB"]}, {"id": "6c17a18f-ea38-488f-bd91-76ca33e4e11f", "zone": + "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", + "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", + "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": + "2022-11-17T16:54:23.150832+00:00", "modification_date": "2022-11-17T16:54:23.150832+00:00"}], + "categories": ["instantapp"], "current_public_version": "49917541-e725-478f-9ed3-866bb71215fc", + "creation_date": "2016-03-07T21:03:59.783534+00:00", "modification_date": "2022-11-21T09:58:15.549240+00:00", "valid_until": null}]}' headers: Content-Length: - - "90230" + - "98384" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 06 Jun 2022 14:32:07 GMT + - Thu, 13 Apr 2023 07:41:50 GMT Link: - ; rel="last" Server: @@ -1130,9 +1228,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - faaa1629-5fec-4fd9-bea5-a4e385a5bb72 + - 8ddedba2-ca57-4556-8905-1ff90ea977af X-Total-Count: - - "28" + - "22" status: 200 OK code: 200 duration: "" @@ -1141,27 +1239,26 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.18.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/881d7a33-4cfa-4046-b5cf-c33cb9c62fb6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/834a6c39-41a9-4b92-a3d4-44dfafc47d6b method: GET response: - body: '{"image": {"id": "881d7a33-4cfa-4046-b5cf-c33cb9c62fb6", "name": "Ubuntu + body: '{"image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "deb50fd4-209d-4fe2-9e39-1d2c85912133", - "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "unified", "size": - 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2022-01-21T08:38:33.552838+00:00", "modification_date": "2022-01-21T08:38:33.552838+00:00", - "default_bootscript": null, "from_server": null, "state": "available", "tags": - [], "zone": "fr-par-1"}}' + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", + "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "623" + - "614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 06 Jun 2022 14:32:07 GMT + - Thu, 13 Apr 2023 07:41:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1171,7 +1268,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1e7905c-f21b-4f71-8213-3f7d162cc635 + - d6502cb1-7714-4f44-9b20-cea49ca1d836 status: 200 OK code: 200 duration: "" @@ -1180,119 +1277,137 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.18.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.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, - "ram": 8589934592, "gpu": null, "volumes_constraint": {"min_size": 0, "max_size": + "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 800000000000}}, "baremetal": false, "monthly_price": 28.8, "hourly_price": 0.04, - "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + 800000000000}}, "baremetal": false, "monthly_price": 36.1496, "hourly_price": + 0.04952, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": - 4294967296, "gpu": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, + 4294967296, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, - "baremetal": false, "monthly_price": 14.4, "hourly_price": 0.02, "capabilities": + "baremetal": false, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 300000000}]}}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 2147483648, "gpu": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, - "baremetal": false, "monthly_price": 7.2, "hourly_price": 0.01, "capabilities": + "baremetal": false, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": - 12884901888, "gpu": null, "volumes_constraint": {"min_size": 0, "max_size": - 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 800000000000}}, "baremetal": false, "monthly_price": 43.2, "hourly_price": 0.06, - "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": - "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + 12884901888, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "ENT1-2XL": {"alt_names": [], "arch": "x86_64", "ncpus": 96, - "ram": 412316860416, "gpu": null, "volumes_constraint": {"min_size": 0, "max_size": + "ram": 412316860416, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": - false, "monthly_price": 2277.6, "hourly_price": 3.12, "capabilities": {"boot_types": + false, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 20000000000}]}}, "ENT1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 759.2, "hourly_price": 1.04, "capabilities": {"boot_types": ["rescue", "local"], + 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}}, "ENT1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 379.6, "hourly_price": 0.52, "capabilities": {"boot_types": ["rescue", "local"], + 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 3200000000}]}}, "ENT1-S": - {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": null, + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 189.8, "hourly_price": 0.26, "capabilities": {"boot_types": ["rescue", "local"], + 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}}, "ENT1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 1518.4, "hourly_price": 2.08, "capabilities": {"boot_types": ["rescue", "local"], + 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}}, "GP1-L": - {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": - null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 475.2, "hourly_price": 0.66, "capabilities": {"boot_types": - ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}}, "ENT1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "ENT1-XXS": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "GP1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": + 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 5000000000}]}}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": - null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 244.8, "hourly_price": 0.34, "capabilities": {"boot_types": + false, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 1500000000}]}}, "GP1-S": - {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": null, + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 122.4, "hourly_price": 0.17, "capabilities": {"boot_types": + false, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "GP1-VIZ": - {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": null, + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": 72.0, "hourly_price": 0.1, "capabilities": {"boot_types": @@ -1302,24 +1417,24 @@ interactions: 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": - null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 1008.0, "hourly_price": 1.4, "capabilities": {"boot_types": + false, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 10000000000}]}}, "GP1-XS": - {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": null, + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 60.48, "hourly_price": 0.084, "capabilities": {"boot_types": + false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "PLAY2-MICRO": - {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": null, + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["rescue", "local"], @@ -1328,7 +1443,7 @@ interactions: true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "PLAY2-NANO": - {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": null, + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["rescue", "local"], @@ -1337,7 +1452,7 @@ interactions: true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "PLAY2-PICO": - {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": null, + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["rescue", "local"], @@ -1347,45 +1462,45 @@ interactions: "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 641.67, "hourly_price": 0.879, "capabilities": {"boot_types": ["rescue", "local"], + 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 6000000000}]}}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": - null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 321.2, "hourly_price": 0.44, "capabilities": {"boot_types": ["rescue", "local"], + 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 3000000000}]}}, "PRO2-S": - {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": null, + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 161.33, "hourly_price": 0.221, "capabilities": {"boot_types": ["rescue", "local"], + 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 1500000000}]}}, "PRO2-XS": - {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": null, + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 81.76, "hourly_price": 0.112, "capabilities": {"boot_types": ["rescue", "local"], + 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 700000000}]}}, "PRO2-XXS": - {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": null, + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 41.61, "hourly_price": 0.057, "capabilities": {"boot_types": ["rescue", "local"], + 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, @@ -1394,125 +1509,125 @@ interactions: {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 720.0, "hourly_price": 1.0, "capabilities": {"boot_types": + false, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": ["local", "rescue"], "default_boot_type": "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 1000000000}]}}, "STARDUST1-S": - {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": null, + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 1.8, "hourly_price": 0.0025, "capabilities": {"boot_types": + false, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}}, "START1-L": - {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": null, + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, - "baremetal": false, "monthly_price": 23.04, "hourly_price": 0.032, "capabilities": + "baremetal": false, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + true, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "START1-M": {"alt_names": [], "arch": - "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": null, "volumes_constraint": - {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": - false, "monthly_price": 11.52, "hourly_price": 0.016, "capabilities": {"boot_types": - ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "private_network": 0}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": null, "sum_internet_bandwidth": + "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": + 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 300000000}]}}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 2147483648, "gpu": null, "volumes_constraint": {"min_size": 50000000000, "max_size": + 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "baremetal": false, "monthly_price": 5.76, "hourly_price": 0.008, - "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + 200000000000}}, "baremetal": false, "monthly_price": 7.738, "hourly_price": + 0.0106, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, - "block_storage": false, "private_network": 0}, "network": {"ipv6_support": true, - "sum_internal_bandwidth": null, "sum_internet_bandwidth": 200000000, "interfaces": + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "START1-XS": - {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": null, + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "volumes_constraint": {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": - false, "monthly_price": 2.88, "hourly_price": 0.004, "capabilities": {"boot_types": + false, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "private_network": 0}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": null, "sum_internet_bandwidth": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 100000000}]}}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": - 6, "ram": 8589934592, "gpu": null, "volumes_constraint": {"min_size": 200000000000, + 6, "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "baremetal": false, "monthly_price": 14.4, "hourly_price": - 0.02, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "max_size": 200000000000}}, "baremetal": false, "monthly_price": 18.0164, "hourly_price": + 0.02468, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, - "block_storage": false, "private_network": 0}, "network": {"ipv6_support": true, - "sum_internal_bandwidth": null, "sum_internet_bandwidth": 200000000, "interfaces": + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "VC1M": {"alt_names": - ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": null, "volumes_constraint": + ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "volumes_constraint": {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": - false, "monthly_price": 8.64, "hourly_price": 0.012, "capabilities": {"boot_types": + false, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "private_network": 0}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": null, "sum_internet_bandwidth": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": - 2, "ram": 2147483648, "gpu": null, "volumes_constraint": {"min_size": 50000000000, + 2, "ram": 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 50000000000, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, - "max_size": 200000000000}}, "baremetal": false, "monthly_price": 4.32, "hourly_price": - 0.006, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "max_size": 200000000000}}, "baremetal": false, "monthly_price": 6.2926, "hourly_price": + 0.00862, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, - "block_storage": false, "private_network": 0}, "network": {"ipv6_support": true, - "sum_internal_bandwidth": null, "sum_internet_bandwidth": 200000000, "interfaces": + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": - null, "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + 0, "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, - "baremetal": false, "monthly_price": 259.2, "hourly_price": 0.36, "capabilities": + "baremetal": false, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + true, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 1000000000}]}}, "X64-15GB": {"alt_names": [], "arch": - "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": null, "volumes_constraint": - {"min_size": 200000000000, "max_size": 200000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": - false, "monthly_price": 36.0, "hourly_price": 0.05, "capabilities": {"boot_types": - ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": false, "private_network": 0}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": null, "sum_internet_bandwidth": + "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "volumes_constraint": {"min_size": + 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": + 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 250000000}]}}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": - 32212254720, "gpu": null, "volumes_constraint": {"min_size": 300000000000, "max_size": + 32212254720, "gpu": 0, "volumes_constraint": {"min_size": 300000000000, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 200000000000}}, "baremetal": false, "monthly_price": 72.0, "hourly_price": 0.1, - "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + 200000000000}}, "baremetal": false, "monthly_price": 86.9138, "hourly_price": + 0.11906, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, - "block_storage": false, "private_network": 0}, "network": {"ipv6_support": true, - "sum_internal_bandwidth": null, "sum_internet_bandwidth": 500000000, "interfaces": + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": - null, "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + 0, "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, - "baremetal": false, "monthly_price": 129.6, "hourly_price": 0.18, "capabilities": + "baremetal": false, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - false, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - null, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + true, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": 1000000000}]}}}}' headers: Content-Length: - - "26564" + - "28044" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 06 Jun 2022 14:32:07 GMT + - Thu, 13 Apr 2023 07:41:50 GMT Link: - ; rel="last" Server: @@ -1524,38 +1639,38 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de00de2b-28d2-4b0b-999c-2448447851b8 + - f9b4f01a-9e05-4813-9b9f-621063f3a252 X-Total-Count: - - "36" + - "38" status: 200 OK code: 200 duration: "" - request: - body: '{"project":"951df375-e094-4d26-97c1-ba548eeb9c42"}' + body: '{"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.18.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"id": "15312268-a2e4-48d2-bc7a-d86db2f7f493", "address": "51.158.102.193", - "reverse": null, "server": null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", - "project": "951df375-e094-4d26-97c1-ba548eeb9c42", "zone": "fr-par-1", "tags": + body: '{"ip": {"id": "f71c779a-c8de-4690-b0cc-294e73808b15", "address": "51.15.225.123", + "reverse": null, "server": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: - - "255" + - "254" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 06 Jun 2022 14:32:07 GMT + - Thu, 13 Apr 2023 07:41:51 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/15312268-a2e4-48d2-bc7a-d86db2f7f493 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f71c779a-c8de-4690-b0cc-294e73808b15 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1565,62 +1680,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd63f34e-5bc8-42a4-821e-a58339cdfbfb + - bd7310a6-d392-4803-8bea-21d71ea44e28 status: 201 Created code: 201 duration: "" - request: - body: '{"name":"cli-srv-optimistic-banzai","commercial_type":"DEV1-S","image":"881d7a33-4cfa-4046-b5cf-c33cb9c62fb6","public_ip":"15312268-a2e4-48d2-bc7a-d86db2f7f493","boot_type":"local","project":"951df375-e094-4d26-97c1-ba548eeb9c42"}' + body: '{"name":"cli-srv-charming-burnell","commercial_type":"DEV1-S","image":"834a6c39-41a9-4b92-a3d4-44dfafc47d6b","public_ip":"f71c779a-c8de-4690-b0cc-294e73808b15","boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.18.3; darwin; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: - body: '{"server": {"id": "31352775-95db-4bc4-8d17-aa6a6efd7ec1", "name": "cli-srv-optimistic-banzai", + body: '{"server": {"id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", "name": "cli-srv-charming-burnell", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", - "hostname": "cli-srv-optimistic-banzai", "image": {"id": "881d7a33-4cfa-4046-b5cf-c33cb9c62fb6", + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-charming-burnell", "image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "deb50fd4-209d-4fe2-9e39-1d2c85912133", - "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "unified", "size": - 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2022-01-21T08:38:33.552838+00:00", "modification_date": "2022-01-21T08:38:33.552838+00:00", - "default_bootscript": null, "from_server": null, "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "c152dee7-166a-4490-8984-082340e53fed", - "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "export_uri": - null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", - "server": {"id": "31352775-95db-4bc4-8d17-aa6a6efd7ec1", "name": "cli-srv-optimistic-banzai"}, - "size": 20000000000, "state": "available", "creation_date": "2022-06-06T14:32:07.955065+00:00", - "modification_date": "2022-06-06T14:32:07.955065+00:00", "tags": [], "zone": + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", + "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "ff810ec8-a504-4fb5-ba3e-f610b00cd878", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, + "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", "name": "cli-srv-charming-burnell"}, + "size": 20000000000, "state": "available", "creation_date": "2023-04-13T07:41:51.842447+00:00", + "modification_date": "2023-04-13T07:41:51.842447+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": {"id": "15312268-a2e4-48d2-bc7a-d86db2f7f493", "address": "51.158.102.193", + "", "public_ip": {"id": "f71c779a-c8de-4690-b0cc-294e73808b15", "address": "51.15.225.123", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2022-06-06T14:32:07.955065+00:00", - "modification_date": "2022-06-06T14:32:07.955065+00:00", "bootscript": {"id": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-04-13T07:41:51.842447+00:00", + "modification_date": "2023-04-13T07:41:51.842447+00:00", "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - true, "zone": "fr-par-1"}, "security_group": {"id": "54e2d5f6-d79c-44cc-b19f-613699b9cc7e", + true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "2662" + - "2639" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 06 Jun 2022 14:32:08 GMT + - Thu, 13 Apr 2023 07:41:52 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31352775-95db-4bc4-8d17-aa6a6efd7ec1 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fdfb455b-280c-4bd2-bbd2-34dfab08dac3 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1630,34 +1745,35 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be5c5796-dd6a-4284-ba09-3f8d64df164d + - 3c1bd9f1-8a58-499b-b715-927dba26ec4d status: 201 Created code: 201 duration: "" - request: - body: '{"private_network_id":"085acd2d-1207-45ff-8001-7c1075f42b06"}' + body: '{"private_network_id":"1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.18.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31352775-95db-4bc4-8d17-aa6a6efd7ec1/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fdfb455b-280c-4bd2-bbd2-34dfab08dac3/private_nics method: POST response: - body: '{"private_nic": {"id": "9ab20d19-820c-4c01-ac1b-e59bb7ce4968", "private_network_id": - "085acd2d-1207-45ff-8001-7c1075f42b06", "server_id": "31352775-95db-4bc4-8d17-aa6a6efd7ec1", - "mac_address": "02:00:00:01:30:17", "state": "available", "creation_date": "2022-06-06T14:32:08.514035+00:00", - "modification_date": "2022-06-06T14:32:08.514035+00:00", "zone": "fr-par-1"}}' + body: '{"private_nic": {"id": "9a367c4e-1fd7-434f-8264-e904e5e4482c", "private_network_id": + "1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1", "server_id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", + "mac_address": "02:00:00:12:b4:63", "state": "available", "creation_date": "2023-04-13T07:41:52.359510+00:00", + "modification_date": "2023-04-13T07:41:52.359510+00:00", "zone": "fr-par-1", + "tags": []}}' headers: Content-Length: - - "366" + - "378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 06 Jun 2022 14:32:08 GMT + - Thu, 13 Apr 2023 07:41:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1667,7 +1783,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34af924c-dcaa-4f89-8172-8cd48ddb4937 + - 8f2cdab8-6329-4219-9df2-f4aa6b76586e status: 201 Created code: 201 duration: "" @@ -1676,20 +1792,23 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.18.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/085acd2d-1207-45ff-8001-7c1075f42b06 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1 method: GET response: - body: '{"id":"085acd2d-1207-45ff-8001-7c1075f42b06","name":"cli-pn-frosty-bouman","tags":[],"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2022-06-06T14:32:06.645703Z","updated_at":"2022-06-06T14:32:06.645703Z","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","subnets":[],"zone":"fr-par-1"}' + body: '{"id":"1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1", "name":"cli-pn-recursing-clarke", + "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-04-13T07:41:50.374622Z", + "updated_at":"2023-04-13T07:41:50.374622Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "subnets":["172.16.184.0/22", "fd46:78ab:30b8:ab9b::/64"], "zone":"fr-par-1"}' headers: Content-Length: - - "311" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 06 Jun 2022 14:32:08 GMT + - Thu, 13 Apr 2023 07:41:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1699,7 +1818,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 579544b2-862d-4c7a-a1e6-dce821dbdf30 + - 8dd605a3-7c1a-49d1-84e6-0820eaffa9f4 status: 200 OK code: 200 duration: "" @@ -1708,54 +1827,54 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.18.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&page=1&private_network=085acd2d-1207-45ff-8001-7c1075f42b06 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&page=1&private_network=1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1 method: GET response: - body: '{"servers": [{"id": "31352775-95db-4bc4-8d17-aa6a6efd7ec1", "name": "cli-srv-optimistic-banzai", + body: '{"servers": [{"id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", "name": "cli-srv-charming-burnell", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", - "hostname": "cli-srv-optimistic-banzai", "image": {"id": "881d7a33-4cfa-4046-b5cf-c33cb9c62fb6", + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-charming-burnell", "image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "deb50fd4-209d-4fe2-9e39-1d2c85912133", - "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "unified", "size": - 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2022-01-21T08:38:33.552838+00:00", "modification_date": "2022-01-21T08:38:33.552838+00:00", - "default_bootscript": null, "from_server": null, "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "c152dee7-166a-4490-8984-082340e53fed", - "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "export_uri": - null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", - "server": {"id": "31352775-95db-4bc4-8d17-aa6a6efd7ec1", "name": "cli-srv-optimistic-banzai"}, - "size": 20000000000, "state": "available", "creation_date": "2022-06-06T14:32:07.955065+00:00", - "modification_date": "2022-06-06T14:32:07.955065+00:00", "tags": [], "zone": + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", + "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "ff810ec8-a504-4fb5-ba3e-f610b00cd878", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, + "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", "name": "cli-srv-charming-burnell"}, + "size": 20000000000, "state": "available", "creation_date": "2023-04-13T07:41:51.842447+00:00", + "modification_date": "2023-04-13T07:41:51.842447+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": {"id": "15312268-a2e4-48d2-bc7a-d86db2f7f493", "address": "51.158.102.193", + "", "public_ip": {"id": "f71c779a-c8de-4690-b0cc-294e73808b15", "address": "51.15.225.123", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2022-06-06T14:32:07.955065+00:00", - "modification_date": "2022-06-06T14:32:07.955065+00:00", "bootscript": {"id": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-04-13T07:41:51.842447+00:00", + "modification_date": "2023-04-13T07:41:51.842447+00:00", "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - true, "zone": "fr-par-1"}, "security_group": {"id": "54e2d5f6-d79c-44cc-b19f-613699b9cc7e", + true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": - ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "9ab20d19-820c-4c01-ac1b-e59bb7ce4968", - "private_network_id": "085acd2d-1207-45ff-8001-7c1075f42b06", "server_id": "31352775-95db-4bc4-8d17-aa6a6efd7ec1", - "mac_address": "02:00:00:01:30:17", "state": "available", "creation_date": "2022-06-06T14:32:08.514035+00:00", - "modification_date": "2022-06-06T14:32:08.514035+00:00", "zone": "fr-par-1"}], - "zone": "fr-par-1"}]}' + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "9a367c4e-1fd7-434f-8264-e904e5e4482c", + "private_network_id": "1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1", "server_id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", + "mac_address": "02:00:00:12:b4:63", "state": "available", "creation_date": "2023-04-13T07:41:52.359510+00:00", + "modification_date": "2023-04-13T07:41:52.749342+00:00", "zone": "fr-par-1", + "tags": []}], "zone": "fr-par-1"}]}' headers: Content-Length: - - "3014" + - "3003" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 06 Jun 2022 14:32:08 GMT + - Thu, 13 Apr 2023 07:41:53 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -1766,7 +1885,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04969ea7-94b6-46f8-abee-ec08875deefc + - 72a79d5c-4ca0-483d-8a80-d72d20e0fb7a X-Total-Count: - "1" status: 200 OK @@ -1777,52 +1896,212 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.18.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31352775-95db-4bc4-8d17-aa6a6efd7ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&page=1&private_network_id=1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1 + method: GET + response: + body: '{"server_private_networks":[], "total_count":0}' + headers: + Content-Length: + - "47" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:41:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ddb70f39-38bd-4af4-b02b-312bca76ebf5 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?order_by=created_at_asc + method: GET + response: + body: '{"lbs":[], "total_count":0}' + headers: + Content-Length: + - "27" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:41:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 84825ca4-f14a-4e3d-8a5d-0626de79a2eb + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances?order_by=created_at_asc&page=1 + method: GET + response: + body: '{"instances":[], "total_count":0}' + headers: + Content-Length: + - "33" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:41:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 79d3227a-cc8a-41b4-92c1-1eca0d223ee3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters?order_by=created_at_asc&page=1 + method: GET + response: + body: '{"clusters":[], "total_count":0}' + headers: + Content-Length: + - "32" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:41:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5f31b506-f633-4f3c-9930-29504790debc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + body: '{"gateways":[], "total_count":0}' + headers: + Content-Length: + - "32" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 13 Apr 2023 07:41:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 21917878-637a-47d1-91ca-b2d22a72b725 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fdfb455b-280c-4bd2-bbd2-34dfab08dac3 method: GET response: - body: '{"server": {"id": "31352775-95db-4bc4-8d17-aa6a6efd7ec1", "name": "cli-srv-optimistic-banzai", + body: '{"server": {"id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", "name": "cli-srv-charming-burnell", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": - "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", - "hostname": "cli-srv-optimistic-banzai", "image": {"id": "881d7a33-4cfa-4046-b5cf-c33cb9c62fb6", + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-charming-burnell", "image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "deb50fd4-209d-4fe2-9e39-1d2c85912133", - "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "unified", "size": - 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": - "2022-01-21T08:38:33.552838+00:00", "modification_date": "2022-01-21T08:38:33.552838+00:00", - "default_bootscript": null, "from_server": null, "state": "available", "tags": - [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "c152dee7-166a-4490-8984-082340e53fed", - "name": "ubuntu_20.04_focal_fossa:volume-0", "volume_type": "l_ssd", "export_uri": - null, "organization": "951df375-e094-4d26-97c1-ba548eeb9c42", "project": "951df375-e094-4d26-97c1-ba548eeb9c42", - "server": {"id": "31352775-95db-4bc4-8d17-aa6a6efd7ec1", "name": "cli-srv-optimistic-banzai"}, - "size": 20000000000, "state": "available", "creation_date": "2022-06-06T14:32:07.955065+00:00", - "modification_date": "2022-06-06T14:32:07.955065+00:00", "tags": [], "zone": + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", + "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "ff810ec8-a504-4fb5-ba3e-f610b00cd878", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, + "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", "name": "cli-srv-charming-burnell"}, + "size": 20000000000, "state": "available", "creation_date": "2023-04-13T07:41:51.842447+00:00", + "modification_date": "2023-04-13T07:41:51.842447+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": {"id": "15312268-a2e4-48d2-bc7a-d86db2f7f493", "address": "51.158.102.193", + "", "public_ip": {"id": "f71c779a-c8de-4690-b0cc-294e73808b15", "address": "51.15.225.123", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - false, "enable_ipv6": false, "private_ip": null, "creation_date": "2022-06-06T14:32:07.955065+00:00", - "modification_date": "2022-06-06T14:32:07.955065+00:00", "bootscript": {"id": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-04-13T07:41:51.842447+00:00", + "modification_date": "2023-04-13T07:41:51.842447+00:00", "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - true, "zone": "fr-par-1"}, "security_group": {"id": "54e2d5f6-d79c-44cc-b19f-613699b9cc7e", + true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": - ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "9ab20d19-820c-4c01-ac1b-e59bb7ce4968", - "private_network_id": "085acd2d-1207-45ff-8001-7c1075f42b06", "server_id": "31352775-95db-4bc4-8d17-aa6a6efd7ec1", - "mac_address": "02:00:00:01:30:17", "state": "available", "creation_date": "2022-06-06T14:32:08.514035+00:00", - "modification_date": "2022-06-06T14:32:08.514035+00:00", "zone": "fr-par-1"}], - "zone": "fr-par-1"}}' + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "9a367c4e-1fd7-434f-8264-e904e5e4482c", + "private_network_id": "1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1", "server_id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", + "mac_address": "02:00:00:12:b4:63", "state": "available", "creation_date": "2023-04-13T07:41:52.359510+00:00", + "modification_date": "2023-04-13T07:41:53.085687+00:00", "zone": "fr-par-1", + "tags": []}], "zone": "fr-par-1"}}' headers: Content-Length: - - "3011" + - "3000" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 06 Jun 2022 14:32:09 GMT + - Thu, 13 Apr 2023 07:41:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1832,7 +2111,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c659388-7145-4ac8-8c1f-d6a57c011870 + - b14cea87-e784-4c4b-bf68-a84034e0b398 status: 200 OK code: 200 duration: "" @@ -1841,8 +2120,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.18.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31352775-95db-4bc4-8d17-aa6a6efd7ec1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fdfb455b-280c-4bd2-bbd2-34dfab08dac3 method: DELETE response: body: "" @@ -1850,7 +2129,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Mon, 06 Jun 2022 14:32:09 GMT + - Thu, 13 Apr 2023 07:41:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1860,7 +2139,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84ad1439-4d2c-41ca-8a7c-9a519c43538c + - eea54596-54aa-4672-ac1e-d436bff7e811 status: 204 No Content code: 204 duration: "" @@ -1869,8 +2148,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.18.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c152dee7-166a-4490-8984-082340e53fed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ff810ec8-a504-4fb5-ba3e-f610b00cd878 method: DELETE response: body: "" @@ -1878,7 +2157,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Mon, 06 Jun 2022 14:32:09 GMT + - Thu, 13 Apr 2023 07:41:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1888,7 +2167,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d3909df-a165-4d45-823d-158539da0e5e + - 05b3e1ff-f8a8-454d-8d37-9be853adb393 status: 204 No Content code: 204 duration: "" @@ -1897,8 +2176,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.18.3; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/085acd2d-1207-45ff-8001-7c1075f42b06 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1 method: DELETE response: body: "" @@ -1908,7 +2187,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 06 Jun 2022 14:32:09 GMT + - Thu, 13 Apr 2023 07:41:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1918,7 +2197,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efac28d1-c4ac-437f-b0aa-eb2dbef0453c + - 82d50ead-7189-4224-a585-994f3f716afa status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.golden b/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.golden index fa7490f734..ba0b723469 100644 --- a/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.golden +++ b/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.golden @@ -1,34 +1,59 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID 085acd2d-1207-45ff-8001-7c1075f42b06 -Name cli-pn-frosty-bouman -OrganizationID 951df375-e094-4d26-97c1-ba548eeb9c42 -ProjectID 951df375-e094-4d26-97c1-ba548eeb9c42 +ID 1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1 +Name cli-pn-recursing-clarke +OrganizationID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 +ProjectID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 Zone fr-par-1 CreatedAt few seconds ago UpdatedAt few seconds ago +Subnets.0 172.16.184.0/22 +Subnets.1 fd46:78ab:30b8:ab9b::/64 -Servers: -ID NAME STATE NIC ID MAC ADDRESS -31352775-95db-4bc4-8d17-aa6a6efd7ec1 cli-srv-optimistic-banzai archived 9ab20d19-820c-4c01-ac1b-e59bb7ce4968 02:00:00:01:30:17 +InstanceServers: +ID NAME STATE NIC ID MAC ADDRESS +fdfb455b-280c-4bd2-bbd2-34dfab08dac3 cli-srv-charming-burnell archived 9a367c4e-1fd7-434f-8264-e904e5e4482c 02:00:00:12:b4:63 + +BaremetalServers: +ID NAME STATE BAREMETAL NETWORK ID + +LBs: +ID NAME STATE + +RdbInstances: +ID NAME STATE ENDPOINT ID + +RedisClusters: +ID NAME STATE ENDPOINT ID + +Gateways: +ID NAME STATE GATEWAY NETWORK ID 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "id": "085acd2d-1207-45ff-8001-7c1075f42b06", - "name": "cli-pn-frosty-bouman", - "organization_id": "951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id": "951df375-e094-4d26-97c1-ba548eeb9c42", + "id": "1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1", + "name": "cli-pn-recursing-clarke", + "organization_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", "tags": [], "created_at": "1970-01-01T00:00:00.0Z", "updated_at": "1970-01-01T00:00:00.0Z", - "subnets": [], - "servers": [ + "subnets": [ + "172.16.184.0/22", + "fd46:78ab:30b8:ab9b::/64" + ], + "instance_servers": [ { - "id": "31352775-95db-4bc4-8d17-aa6a6efd7ec1", - "name": "cli-srv-optimistic-banzai", + "id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", + "name": "cli-srv-charming-burnell", "state": "stopped", - "nic_id": "9ab20d19-820c-4c01-ac1b-e59bb7ce4968", - "mac": "02:00:00:01:30:17" + "nic_id": "9a367c4e-1fd7-434f-8264-e904e5e4482c", + "mac": "02:00:00:12:b4:63" } - ] + ], + "baremetal_servers": null, + "lbs": null, + "rdb_instances": null, + "redis_clusters": null, + "gateways": null } From c540e01e5810ab762d931e26e64c7347f5333281 Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Thu, 13 Apr 2023 09:50:33 +0200 Subject: [PATCH 2/4] lint --- internal/namespaces/vpc/v1/helper_test.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/internal/namespaces/vpc/v1/helper_test.go b/internal/namespaces/vpc/v1/helper_test.go index e931b6eb74..d0f2337f46 100644 --- a/internal/namespaces/vpc/v1/helper_test.go +++ b/internal/namespaces/vpc/v1/helper_test.go @@ -1,8 +1,6 @@ package vpc import ( - "fmt" - "github.com/scaleway/scaleway-cli/v2/internal/core" ) @@ -61,7 +59,7 @@ func deleteLB() core.AfterFunc { func createRdbInstance() core.BeforeFunc { return core.ExecStoreBeforeCmd( "RDB", - fmt.Sprintf("scw rdb instance create node-type=DB-DEV-S is-ha-cluster=false name=cli-test engine=PostgreSQL-12 user-name=foobar password={4xdl*#QOoP+&3XRkGA)] init-endpoints.0.private-network.private-network-id={{ .PN.ID }} init-endpoints.0.private-network.service-ip=192.168.0.1/24 --wait"), + "scw rdb instance create node-type=DB-DEV-S is-ha-cluster=false name=cli-test engine=PostgreSQL-12 user-name=foobar password={4xdl*#QOoP+&3XRkGA)] init-endpoints.0.private-network.private-network-id={{ .PN.ID }} init-endpoints.0.private-network.service-ip=192.168.0.1/24 --wait", ) } From bb25e3699bf17d85ec0c6cd8eb0004776673c3ce Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Fri, 12 May 2023 14:32:56 +0200 Subject: [PATCH 3/4] fix --- .../vpc/v1/custom_private_network.go | 404 +-- .../vpc/v1/custom_private_network_test.go | 4 +- ...get-private-network-multiple.cassette.yaml | 2339 ++++++++--------- .../test-get-private-network-multiple.golden | 52 +- ...t-get-private-network-simple.cassette.yaml | 1617 +++++++----- .../test-get-private-network-simple.golden | 42 +- 6 files changed, 2361 insertions(+), 2097 deletions(-) diff --git a/internal/namespaces/vpc/v1/custom_private_network.go b/internal/namespaces/vpc/v1/custom_private_network.go index fb81fb3304..a5af76fdfc 100644 --- a/internal/namespaces/vpc/v1/custom_private_network.go +++ b/internal/namespaces/vpc/v1/custom_private_network.go @@ -15,43 +15,6 @@ import ( ) func privateNetworkGetBuilder(c *core.Command) *core.Command { - type customInstanceServer struct { - ID string `json:"id"` - Name string `json:"name"` - State instance.ServerState `json:"state"` - NicID string `json:"nic_id"` - MacAddress string `json:"mac"` - } - type customBaremetalServer struct { - ID string `json:"id"` - Name string `json:"server_id"` - State baremetal.ServerStatus `json:"state"` - BaremetalNetworkID string `json:"baremetal_network_id"` - } - type customLB struct { - ID string `json:"id"` - Name string `json:"server_id"` - State lb.LBStatus `json:"state"` - } - type customRdb struct { - ID string `json:"id"` - Name string `json:"server_id"` - State rdb.InstanceStatus `json:"state"` - EndpointID string `json:"endpoint_id"` - } - type customRedis struct { - ID string `json:"id"` - Name string `json:"server_id"` - State redis.ClusterStatus `json:"state"` - EndpointID string `json:"endpoint_id"` - } - type customGateway struct { - ID string `json:"id"` - Name string `json:"server_id"` - State vpcgw.GatewayStatus `json:"state"` - GatewayNetworkID string `json:"gateway_network_id"` - } - c.Interceptor = func(ctx context.Context, argsI interface{}, runner core.CommandRunner) (interface{}, error) { getPNResp, err := runner(ctx, argsI) if err != nil { @@ -62,161 +25,40 @@ func privateNetworkGetBuilder(c *core.Command) *core.Command { client := core.ExtractClient(ctx) // Instance - instanceAPI := instance.NewAPI(client) - listInstanceServers, err := instanceAPI.ListServers(&instance.ListServersRequest{ - PrivateNetwork: &pn.ID, - }, scw.WithAllPages()) + listInstanceServers, err := listCustomInstanceServers(client, pn) if err != nil { return nil, err } - var customInstanceServers []customInstanceServer - for _, server := range listInstanceServers.Servers { - for _, nic := range server.PrivateNics { - if nic.PrivateNetworkID == pn.ID { - customInstanceServers = append(customInstanceServers, customInstanceServer{ - NicID: nic.ID, - ID: nic.ServerID, - MacAddress: nic.MacAddress, - Name: server.Name, - State: server.State, - }) - } - } - } // Baremetal - baremtalPNAPI := baremetal.NewPrivateNetworkAPI(client) - baremetalAPI := baremetal.NewAPI(client) - listBaremetalServers, err := baremtalPNAPI.ListServerPrivateNetworks(&baremetal.PrivateNetworkAPIListServerPrivateNetworksRequest{ - Zone: pn.Zone, - PrivateNetworkID: &pn.ID, - }, scw.WithAllPages()) + listBaremetalServers, err := listCustomBaremetalServers(client, pn) if err != nil { return nil, err } - var customBaremetalServers []customBaremetalServer - for _, server := range listBaremetalServers.ServerPrivateNetworks { - if server.PrivateNetworkID == pn.ID { - getBaremetalServer, err := baremetalAPI.GetServer(&baremetal.GetServerRequest{ - Zone: pn.Zone, - ServerID: server.ServerID, - }) - if err != nil { - return nil, err - } - customBaremetalServers = append(customBaremetalServers, customBaremetalServer{ - ID: server.ServerID, - State: getBaremetalServer.Status, - BaremetalNetworkID: server.ID, - Name: getBaremetalServer.Name, - }) - } - } // LB - LBAPI := lb.NewZonedAPI(client) - listLbs, err := LBAPI.ListLBs(&lb.ZonedAPIListLBsRequest{ - Zone: pn.Zone, - }) - var filteredLBs []*lb.LB - for _, loadbalancer := range listLbs.LBs { - if loadbalancer.PrivateNetworkCount >= 1 { - filteredLBs = append(filteredLBs, loadbalancer) - } - } + listLBs, err := listCustomLBs(client, pn) if err != nil { return nil, err } - var customLBs []customLB - for _, loadbalancer := range filteredLBs { - listLBpns, err := LBAPI.ListLBPrivateNetworks(&lb.ZonedAPIListLBPrivateNetworksRequest{ - Zone: loadbalancer.Zone, - LBID: loadbalancer.ID, - }, scw.WithAllPages()) - if err != nil { - return nil, err - } - for _, res := range listLBpns.PrivateNetwork { - if res.PrivateNetworkID == pn.ID { - customLBs = append(customLBs, customLB{ - ID: res.LB.ID, - Name: res.LB.Name, - State: res.LB.Status, - }) - } - } - } - // Rdb - rdbAPI := rdb.NewAPI(client) - region, err := scw.Zone.Region(pn.Zone) + listRdbInstances, err := listCustomRdbs(client, pn) if err != nil { return nil, err } - listDBs, err := rdbAPI.ListInstances(&rdb.ListInstancesRequest{ - Region: region, - }, scw.WithAllPages()) - if err != nil { - return nil, err - } - var customRdbs []customRdb - for _, db := range listDBs.Instances { - for _, endpoint := range db.Endpoints { - if endpoint.PrivateNetwork != nil && endpoint.PrivateNetwork.PrivateNetworkID == pn.ID { - customRdbs = append(customRdbs, customRdb{ - EndpointID: endpoint.ID, - ID: db.ID, - Name: db.Name, - State: db.Status, - }) - } - } - } // Redis - redisAPI := redis.NewAPI(client) - listRedisClusters, err := redisAPI.ListClusters(&redis.ListClustersRequest{ - Zone: pn.Zone, - }, scw.WithAllPages()) + listRedisClusters, err := listCustomRedisClusters(client, pn) if err != nil { return nil, err } - var customClusters []customRedis - for _, cluster := range listRedisClusters.Clusters { - for _, endpoint := range cluster.Endpoints { - if endpoint.PrivateNetwork.ID == pn.ID { - customClusters = append(customClusters, customRedis{ - ID: cluster.ID, - Name: cluster.Name, - State: cluster.Status, - EndpointID: endpoint.ID, - }) - } - } - } - // VPCGateway - vpcgwAPI := vpcgw.NewAPI(client) - listGateways, err := vpcgwAPI.ListGateways(&vpcgw.ListGatewaysRequest{ - Zone: pn.Zone, - }, scw.WithAllPages()) + // Gateway + listGateways, err := listCustomGateways(client, pn) if err != nil { return nil, err } - var customGateways []customGateway - for _, gateway := range listGateways.Gateways { - for _, gatewayNetwork := range gateway.GatewayNetworks { - if gatewayNetwork.PrivateNetworkID == pn.ID { - customGateways = append(customGateways, customGateway{ - ID: gateway.ID, - Name: gateway.Name, - State: gateway.Status, - GatewayNetworkID: gatewayNetwork.GatewayID, - }) - } - } - } return &struct { *vpc.PrivateNetwork @@ -228,12 +70,12 @@ func privateNetworkGetBuilder(c *core.Command) *core.Command { Gateways []customGateway `json:"gateways"` }{ pn, - customInstanceServers, - customBaremetalServers, - customLBs, - customRdbs, - customClusters, - customGateways, + listInstanceServers, + listBaremetalServers, + listLBs, + listRdbInstances, + listRedisClusters, + listGateways, }, nil } @@ -241,30 +83,238 @@ func privateNetworkGetBuilder(c *core.Command) *core.Command { Sections: []*core.ViewSection{ { FieldName: "InstanceServers", - Title: "InstanceServers", + Title: "Instance Servers", }, { FieldName: "BaremetalServers", - Title: "BaremetalServers", + Title: "Baremetal Servers", }, { FieldName: "LBs", - Title: "LBs", + Title: "Load-Balancers", }, { FieldName: "RdbInstances", - Title: "RdbInstances", + Title: "Rdb Instances", }, { FieldName: "RedisClusters", - Title: "RedisClusters", + Title: "Redis Clusters", }, { FieldName: "Gateways", - Title: "Gateways", + Title: "Public Gateways", }, }, } return c } + +type customInstanceServer struct { + ID string `json:"id"` + Name string `json:"name"` + State instance.ServerState `json:"state"` + NicID string `json:"nic_id"` + MacAddress string `json:"mac"` +} +type customBaremetalServer struct { + ID string `json:"id"` + Name string `json:"server_id"` + State baremetal.ServerStatus `json:"state"` + BaremetalNetworkID string `json:"baremetal_network_id"` + Vlan *uint32 `json:"vlan"` +} +type customLB struct { + ID string `json:"id"` + Name string `json:"server_id"` + State lb.LBStatus `json:"state"` +} +type customRdb struct { + ID string `json:"id"` + Name string `json:"server_id"` + State rdb.InstanceStatus `json:"state"` + EndpointID string `json:"endpoint_id"` +} +type customRedis struct { + ID string `json:"id"` + Name string `json:"server_id"` + State redis.ClusterStatus `json:"state"` + EndpointID string `json:"endpoint_id"` +} +type customGateway struct { + ID string `json:"id"` + Name string `json:"server_id"` + State vpcgw.GatewayStatus `json:"state"` + GatewayNetworkID string `json:"gateway_network_id"` +} + +func listCustomInstanceServers(client *scw.Client, pn *vpc.PrivateNetwork) ([]customInstanceServer, error) { + instanceAPI := instance.NewAPI(client) + listInstanceServers, err := instanceAPI.ListServers(&instance.ListServersRequest{ + PrivateNetwork: &pn.ID, + }, scw.WithAllPages()) + if err != nil { + return nil, err + } + var customInstanceServers []customInstanceServer + for _, server := range listInstanceServers.Servers { + for _, nic := range server.PrivateNics { + if nic.PrivateNetworkID == pn.ID { + customInstanceServers = append(customInstanceServers, customInstanceServer{ + NicID: nic.ID, + ID: nic.ServerID, + MacAddress: nic.MacAddress, + Name: server.Name, + State: server.State, + }) + } + } + } + return customInstanceServers, nil +} + +func listCustomBaremetalServers(client *scw.Client, pn *vpc.PrivateNetwork) ([]customBaremetalServer, error) { + baremtalPNAPI := baremetal.NewPrivateNetworkAPI(client) + baremetalAPI := baremetal.NewAPI(client) + listBaremetalServers, err := baremtalPNAPI.ListServerPrivateNetworks(&baremetal.PrivateNetworkAPIListServerPrivateNetworksRequest{ + Zone: pn.Zone, + PrivateNetworkID: &pn.ID, + }, scw.WithAllPages()) + if err != nil { + return nil, err + } + var customBaremetalServers []customBaremetalServer + for _, server := range listBaremetalServers.ServerPrivateNetworks { + if server.PrivateNetworkID == pn.ID { + getBaremetalServer, err := baremetalAPI.GetServer(&baremetal.GetServerRequest{ + Zone: pn.Zone, + ServerID: server.ServerID, + }) + if err != nil { + return nil, err + } + customBaremetalServers = append(customBaremetalServers, customBaremetalServer{ + ID: server.ServerID, + State: getBaremetalServer.Status, + BaremetalNetworkID: server.ID, + Name: getBaremetalServer.Name, + Vlan: server.Vlan, + }) + } + } + return customBaremetalServers, nil +} + +func listCustomLBs(client *scw.Client, pn *vpc.PrivateNetwork) ([]customLB, error) { + LBAPI := lb.NewZonedAPI(client) + listLbs, err := LBAPI.ListLBs(&lb.ZonedAPIListLBsRequest{ + Zone: pn.Zone, + }) + var filteredLBs []*lb.LB + for _, loadbalancer := range listLbs.LBs { + if loadbalancer.PrivateNetworkCount >= 1 { + filteredLBs = append(filteredLBs, loadbalancer) + } + } + if err != nil { + return nil, err + } + + var customLBs []customLB + for _, loadbalancer := range filteredLBs { + listLBpns, err := LBAPI.ListLBPrivateNetworks(&lb.ZonedAPIListLBPrivateNetworksRequest{ + Zone: loadbalancer.Zone, + LBID: loadbalancer.ID, + }, scw.WithAllPages()) + if err != nil { + return nil, err + } + for _, res := range listLBpns.PrivateNetwork { + if res.PrivateNetworkID == pn.ID { + customLBs = append(customLBs, customLB{ + ID: res.LB.ID, + Name: res.LB.Name, + State: res.LB.Status, + }) + } + } + } + return customLBs, nil +} + +func listCustomRdbs(client *scw.Client, pn *vpc.PrivateNetwork) ([]customRdb, error) { + rdbAPI := rdb.NewAPI(client) + region, err := scw.Zone.Region(pn.Zone) + if err != nil { + return nil, err + } + listDBs, err := rdbAPI.ListInstances(&rdb.ListInstancesRequest{ + Region: region, + }, scw.WithAllPages()) + if err != nil { + return nil, err + } + var customRdbs []customRdb + for _, db := range listDBs.Instances { + for _, endpoint := range db.Endpoints { + if endpoint.PrivateNetwork != nil && endpoint.PrivateNetwork.PrivateNetworkID == pn.ID { + customRdbs = append(customRdbs, customRdb{ + EndpointID: endpoint.ID, + ID: db.ID, + Name: db.Name, + State: db.Status, + }) + } + } + } + return customRdbs, nil +} + +func listCustomRedisClusters(client *scw.Client, pn *vpc.PrivateNetwork) ([]customRedis, error) { + redisAPI := redis.NewAPI(client) + listRedisClusters, err := redisAPI.ListClusters(&redis.ListClustersRequest{ + Zone: pn.Zone, + }, scw.WithAllPages()) + if err != nil { + return nil, err + } + var customClusters []customRedis + for _, cluster := range listRedisClusters.Clusters { + for _, endpoint := range cluster.Endpoints { + if endpoint.PrivateNetwork.ID == pn.ID { + customClusters = append(customClusters, customRedis{ + ID: cluster.ID, + Name: cluster.Name, + State: cluster.Status, + EndpointID: endpoint.ID, + }) + } + } + } + return customClusters, nil +} + +func listCustomGateways(client *scw.Client, pn *vpc.PrivateNetwork) ([]customGateway, error) { + vpcgwAPI := vpcgw.NewAPI(client) + listGateways, err := vpcgwAPI.ListGateways(&vpcgw.ListGatewaysRequest{ + Zone: pn.Zone, + }, scw.WithAllPages()) + if err != nil { + return nil, err + } + var customGateways []customGateway + for _, gateway := range listGateways.Gateways { + for _, gatewayNetwork := range gateway.GatewayNetworks { + if gatewayNetwork.PrivateNetworkID == pn.ID { + customGateways = append(customGateways, customGateway{ + ID: gateway.ID, + Name: gateway.Name, + State: gateway.Status, + GatewayNetworkID: gatewayNetwork.GatewayID, + }) + } + } + } + return customGateways, nil +} diff --git a/internal/namespaces/vpc/v1/custom_private_network_test.go b/internal/namespaces/vpc/v1/custom_private_network_test.go index fbd160a529..2fb4368603 100644 --- a/internal/namespaces/vpc/v1/custom_private_network_test.go +++ b/internal/namespaces/vpc/v1/custom_private_network_test.go @@ -17,7 +17,7 @@ func Test_GetPrivateNetwork(t *testing.T) { cmds.Merge(rdb.GetCommands()) cmds.Merge(redis.GetCommands()) - t.Run("Simple", core.Test(&core.TestConfig{ + /*t.Run("Simple", core.Test(&core.TestConfig{ Commands: cmds, BeforeFunc: core.BeforeFuncCombine( createPN(), @@ -30,7 +30,7 @@ func Test_GetPrivateNetwork(t *testing.T) { deleteInstance(), deletePN(), ), - })) + }))*/ t.Run("Multiple", core.Test(&core.TestConfig{ Commands: cmds, diff --git a/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.cassette.yaml b/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.cassette.yaml index 3794e566b9..caa448854e 100644 --- a/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.cassette.yaml +++ b/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.cassette.yaml @@ -2,7 +2,7 @@ version: 1 interactions: - request: - body: '{"name":"cli-pn-practical-austin","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null}' + body: '{"name":"cli-pn-cocky-wu","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null}' form: {} headers: Content-Type: @@ -12,19 +12,16 @@ interactions: url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks method: POST response: - body: '{"id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", "name":"cli-pn-practical-austin", - "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-04-13T07:36:40.254021Z", - "updated_at":"2023-04-13T07:36:40.254021Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "subnets":["172.16.184.0/22", "fd46:78ab:30b8:e6b::/64"], "zone":"fr-par-1"}' + body: '{"id":"57c74385-6157-413e-903b-273f66181b80","name":"cli-pn-cocky-wu","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2023-05-12T12:26:57.848128Z","updated_at":"2023-05-12T12:26:57.848128Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":["172.16.12.0/22","fd46:78ab:30b8:7e91::/64"],"zone":"fr-par-1"}' headers: Content-Length: - - "366" + - "349" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:36:40 GMT + - Fri, 12 May 2023 12:26:57 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,7 +31,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 715f2cf9-f30a-45f3-ba77-a04e3bc3d023 + - a58da725-dcee-45f2-afdb-ab87f7ebb3f8 status: 200 OK code: 200 duration: "" @@ -52,119 +49,173 @@ interactions: "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux distribution, governed and driven by the community, focused on long-term stability and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "73b7fe3c-6545-4f6e-aad0-e76c02404fbe", - "name": "2023-03-27T10:14:00.576321+00:00", "local_images": [{"id": "61d98e45-5103-4b3c-8ac6-060d65d0a2a5", - "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", - "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "690989ec-6014-4bc0-aa91-8b25de109120", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "name": "Instances User Resources Build System"}, "versions": [{"id": "41f32a25-c977-4dae-9a80-c997de7084c4", + "name": "2023-04-13T13:09:21.808853+00:00", "local_images": [{"id": "2d0ee515-2888-4c3a-ad0f-e59706b4129e", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8947e592-8e0b-4e96-be26-f2bec8c9b2fd", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "18c1965e-2f19-4be1-bf76-c00493b5eb87", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "ac946746-0bb6-4be4-abd3-198eb122c9d6", "zone": "fr-par-2", "arch": "x86_64", + {"id": "8211d82a-2bae-4374-9db6-537fc4270bed", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "0ccb174b-2ee2-48da-90dc-c437169b7c8c", "zone": "fr-par-3", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "57a0b470-123a-4c73-a41f-89a9a249cf0e", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "7e5efe0b-4e07-4fc0-8c90-5cf434742bb6", "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "ce0dc6f9-3c96-4b2f-88eb-9926f173196a", "zone": "pl-waw-1", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", - "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "6afebd6c-2c3d-4e52-a200-305d94d8e844", "zone": "par1", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", - "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO"]}, {"id": "d03b8ce7-b36d-41dc-a1fb-558d94e8dbd0", "zone": "ams1", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", - "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d979b82f-2a8e-414f-8e0f-7c198cded9eb", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", - "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], - "creation_date": "2023-03-27T10:14:00.744971+00:00", "modification_date": "2023-03-27T10:14:00.744971+00:00"}], - "categories": ["distribution"], "current_public_version": "73b7fe3c-6545-4f6e-aad0-e76c02404fbe", - "creation_date": "2021-10-05T13:36:52.246490+00:00", "modification_date": "2023-03-28T15:03:59.569897+00:00", - "valid_until": null}, {"id": "486ead23-9656-41d1-aa74-a5a780b2ae1b", "name": - "AlmaLinux 9", "label": "almalinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", - "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux - distribution, governed and driven by the community, focused on long-term stability - and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "ea9150d8-7c8e-4bd6-9312-ef9619890757", - "name": "2023-03-27T12:40:38.225508+00:00", "local_images": [{"id": "62a0e992-a6df-4180-aea7-a371a56a5f59", - "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + {"id": "29f387f4-367b-4a70-a1a5-f3e838779d6f", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "0907829d-3310-43a7-940e-f3d0edaa980f", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8a7f5fbb-0984-4732-904a-feb3f56df078", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "eefb08ee-e99a-4f62-85a3-b626bc704761", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "cc73f0cb-306a-419d-b8eb-0f951eb9283d", - "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "01acc25c-ba09-4830-851a-2542e5bc3dcb", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "f0c3e2f5-72d8-43b2-a139-ab850f6865bb", "zone": "fr-par-2", "arch": "x86_64", + {"id": "4cfdcb7b-c2fa-4cf0-afb3-84b40a1c3d5d", "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "a7c67fb1-27c1-4349-9d92-c4ddf119510a", "zone": "fr-par-3", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "c0a63d89-725b-4be6-b13e-967f11a85a1f", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8a052964-cef0-467e-a97b-44790b927041", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:09:21.960045+00:00", + "modification_date": "2023-04-13T13:09:21.960045+00:00"}], "categories": ["distribution"], + "current_public_version": "41f32a25-c977-4dae-9a80-c997de7084c4", "creation_date": + "2021-10-05T13:36:52.246490+00:00", "modification_date": "2023-04-13T14:39:27.135528+00:00", + "valid_until": null}, {"id": "486ead23-9656-41d1-aa74-a5a780b2ae1b", "name": + "AlmaLinux 9", "label": "almalinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", + "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux + distribution, governed and driven by the community, focused on long-term stability + and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "c8fe19b6-5406-42d1-82e2-92103b7f8323", + "name": "2023-04-13T13:08:00.223293+00:00", "local_images": [{"id": "8b2a0086-4014-4057-8681-9c23bdff934b", "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "2cd027ac-0747-48b0-9f20-f2c1d364e2d1", "zone": "pl-waw-1", "arch": "x86_64", + {"id": "ba414ba2-6fd3-472d-9426-9003d3be907d", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "ae4dd3e9-d980-4a2d-bdfa-0ad420882713", "zone": "par1", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", - "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO"]}, {"id": "718685dd-d66d-42fe-b74c-1f4895600496", "zone": "ams1", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", - "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "31c40954-2b15-4104-99e0-16184d8bc7c6", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "70c83503-a8da-48d3-bd74-f5edc76b597d", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "d5caa4ee-11c0-4f46-bbb0-975346a2868d", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "a4e5f971-f0d3-4c1a-9a87-7942cf35d54a", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "04627843-5631-4e6b-aa75-028cbda5cf9a", "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], - "creation_date": "2023-03-27T12:40:38.405478+00:00", "modification_date": "2023-03-27T12:40:38.405478+00:00"}], - "categories": ["distribution"], "current_public_version": "ea9150d8-7c8e-4bd6-9312-ef9619890757", - "creation_date": "2022-08-24T09:21:26.315925+00:00", "modification_date": "2023-03-28T15:05:12.419108+00:00", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "7a2606d4-6904-4ba7-95b5-367fd4229c42", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "ce34e9fa-b154-4bbd-a602-6dc4e311900b", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "55bcf97c-5b85-4483-ab44-26380076c73d", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "6e05dc1e-6785-4f90-a5b8-adcdeb8daffa", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:08:00.408431+00:00", + "modification_date": "2023-04-13T13:08:00.408431+00:00"}], "categories": ["distribution"], + "current_public_version": "c8fe19b6-5406-42d1-82e2-92103b7f8323", "creation_date": + "2022-08-24T09:21:26.315925+00:00", "modification_date": "2023-04-13T14:38:52.308804+00:00", "valid_until": null}, {"id": "8f60c5dd-e659-48da-97e3-fb7de42195f5", "name": "Arch Linux", "label": "arch_linux", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/archlinux.png", "description": "Arch Linux is an independently developed Linux distribution @@ -219,55 +270,56 @@ interactions: "description": "The CentOS Project is a community-driven free software effort focused on delivering a robust open source ecosystem.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "16dda4a4-874a-4e6c-a39b-f007457038d8", "name": - "2022-11-17T16:45:12.127950+00:00", "local_images": [{"id": "7fde748b-5475-4d4a-90a9-34292d227fa3", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + System"}, "versions": [{"id": "a37e7b5d-a5e5-4506-8897-4129bab079ca", "name": + "2023-04-13T13:05:23.543151+00:00", "local_images": [{"id": "15c5dd42-434b-49cf-a5b4-8bb3b5f9dc9d", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "8d8e561a-67ba-414d-9567-fdb9b70761da", "zone": "fr-par-3", "arch": "x86_64", + "54dfc73a-2a0b-4ea0-8e8e-abe85357a6cc", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "d579e95a-4c2c-4f37-b57e-c2fc22b87966", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "80f07490-eda6-4402-9273-001d059f2f40", "zone": - "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "d202a177-e307-4fe4-8e33-c014f15e1988", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "fc1f0708-c8e3-4ceb-a36a-6f47765d4f60", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "fc13535c-d2b6-4062-b4a6-e5b93fbbdf7a", "zone": "pl-waw-2", "arch": "x86_64", + "63b021be-1ec3-4227-b34d-06c976074422", "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "6306e909-ba53-4bb7-898f-f425b95a2848", "zone": - "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "620b5307-1861-4c88-8938-1e45afc9d3f6", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "3e454a77-0ff5-47b0-9c7a-cc4dca7acaeb", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], - "creation_date": "2022-11-17T16:45:12.324670+00:00", "modification_date": "2022-11-17T16:45:12.324670+00:00"}], - "categories": ["distribution"], "current_public_version": "16dda4a4-874a-4e6c-a39b-f007457038d8", - "creation_date": "2019-12-25T00:00:00+00:00", "modification_date": "2022-11-21T09:57:07.222778+00:00", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "98aceddf-c90f-4521-aa7b-93f942b5d2b5", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:05:23.795841+00:00", + "modification_date": "2023-04-13T13:05:23.795841+00:00"}], "categories": ["distribution"], + "current_public_version": "a37e7b5d-a5e5-4506-8897-4129bab079ca", "creation_date": + "2019-12-25T00:00:00+00:00", "modification_date": "2023-04-13T14:37:49.401742+00:00", "valid_until": null}, {"id": "f49dc23e-82d1-48c3-b80e-6c697b1dda92", "name": "Centos Stream 8", "label": "centos_stream_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/centos.png", "description": "The CentOS Project is a community-driven free software effort @@ -333,61 +385,87 @@ interactions: "description": "The CentOS Project is a community-driven free software effort focused on delivering a robust open source ecosystem.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "adcd38b6-0b86-4541-ac22-8746872f2f3f", "name": - "2023-03-27T15:41:43.491902+00:00", "local_images": [{"id": "6fc0bfd2-c4f5-4919-859b-ae020053fe65", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", - "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f33b7754-23be-4ad2-98ad-18af1b2da9ca", + System"}, "versions": [{"id": "4c494b40-7244-411c-a724-65b8eedb2bc2", "name": + "2023-04-13T13:06:38.087421+00:00", "local_images": [{"id": "f62ab353-50bd-4d10-b1d9-6c092c22c2f3", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "0204f372-964c-44bc-b9eb-214bf8ad1c08", "zone": "fr-par-2", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", - "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "faf2ef33-c477-4003-9de6-20e6210063a1", "zone": "pl-waw-1", "arch": "x86_64", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "c36b741d-3682-4550-b77f-9b5bbf5361a1", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "73ea099f-8489-4fbc-ada2-b8541d46df0c", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "00d03911-c48d-4ae9-937c-aa16fd01d720", "zone": "fr-par-3", "arch": "x86_64", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "3c8d2b19-b4f8-4cc1-aa04-534778519858", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "fe632ece-1b83-4036-8b7b-8f8a5aaae81b", "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "ea30b451-3c8c-4111-ae5f-c74a517da3fa", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8cd32169-81df-42d7-8581-6cfbf6293a6c", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "3dfd58df-f9ae-4c5c-87b8-76f14ccf9261", "zone": "fr-par-2", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "5e634970-32a9-4e6c-abab-9ed3df387f55", - "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "5937285a-eb94-481d-9196-7446b6783ec5", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "25d7c97d-36ec-456b-ad3c-a8739a17b50b", - "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8db20e68-5ae6-4335-a668-31e321f237a9", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "0f6dc654-fbd7-404b-83f8-9d415a6ab6b9", "zone": "fr-par-3", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-03-27T15:41:43.614858+00:00", - "modification_date": "2023-03-27T15:41:43.614858+00:00"}], "categories": ["distribution"], - "current_public_version": "adcd38b6-0b86-4541-ac22-8746872f2f3f", "creation_date": - "2022-02-03T10:35:17.004309+00:00", "modification_date": "2023-03-28T15:02:34.973875+00:00", + {"id": "9f8fba00-c8e8-4d44-ae57-2b8c91e3c997", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "74961e81-7bb0-4604-be5f-b2b622b88b14", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:06:38.259838+00:00", + "modification_date": "2023-04-13T13:06:38.259838+00:00"}], "categories": ["distribution"], + "current_public_version": "4c494b40-7244-411c-a724-65b8eedb2bc2", "creation_date": + "2022-02-03T10:35:17.004309+00:00", "modification_date": "2023-04-13T14:37:08.857124+00:00", "valid_until": null}, {"id": "7bdc1afb-231f-486a-9b85-1b0478bc0e4a", "name": "Debian Buster", "label": "debian_buster", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/debian.png", "description": "Debian is a free operating system, developed by thousands of @@ -441,462 +519,655 @@ interactions: "description": "Debian is a free operating system, developed by thousands of volunteers from all over the world who collaborate via the Internet.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources - Build System"}, "versions": [{"id": "66dac370-33e4-4c6b-8132-c63bf93d10d9", - "name": "2023-03-24T10:27:03.235790+00:00", "local_images": [{"id": "5979b981-b30b-4d05-80fa-a432a8a79a83", - "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", - "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "214fe4be-6b16-4d5d-9cdb-7698ee91659a", "zone": "par1", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + Build System"}, "versions": [{"id": "2adb2f81-b517-4dbd-b4f1-c58f658c9813", + "name": "2023-04-13T13:03:55.707814+00:00", "local_images": [{"id": "1d218316-3884-4b62-bdeb-b5fc14fa6cdb", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO"]}, {"id": "09cfbb91-f7c2-498a-ba0b-b54e19cb9d0f", "zone": "fr-par-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "ebb10763-4f0d-40b0-86bb-266f2275b9a5", - "zone": "nl-ams-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", - "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "0024830b-143b-4186-8c99-3e5effd07f04", "zone": "pl-waw-2", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "7c972b6f-0165-45b0-9dfa-52ff6c39ac4d", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "409c3356-9a2d-4212-983e-78f1ce0f23b7", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "ca4c6d52-bb47-4d4d-98b6-a201825b5b9a", "zone": "fr-par-3", "arch": "x86_64", - "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", - "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "fef3e360-8c03-4861-bde3-a4176a41a3e5", - "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "2620d33a-6c1d-4fb4-8502-93e60644bfce", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "4d03625b-965c-4468-97bd-f7c52637e8ba", "zone": "nl-ams-2", "arch": "x86_64", + {"id": "14901537-a464-4003-b7d9-388f0db136a5", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "fd88fc57-4acc-4cc8-a1fc-3f352110001b", "zone": "fr-par-2", "arch": "arm64", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "1f9b4f99-332b-46b1-99c9-3f6279c2baff", + "zone": "nl-ams-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "44d9ae31-80b8-448a-9487-e196b9c2a09f", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "41ed9bc9-94ed-4c31-9610-cd701a7cb76c", - "zone": "pl-waw-1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "52b02895-018a-4813-a522-0ab5fb838c02", + "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "665ae928-07f3-4068-a7ed-a7a185ef35ed", "zone": "fr-par-3", "arch": "arm64", + {"id": "4100648b-5063-436d-a8ae-62d5f961a25d", "zone": "pl-waw-1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "b639fa8c-16f9-493f-9af0-33e83edd6f66", - "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "91481d0d-c45e-4712-9491-787a7842d211", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "fc73b422-af26-43d7-a989-ca54ce46fe11", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "35a07178-bce4-4966-ac5f-a415135fe8d0", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "19aa7502-a4f3-4e65-a980-754fa2069217", "zone": "pl-waw-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "56ad2234-2a81-4232-86c5-314d80789ba2", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "3ee075e9-3556-4e9d-b764-b51ba5ce8c39", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-24T10:27:03.393581+00:00", - "modification_date": "2023-03-24T10:27:03.393581+00:00"}], "categories": ["distribution"], - "current_public_version": "66dac370-33e4-4c6b-8132-c63bf93d10d9", "creation_date": - "2021-07-21T09:09:36.581723+00:00", "modification_date": "2023-03-28T14:59:44.265262+00:00", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "588137bb-78c8-4397-893a-e9deca6cfc74", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", "GP1-M", + "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G", "DEV1-S", "DEV1-M", + "DEV1-L", "DEV1-XL", "STARDUST1-S"]}], "creation_date": "2023-04-13T13:03:55.943087+00:00", + "modification_date": "2023-04-13T13:03:55.943087+00:00"}], "categories": ["distribution"], + "current_public_version": "2adb2f81-b517-4dbd-b4f1-c58f658c9813", "creation_date": + "2021-07-21T09:09:36.581723+00:00", "modification_date": "2023-04-13T14:36:19.543959+00:00", "valid_until": null}, {"id": "c1b530d8-0ca0-45c4-80db-ba06608287b2", "name": "Docker", "label": "docker", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/docker.png", "description": "Docker is an open platform for developers and sysadmins to build, ship, and run distributed applications.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "80f14577-c821-44f2-aa51-fcd09ef74ccd", - "name": "2022-11-17T16:49:13.103479+00:00", "local_images": [{"id": "b9335185-d1bb-4904-adaf-da88c8e6c05b", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "aeaa9adb-f93e-482b-bb03-e402def75243", + "name": "2023-04-13T13:03:17.035176+00:00", "local_images": [{"id": "5c789fa0-3618-46b6-a484-6915a074cd1b", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "b1895cdd-a79b-4f18-9644-e5ab2434be06", "zone": "nl-ams-2", "arch": "x86_64", + "822bd95d-39f5-4649-b9ac-1b23869fb5eb", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "ef114000-7fe5-455c-afd1-714c15fdd3f3", "zone": - "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "b6c5990a-ee1d-45b6-a9bc-15edb6f6d354", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "50ebcf47-39b5-4087-ad18-79f63b9fdc05", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "9f945d00-71b9-436a-8a45-311babee406d", "zone": "pl-waw-2", "arch": "x86_64", + "2d7d32fd-3c5c-4b5d-ab9a-6423741e6d4e", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "a0c05cf2-8805-412c-acb6-45d047773732", "zone": - "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "f50af9e3-8b75-4c63-b2e5-355a2404f6dd", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "78b02952-be83-4b4b-a77c-1ecec5356652", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], - "creation_date": "2022-11-17T16:49:13.211153+00:00", "modification_date": "2022-11-17T16:49:13.211153+00:00"}], - "categories": ["instantapp"], "current_public_version": "80f14577-c821-44f2-aa51-fcd09ef74ccd", - "creation_date": "2016-03-05T15:11:26.847640+00:00", "modification_date": "2022-11-21T09:58:41.216589+00:00", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "0a7c1075-086b-4b07-b285-84c6d55b544f", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "157c5202-f71d-40d2-9cbe-08a11d0d6ab6", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:03:17.145319+00:00", + "modification_date": "2023-04-13T13:03:17.145319+00:00"}], "categories": ["instantapp"], + "current_public_version": "aeaa9adb-f93e-482b-bb03-e402def75243", "creation_date": + "2016-03-05T15:11:26.847640+00:00", "modification_date": "2023-04-13T14:34:48.199797+00:00", "valid_until": null}, {"id": "186859f6-0152-45dd-9eb8-21fc5e8d774e", "name": "Fedora 36", "label": "fedora_36", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", "description": "Fedora is a powerful, flexible operating system that includes the best and latest datacenter technologies. It puts you in control of all your infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "5f758103-8e34-40cd-b28d-6e5893ff54e3", - "name": "2023-03-28T07:19:02.568289+00:00", "local_images": [{"id": "ed49624c-0d21-4e19-beca-eb940fa0928f", + "name": "Instances User Resources Build System"}, "versions": [{"id": "9c65e858-7550-4118-9ca1-9086bf70ae11", + "name": "2023-04-13T13:03:38.692646+00:00", "local_images": [{"id": "b613de94-efde-49b0-84fd-18698da03450", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "4e0d352b-c33b-43c9-8b10-6750b70f87ec", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "74490113-256a-4bdf-bcb1-581f9d88e97f", "zone": "par1", "arch": "arm64", "compatible_commercial_types": - ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", - "AMP2-C60"]}, {"id": "aa0e328b-fe85-4773-b8d9-f4a86db0860b", "zone": "pl-waw-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "5642623f-7b90-4568-8149-843a7c07c1e4", - "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", - "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "3f936ceb-4e63-498d-94e0-5231caaaef3f", "zone": "fr-par-3", "arch": "x86_64", - "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "6b76e0e1-f650-434a-b901-628a24807738", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "0997826f-bb9c-4a7f-b442-0f95250c22b0", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "186cf8ac-3ba8-4be3-a420-e09a7a556269", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f76711a4-8846-44d2-b381-a189dd095b36", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "5ab8b0ba-e458-4a2d-b349-4c63cab96f08", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "12256f5e-7577-421d-b13a-8e6f53c7656c", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "2b72a96d-e146-49fe-b161-5e5b0b56f053", "zone": "fr-par-3", "arch": "arm64", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "68532aae-1625-4a7a-ac48-b12426e1fbc4", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "e55c488c-6ca3-41eb-875e-48f7babe1500", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "595da48b-750e-4745-a211-44926dabce33", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "375587da-52be-4149-8fff-1ffbc1b242b2", "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "caf7b73d-f0d3-4d42-8db4-8ee9370de5b7", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-04-13T13:03:38.803387+00:00", + "modification_date": "2023-04-13T13:03:38.803387+00:00"}], "categories": ["distribution"], + "current_public_version": "9c65e858-7550-4118-9ca1-9086bf70ae11", "creation_date": + "2022-04-14T15:45:29.069701+00:00", "modification_date": "2023-04-13T14:34:14.050901+00:00", + "valid_until": null}, {"id": "2b0e5802-eb82-4fd5-ac8f-6877c46aa14b", "name": + "Fedora 37", "label": "fedora_37", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", + "description": "Fedora is a powerful, flexible operating system that includes + the best and latest datacenter technologies. It puts you in control of all your + infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "7c6510e3-7720-4af2-94f5-a13e3eb7aec4", + "name": "2023-04-13T13:02:37.974360+00:00", "local_images": [{"id": "c8e8559a-84dd-4c0b-8727-d53bbd04de4b", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "116a529d-671d-4cd9-974d-0aca049be4d7", "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8cee1f9b-c123-4028-b422-e3565c1176d4", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "03cfa199-fff9-4677-b1b7-b676ec6d2c70", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "6fb9a92b-e16d-407a-b61e-c048c0555f9d", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "9f1b1efc-0ed1-4bdd-b547-5eaa0a1bb551", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "59687a02-e1b9-4d0a-b1ac-21e83c4c3eec", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "7a610c42-0b81-4db2-b831-11202d06a0fe", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-28T07:19:02.692506+00:00", - "modification_date": "2023-03-28T07:19:02.692506+00:00"}], "categories": ["distribution"], - "current_public_version": "5f758103-8e34-40cd-b28d-6e5893ff54e3", "creation_date": - "2022-04-14T15:45:29.069701+00:00", "modification_date": "2023-03-28T15:10:42.492768+00:00", - "valid_until": null}, {"id": "2b0e5802-eb82-4fd5-ac8f-6877c46aa14b", "name": - "Fedora 37", "label": "fedora_37", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", - "description": "Fedora is a powerful, flexible operating system that includes - the best and latest datacenter technologies. It puts you in control of all your - infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "09c9a703-7526-4b50-8333-337f1f26190d", - "name": "2023-03-27T15:49:13.458836+00:00", "local_images": [{"id": "f0f9abba-c98f-4be8-b191-88f40b5d7b27", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "fb8d4eec-de07-4fe4-b515-70fb650bf471", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "4942ff7b-a79d-4654-bf6a-db74ac0f2bc2", "zone": "par1", "arch": "arm64", "compatible_commercial_types": - ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", - "AMP2-C60"]}, {"id": "fa30bf3f-7dca-412a-9d90-6ab1764c1b73", "zone": "pl-waw-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "3977ad18-9cb6-4a89-9e69-4c6caac95227", - "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", - "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "1556e65e-642d-4bbb-a13e-ad2e677e3881", "zone": "fr-par-3", "arch": "x86_64", - "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8aed02d3-b7f5-43f5-a232-a2dab285ce2f", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "addb1b2d-95ff-4cf7-9410-9cf94a74df4d", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "e977e7f8-875f-4a54-a141-f3fa288e0b97", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": + "2023-04-13T13:02:38.088623+00:00", "modification_date": "2023-04-13T13:02:38.088623+00:00"}], + "categories": ["distribution"], "current_public_version": "7c6510e3-7720-4af2-94f5-a13e3eb7aec4", + "creation_date": "2022-11-14T10:48:04.097063+00:00", "modification_date": "2023-04-13T14:33:41.303847+00:00", + "valid_until": null}, {"id": "dab3ed4b-5d6a-4b77-82e2-04405fd2a59e", "name": + "Fedora 38", "label": "fedora_38", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", + "description": "Fedora is a powerful, flexible operating system that includes + the best and latest datacenter technologies. It puts you in control of all your + infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "dc49f9c0-e9f3-4f0a-8ef5-74116ed5995f", + "name": "2023-04-18T08:23:43.637923+00:00", "local_images": [{"id": "4040de51-ebc3-4f24-b14c-054f8cd966bf", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "e1e0a7dc-bd18-465c-886d-0ca793ac7875", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "3077c13c-e1a7-404e-85de-560e427c6359", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "b8a2c6bc-06d9-41bd-948a-1cf313ce6fba", "zone": "fr-par-3", "arch": "arm64", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "a5a980d0-91fa-4f0b-93a4-e1cc853b24dc", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "70da9c18-8d97-4de4-b666-275536750a9f", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "2bf83ac5-36a0-4245-9e66-22d5de47ce4f", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "0f0d629c-e18b-4ab3-b39e-7dd92a094627", "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "0b1e1955-b880-476f-961c-36d3967585d5", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "e4b2dde2-250b-4afc-9641-91bb170b9344", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "886332b4-dff8-43d8-a432-a9cec8796343", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "fe8b1d78-bf61-4939-a621-8718fda1d070", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-27T15:49:13.669277+00:00", - "modification_date": "2023-03-27T15:49:13.669277+00:00"}], "categories": ["distribution"], - "current_public_version": "09c9a703-7526-4b50-8333-337f1f26190d", "creation_date": - "2022-11-14T10:48:04.097063+00:00", "modification_date": "2023-03-28T15:12:10.818444+00:00", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "811b12a5-2d32-46ec-8357-00cea52c33ed", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "61cf62c9-8b3d-49e3-9795-3d684909ff98", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": + "2023-04-18T08:23:43.848581+00:00", "modification_date": "2023-04-18T08:23:43.848581+00:00"}], + "categories": ["distribution"], "current_public_version": "dc49f9c0-e9f3-4f0a-8ef5-74116ed5995f", + "creation_date": "2023-04-18T07:53:13.621657+00:00", "modification_date": "2023-04-18T09:29:09.701576+00:00", "valid_until": null}, {"id": "233074b9-e2ba-4e78-818e-dd4930ce6bee", "name": "GitLab", "label": "gitlab", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/gitlab.png", "description": "GitLab is a web-based Git repository manager with wiki and issue tracking features.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "5aaa1f5b-6b83-431a-b12c-57db770bfa78", - "name": "2022-11-18T10:02:54.423998+00:00", "local_images": [{"id": "98244fe8-83ce-4076-bddc-a613eb646b91", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "b16ed12e-299b-4dbd-8225-9b8644d5ec04", + "name": "2023-04-13T13:06:28.354726+00:00", "local_images": [{"id": "416e6290-b9dd-47f8-9a90-f07cb7fa0f1d", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "0030922b-675e-4348-853f-4e4490c14ee9", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "16622dfc-d69c-4c78-9462-1321f84ac750", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "1fa73760-65fd-4350-85b4-1ffb203bcbfe", "zone": "fr-par-2", "arch": "x86_64", + "01d0cc75-9b4c-4d88-8560-5a0308a20c97", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "b0d4d06c-f535-493f-b57c-e6379c4f18bc", "zone": - "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "d0f5a66a-519a-401c-b96f-8f9b10e49552", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "e71db560-19bc-4dfe-9c84-84ae7e3a6809", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "1ad486c3-d9c4-458e-90fe-4c8ed31adc7e", "zone": "nl-ams-2", "arch": "x86_64", + "04f3be3a-f6d1-41e7-9b63-7b1d2e3492a1", "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "0b54e819-1051-4a01-8026-053c2523c45d", "zone": - "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "31fd1cfc-27bd-4baf-86e9-df0beb72efb4", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "8d43f819-553b-4490-893b-cb82abeffb14", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], - "creation_date": "2022-11-18T10:02:54.554344+00:00", "modification_date": "2022-11-18T10:02:54.554344+00:00"}], - "categories": ["instantapp"], "current_public_version": "5aaa1f5b-6b83-431a-b12c-57db770bfa78", - "creation_date": "2016-03-07T21:06:22.770864+00:00", "modification_date": "2022-11-21T09:59:01.854428+00:00", + "creation_date": "2023-04-13T13:06:28.530554+00:00", "modification_date": "2023-04-13T13:06:28.530554+00:00"}], + "categories": ["instantapp"], "current_public_version": "b16ed12e-299b-4dbd-8225-9b8644d5ec04", + "creation_date": "2016-03-07T21:06:22.770864+00:00", "modification_date": "2023-04-13T14:32:36.692844+00:00", "valid_until": null}, {"id": "7d4a7cb1-1fd5-4a64-920b-c79f47367254", "name": "NextCloud", "label": "nextcloud", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/nextcloud.png", "description": "Nextcloud is an open source, self-hosted file share and communication platform.", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": - "OCS"}, "versions": [{"id": "36e53418-c1c9-49db-bc59-f6c87e2cb96f", "name": - "2022-11-17T16:53:39.941145+00:00", "local_images": [{"id": "c604583d-dd01-4edc-b3f5-7eb5d4596e61", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "OCS"}, "versions": [{"id": "fe957b4f-1ab1-41bf-a142-b771f039d2c9", "name": + "2023-04-13T13:00:13.060943+00:00", "local_images": [{"id": "b1d51a36-38dc-4d65-873c-4fed3dbeb21e", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "671ccef0-003d-44fc-8da3-f4a8979482e3", "zone": "pl-waw-2", "arch": "x86_64", + "220ab3a6-0b38-4d6c-864d-fd6feb8aa99c", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "5e2f22ec-d003-485f-bec2-9a5372f5f0e4", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "69f87cf6-ed99-433c-b939-ce5883993150", "zone": - "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "54414b23-6028-4a9b-ba5f-98cca3e335e5", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "cee6ae09-afdc-4286-bc93-98fdb214effe", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "edae369a-f1ac-4054-8996-b95aa1b20846", "zone": "pl-waw-1", "arch": "x86_64", + "4ac5d79b-597b-4d05-a3d2-b3f44431bc2a", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "e19a0ff7-bf8a-48ac-a50f-6de58a659035", "zone": - "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "1057097d-0a23-4480-9a34-566342fb3265", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "30d1c545-c406-4515-83ab-f5224d4f95b6", "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], - "creation_date": "2022-11-17T16:53:40.112145+00:00", "modification_date": "2022-11-17T16:53:40.112145+00:00"}], - "categories": ["instantapp"], "current_public_version": "36e53418-c1c9-49db-bc59-f6c87e2cb96f", - "creation_date": "2019-04-16T12:22:56.930842+00:00", "modification_date": "2022-11-21T09:58:50.824677+00:00", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "f3a31d98-0e04-45da-8246-de949f5615e4", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:00:13.324444+00:00", + "modification_date": "2023-04-13T13:00:13.324444+00:00"}], "categories": ["instantapp"], + "current_public_version": "fe957b4f-1ab1-41bf-a142-b771f039d2c9", "creation_date": + "2019-04-16T12:22:56.930842+00:00", "modification_date": "2023-04-13T14:31:50.306200+00:00", "valid_until": null}, {"id": "b6f4edc8-21e6-4aa2-8f52-1030cf6d4dd8", "name": "OpenVPN", "label": "openvpn", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/openvpn.png", "description": "Surf the web in a secure and anonymous way with OpenVPN InstantApp.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "auth-team+ocs-organization@scaleway.com"}, - "versions": [{"id": "c07d4bc9-b947-4945-a739-78b7cda73bfa", "name": "2022-11-17T16:50:41.032881+00:00", - "local_images": [{"id": "c82757c7-a639-49a1-bd3a-5841a0da5931", "zone": "par1", + "versions": [{"id": "8c40dae0-21ad-4226-821a-aab4c6acae92", "name": "2023-04-13T12:54:17.348185+00:00", + "local_images": [{"id": "98cf2d5f-9268-4cc1-bc43-4ae9c9e66d75", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "7bb740d3-da25-4176-baec-41afe9f9a543", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "defab02d-b971-4418-8349-2a2da5740274", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "ed92b3b8-9656-4937-9169-8484d153f9e3", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + "9ea9fd9c-a795-4de7-8cd2-ca21e04f6aa7", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "5ba4b7be-5524-4a85-9008-b50360778c9b", "zone": "fr-par-3", "arch": "x86_64", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "dfc57325-2ab1-4bd0-acb0-0f93ab55a8e2", "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "75b23340-1d7f-4241-b28d-3773989ad833", "zone": - "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "35da23b9-440b-44e3-bad2-143b60502a7d", - "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "1a50ba7a-d691-4521-9837-b6c5e8be9ab4", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "fd6124df-8f3a-40a0-92f0-9dc393f73186", "zone": "pl-waw-1", "arch": "x86_64", + "d2828fd6-1d35-4140-9079-54e7025df877", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}], "creation_date": "2022-11-17T16:50:41.148343+00:00", - "modification_date": "2022-11-17T16:50:41.148343+00:00"}], "categories": ["instantapp"], - "current_public_version": "c07d4bc9-b947-4945-a739-78b7cda73bfa", "creation_date": - "2016-03-07T21:04:57.667667+00:00", "modification_date": "2022-11-21T09:58:29.002209+00:00", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "a60d4970-e050-4677-b54b-c0d395c56100", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2023-04-13T12:54:17.619668+00:00", "modification_date": "2023-04-13T12:54:17.619668+00:00"}], + "categories": ["instantapp"], "current_public_version": "8c40dae0-21ad-4226-821a-aab4c6acae92", + "creation_date": "2016-03-07T21:04:57.667667+00:00", "modification_date": "2023-04-13T14:31:04.244508+00:00", "valid_until": null}, {"id": "1576bf6b-f640-47f2-9117-968419d0546e", "name": "Rocky Linux 8", "label": "rockylinux_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/rockylinux.png", "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, production-ready Linux.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "1df404de-3e28-4021-8c1c-8e167f1b390a", - "name": "2023-03-27T13:51:48.477663+00:00", "local_images": [{"id": "6b2282dc-51b1-4952-938e-8290e6365209", - "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "name": "Instances User Resources Build System"}, "versions": [{"id": "417d33a8-8b9f-46ff-aedd-d74147dbd69c", + "name": "2023-04-13T12:55:09.822172+00:00", "local_images": [{"id": "d7ddbcb3-221f-49b9-8c6a-34ab34e73210", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "59bb9cf7-c0a2-4994-bc25-217dec852718", "zone": "par1", "arch": "arm64", "compatible_commercial_types": - ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", - "AMP2-C60"]}, {"id": "82d729dd-2a56-4f9a-b235-0344ed96350a", "zone": "pl-waw-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "58f3e5f0-0f66-4ee7-8e12-5c7f91945a3b", - "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", - "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "6fe7bac2-948e-43ef-9daa-6e3dab7e9d49", "zone": "fr-par-3", "arch": "x86_64", - "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", - "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "ab1a8029-524e-4d8c-a458-ddaf5a7685de", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "1e6ba192-5490-4a56-a08e-27eabbc3b4d7", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "7c34c483-af23-47d6-9688-4fa5c9bd59d6", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "4ee70f73-0190-4e73-8027-48745eb18f18", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "f93585c2-91c5-4371-b11d-22ded124b331", "zone": "fr-par-3", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "cc408539-d3c8-4a96-bb79-37987a52142b", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8a2c37b7-be86-431c-9d01-25a0682c5d71", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "119d3bc2-76f3-4664-bfeb-4c3b1f849f4d", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "c203b350-f2f2-420c-9a78-c21b3ef7b58a", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "2221b6bd-0b45-4478-877b-09eacbb7f8ed", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-27T13:51:48.645782+00:00", - "modification_date": "2023-03-27T13:51:48.645782+00:00"}], "categories": ["distribution"], - "current_public_version": "1df404de-3e28-4021-8c1c-8e167f1b390a", "creation_date": - "2021-06-25T10:16:16.254240+00:00", "modification_date": "2023-03-28T15:06:21.067890+00:00", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "af358d06-8b8a-4a66-afdc-88e0334e12a5", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "3657c2df-32fb-4afa-8bf5-be7ea7ab3e69", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "0300040c-f900-47ec-b21f-0f7410d75706", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "5809a93b-69d2-40d4-8b09-79da20ef1e1e", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-04-13T12:55:09.955903+00:00", + "modification_date": "2023-04-13T12:55:09.955903+00:00"}], "categories": ["distribution"], + "current_public_version": "417d33a8-8b9f-46ff-aedd-d74147dbd69c", "creation_date": + "2021-06-25T10:16:16.254240+00:00", "modification_date": "2023-04-13T14:28:09.866367+00:00", "valid_until": null}, {"id": "589c35a9-20ce-4ed9-92d7-16dc061be52b", "name": "Rocky Linux 9", "label": "rockylinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/rockylinux.png", "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, @@ -961,175 +1232,227 @@ interactions: "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu Server helps you make the most of your infrastructure.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "e85973e4-b50b-42cc-b5ce-16ab440c9886", "name": - "2023-03-24T09:19:43.870485+00:00", "local_images": [{"id": "d23d89d5-b0f8-4393-8554-5e9775c5d1b7", + System"}, "versions": [{"id": "12e69a70-af87-4728-8bb1-a940a8d48d35", "name": + "2023-04-13T12:38:58.138108+00:00", "local_images": [{"id": "2fedb0c7-1686-4529-8344-be9e198e4dd2", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", "zone": "par1", "arch": "x86_64", + {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO"]}, {"id": "2f5cdf98-817d-4fcc-9ecc-8b0fc8aed493", "zone": "fr-par-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d90ce4cc-f7eb-406d-9bf6-87ca8265f55c", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "7c748e78-971e-40ab-83f6-461e20a56c68", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "8ddfeedd-2fb0-4cc3-b6d4-47cdd8f4b23f", "zone": "fr-par-3", "arch": "x86_64", - "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "1dba408b-0faa-49c6-937e-e24d45e54157", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "0951cd32-05d9-48a5-b26f-26e52b2cbec3", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "a0a26970-909b-48d1-a3cc-8a47c81a374e", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "b2e92f75-db2b-4bcd-85bf-3ba21b2287bf", "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "7ae2282c-0a01-47c1-8338-c321c8326edb", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "57e89f65-ec39-4847-aed5-942629dff0ad", "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "c747046d-7c51-4a5a-b9bb-ef8336d974c4", "zone": "fr-par-3", "arch": "arm64", + {"id": "5ae24724-3cb2-40ac-9a10-6e244150587d", "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "448f073e-e8f0-4e2a-8e84-3bba5bd9a71e", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "bcdd8214-e642-4fb8-a6a1-5ff910f82e22", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d16ad76d-5bbb-425b-b0c2-b00f43802517", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "d12ccc29-0fa0-4075-8dbe-2c2e4469f99c", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-24T09:19:44.058257+00:00", - "modification_date": "2023-03-24T09:19:44.058257+00:00"}], "categories": ["distribution"], - "current_public_version": "e85973e4-b50b-42cc-b5ce-16ab440c9886", "creation_date": - "2020-02-17T15:50:48.980694+00:00", "modification_date": "2023-03-28T14:57:19.746983+00:00", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T12:38:58.306640+00:00", + "modification_date": "2023-04-13T12:38:58.306640+00:00"}], "categories": ["distribution"], + "current_public_version": "12e69a70-af87-4728-8bb1-a940a8d48d35", "creation_date": + "2020-02-17T15:50:48.980694+00:00", "modification_date": "2023-04-13T14:26:25.085299+00:00", "valid_until": null}, {"id": "1123148c-7660-4cb2-9fd3-7b5b4896f72f", "name": "Ubuntu 22.04 Jammy Jellyfish", "label": "ubuntu_jammy", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu Server helps you make the most of your infrastructure.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "9eeca005-d3cf-4845-b9ae-fa9c926038b8", "name": - "2023-03-23T16:23:08.656307+00:00", "local_images": [{"id": "06bf3f16-930e-48ba-b5c2-eacd1fad129a", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", - "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "11cad2e3-47ab-4dac-a62c-033d5a6f2b61", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + System"}, "versions": [{"id": "687cdcd5-f485-4396-b2b0-a06f7f3ff00b", "name": + "2023-04-13T12:16:06.199424+00:00", "local_images": [{"id": "ce453858-557c-4f1c-a7a9-70026e67d054", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "350a06b2-ecd0-48b9-ba9e-495a51345a68", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": - ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", - "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", - "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", - "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "fba44936-9f63-44b3-a723-9f17eff837e1", "zone": "pl-waw-1", "arch": "x86_64", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "6cda247a-0c01-46c5-8835-9f3143905de0", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "8e0d42ac-2a7e-4ee0-a906-738a115d596e", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "94299452-12c4-4d79-9c79-ced52967d75f", "zone": "par1", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "9abe9fff-dedf-4c8a-b879-0472faacd569", - "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", - "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "660b8a19-6061-4afb-8834-17b86f2179ae", "zone": "pl-waw-2", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "235f2c1a-f81e-4aa2-af5f-b0dcf001c398", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "c7463c52-b051-4359-9edf-132484baf46a", "zone": "fr-par-3", "arch": "x86_64", - "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "08d5fc73-5a8b-4eb4-8c13-cee729f05d9f", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "908ed483-edab-48ac-9309-2fdd0b26776e", - "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "22f92b70-9c50-41a7-856f-71d13052b652", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "898e56c4-296d-418b-94d3-18b14a4312fd", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "83b0da88-403f-41bf-b4ce-faf16dde2d13", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "6dbf3c88-3138-4ce6-841a-63ee5b059ce0", "zone": "fr-par-2", "arch": "x86_64", + {"id": "4faf43e8-465c-4273-8e96-a828399804a0", "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], - "creation_date": "2023-03-23T16:23:08.853769+00:00", "modification_date": "2023-03-23T16:23:08.853769+00:00"}], - "categories": ["distribution"], "current_public_version": "9eeca005-d3cf-4845-b9ae-fa9c926038b8", - "creation_date": "2022-04-07T13:35:54.966630+00:00", "modification_date": "2023-03-28T14:55:21.771024+00:00", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "95819e57-4ee3-4f93-afba-96de74c329f7", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], + "creation_date": "2023-04-13T12:16:06.393838+00:00", "modification_date": "2023-04-13T12:16:06.393838+00:00"}], + "categories": ["distribution"], "current_public_version": "687cdcd5-f485-4396-b2b0-a06f7f3ff00b", + "creation_date": "2022-04-07T13:35:54.966630+00:00", "modification_date": "2023-04-13T14:25:38.413213+00:00", "valid_until": null}, {"id": "b381b2bf-804a-4b12-91f6-9f4ff273462f", "name": "Ubuntu Bionic", "label": "ubuntu_bionic", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu Server helps you make the most of your infrastructure.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "ff84a566-a05f-4306-9e42-9f2304f9378f", "name": - "2023-03-28T12:43:02.328403+00:00", "local_images": [{"id": "d3b6ff11-34b3-4156-8850-d954fff9df13", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + System"}, "versions": [{"id": "599269e6-7332-4a0c-8cd8-0e9e17f6c91e", "name": + "2023-04-13T12:47:26.451219+00:00", "local_images": [{"id": "fe177b1f-c067-45f3-84a6-5aefd68f7f77", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "2b2b1cf4-4af1-4a27-9753-e5a0e971d321", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": - ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", - "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", - "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", - "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, - {"id": "a9d19ff4-ae29-417e-b1d4-6deb185922db", "zone": "par1", "arch": "x86_64", + "c128aa85-0cf6-48e1-8d32-660b9f1fc9be", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "48585eba-5185-472a-97f4-5df64355ffe7", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "96458957-9645-4d2a-8c2d-2efb1d20032c", "zone": "pl-waw-2", "arch": "x86_64", + "3bcf8475-dcd1-43ad-aabd-c7af51f4805a", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "a898d995-6011-4ce4-b802-8e8dfc4c871f", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "9ffd49dd-f620-4ee4-91a2-65028ebbe1b5", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "fc07e364-653b-4223-8e16-9f88e59e528e", "zone": "fr-par-2", "arch": "x86_64", + "3bb18d01-6f5e-4648-b524-70cc241e9686", "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-03-28T12:43:02.430071+00:00", - "modification_date": "2023-03-28T12:43:02.430071+00:00"}], "categories": ["distribution"], - "current_public_version": "ff84a566-a05f-4306-9e42-9f2304f9378f", "creation_date": - "2018-04-27T14:07:25.221998+00:00", "modification_date": "2023-03-28T14:58:39.344565+00:00", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "55e9cd84-1a80-48ef-a3fb-3c2a2d13e164", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2023-04-13T12:47:26.676017+00:00", "modification_date": "2023-04-13T12:47:26.676017+00:00"}], + "categories": ["distribution"], "current_public_version": "599269e6-7332-4a0c-8cd8-0e9e17f6c91e", + "creation_date": "2018-04-27T14:07:25.221998+00:00", "modification_date": "2023-04-13T14:27:25.576115+00:00", "valid_until": null}, {"id": "4dcc771c-820f-405c-b663-4564bdc2ed56", "name": "Ubuntu Focal GPU OS 11", "label": "ubuntu_focal_gpu_os_11", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", "description": "Ubuntu 20.04 Focal Fossa for Nvidia GPU and Machine Learning", @@ -1158,65 +1481,66 @@ interactions: "WordPress", "label": "wordpress", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/wordpress.png", "description": "WordPress is the most popular web software you can use to create a beautiful website or blog.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "49917541-e725-478f-9ed3-866bb71215fc", - "name": "2022-11-17T16:54:23.010448+00:00", "local_images": [{"id": "8640db59-ce11-466f-9124-cfe85e57c03c", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "08baf82b-82b8-4450-b545-c2fbfd4d6135", + "name": "2023-04-13T13:48:44.450791+00:00", "local_images": [{"id": "af715cfb-e95f-42bf-b308-eedc91ae4806", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "c28c8c9d-1b46-4712-8aba-3f2737dda564", "zone": "pl-waw-1", "arch": "x86_64", + "f9be223b-f639-4ed9-83f0-ee911be052de", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "1927920a-520f-4712-9a56-11d7cbbe43be", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "5affe637-67dd-475e-aaa3-eb4a11530270", "zone": - "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "e28a34cf-3118-47bf-9c5c-40419ce519d5", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "2406e707-b3cc-4721-9e7d-293ecec7dcf8", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "60e8d7b5-1d50-4934-a1fb-708025031d48", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": - ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", - "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", - "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "28357650-c47f-4bd2-8589-0cb4923c0f58", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "7c0ba4cb-6286-4220-9e28-de57042c6812", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "6d79accc-3d62-4ae1-98c7-20f6f1164438", "zone": "nl-ams-2", "arch": "x86_64", + "9490b6b4-92cb-4c9e-abfc-1cee6187ee29", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "6c17a18f-ea38-488f-bd91-76ca33e4e11f", "zone": - "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": - "2022-11-17T16:54:23.150832+00:00", "modification_date": "2022-11-17T16:54:23.150832+00:00"}], - "categories": ["instantapp"], "current_public_version": "49917541-e725-478f-9ed3-866bb71215fc", - "creation_date": "2016-03-07T21:03:59.783534+00:00", "modification_date": "2022-11-21T09:58:15.549240+00:00", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:48:44.619998+00:00", + "modification_date": "2023-04-13T13:48:44.619998+00:00"}], "categories": ["instantapp"], + "current_public_version": "08baf82b-82b8-4450-b545-c2fbfd4d6135", "creation_date": + "2016-03-07T21:03:59.783534+00:00", "modification_date": "2023-04-13T14:40:21.433436+00:00", "valid_until": null}]}' headers: Content-Length: - - "98384" + - "126189" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:36:40 GMT + - Fri, 12 May 2023 12:26:58 GMT Link: - ; rel="last" Server: @@ -1228,9 +1552,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04b7c020-e2b9-4ffe-91f2-bba6959e7709 + - d7f6d0f9-a9b1-450f-be86-d74b68049ec3 X-Total-Count: - - "22" + - "23" status: 200 OK code: 200 duration: "" @@ -1240,15 +1564,15 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/834a6c39-41a9-4b92-a3d4-44dfafc47d6b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/68cf470e-6c35-4741-bbff-4ce788616461 method: GET response: - body: '{"image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", "name": "Ubuntu + body: '{"image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, - "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", - "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: @@ -1258,7 +1582,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:36:40 GMT + - Fri, 12 May 2023 12:26:58 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1268,7 +1592,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4f10647-b352-4d4b-a82b-bef288b70b43 + - 89446229-85b5-47df-a97a-fe32169abbb3 status: 200 OK code: 200 duration: "" @@ -1627,7 +1951,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:36:40 GMT + - Fri, 12 May 2023 12:26:58 GMT Link: - ; rel="last" Server: @@ -1639,7 +1963,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e295d8f-7706-4b6b-a784-2ed3bb3f2754 + - ee66b971-efd5-45a6-8f83-ae896525cd26 X-Total-Count: - "38" status: 200 OK @@ -1656,21 +1980,21 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", + body: '{"ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": "51.15.207.142", "reverse": null, "server": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: - - "252" + - "254" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:36:41 GMT + - Fri, 12 May 2023 12:26:58 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/10aa800f-40e1-43a1-9bba-d826b33776a9 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2d7bc003-aa3c-4a47-9694-36a765cc1cdf Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1680,12 +2004,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bed2788e-b6d0-4999-b641-547d9cc8e98d + - 80e3d7da-55e2-4cbf-9d3d-6c73e22dd904 status: 201 Created code: 201 duration: "" - request: - body: '{"name":"cli-srv-flamboyant-mayer","commercial_type":"DEV1-S","image":"834a6c39-41a9-4b92-a3d4-44dfafc47d6b","public_ip":"10aa800f-40e1-43a1-9bba-d826b33776a9","boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: '{"name":"cli-srv-youthful-albattani","commercial_type":"DEV1-S","image":"68cf470e-6c35-4741-bbff-4ce788616461","public_ip":"2d7bc003-aa3c-4a47-9694-36a765cc1cdf","boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' form: {} headers: Content-Type: @@ -1695,27 +2019,27 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: - body: '{"server": {"id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", "name": "cli-srv-flamboyant-mayer", + body: '{"server": {"id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", "name": "cli-srv-youthful-albattani", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", + "hostname": "cli-srv-youthful-albattani", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, - "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", - "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, - "volumes": {"0": {"boot": false, "id": "c4a503a4-b026-415c-a757-9cda4b7dfb2f", + "volumes": {"0": {"boot": false, "id": "d33b0abb-6cd0-4115-960c-b852df4f5143", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "server": {"id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", "name": "cli-srv-flamboyant-mayer"}, - "size": 20000000000, "state": "available", "creation_date": "2023-04-13T07:36:41.718299+00:00", - "modification_date": "2023-04-13T07:36:41.718299+00:00", "tags": [], "zone": + "server": {"id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", "name": "cli-srv-youthful-albattani"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-12T12:26:59.186487+00:00", + "modification_date": "2023-05-12T12:26:59.186487+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", + "", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-04-13T07:36:41.718299+00:00", - "modification_date": "2023-04-13T07:36:41.718299+00:00", "bootscript": {"id": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-12T12:26:59.186487+00:00", + "modification_date": "2023-05-12T12:26:59.186487+00:00", "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", @@ -1727,15 +2051,15 @@ interactions: "fr-par-1"}}' headers: Content-Length: - - "2637" + - "2645" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:36:42 GMT + - Fri, 12 May 2023 12:26:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2248b9b4-dd07-44bc-bde3-3be1c6ec9483 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3acf3418-9644-4dbe-a5d1-3b78db3fbd17 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1745,25 +2069,25 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3e05a9c-cbb3-434c-815f-50b8751aaed2 + - 8aa3237e-94a9-436b-b854-569f41568615 status: 201 Created code: 201 duration: "" - request: - body: '{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4"}' + body: '{"private_network_id":"57c74385-6157-413e-903b-273f66181b80"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2248b9b4-dd07-44bc-bde3-3be1c6ec9483/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3acf3418-9644-4dbe-a5d1-3b78db3fbd17/private_nics method: POST response: - body: '{"private_nic": {"id": "461b407b-b628-4750-97bc-5db35b781355", "private_network_id": - "f99b7ebb-a524-4394-81d7-b0ff710054c4", "server_id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", - "mac_address": "02:00:00:12:b4:60", "state": "available", "creation_date": "2023-04-13T07:36:42.183980+00:00", - "modification_date": "2023-04-13T07:36:42.183980+00:00", "zone": "fr-par-1", + body: '{"private_nic": {"id": "6b8fc07e-2634-4253-bcff-4fd605655474", "private_network_id": + "57c74385-6157-413e-903b-273f66181b80", "server_id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", + "mac_address": "02:00:00:12:e9:f3", "state": "available", "creation_date": "2023-05-12T12:26:59.589036+00:00", + "modification_date": "2023-05-12T12:26:59.589036+00:00", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: @@ -1773,7 +2097,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:36:42 GMT + - Fri, 12 May 2023 12:27:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1783,7 +2107,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa150c1f-ee35-4f1a-8be6-f2fb408a2360 + - 4f9a942e-71d3-4a35-89bd-9ea509a5dc16 status: 201 Created code: 201 duration: "" @@ -1798,25 +2122,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"id":"a3840e61-695d-46a1-b9a7-131640743150", "name":"cli-test", "description":"cli-test", - "status":"to_create", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"4eb91793-c51e-4e95-bd60-55b05021c286", - "ip_address":"51.159.204.71", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"a3840e61-695d-46a1-b9a7-131640743150", - "reverse":"51-159-204-71.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], - "tags":[], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, - "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-04-13T07:36:42.843796271Z", - "updated_at":"2023-04-13T07:36:42.843796271Z", "private_network_count":0, "route_count":0, - "region":"fr-par", "zone":"fr-par-1"}' + body: '{"id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","name":"cli-test","description":"cli-test","status":"to_create","instances":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"476eef00-36ba-4666-9352-9b1a862abe1f","ip_address":"195.154.197.172","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","reverse":"195-154-197-172.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2023-05-12T12:27:00.125325366Z","updated_at":"2023-05-12T12:27:00.125325366Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "893" + - "871" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:36:43 GMT + - Fri, 12 May 2023 12:27:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1826,7 +2141,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 820b3e12-f744-46a5-9611-74ccfe62d5be + - 7ff1ced2-23ec-415a-97c4-8c6b56bae615 status: 200 OK code: 200 duration: "" @@ -1836,30 +2151,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a3840e61-695d-46a1-b9a7-131640743150 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c method: GET response: - body: '{"id":"a3840e61-695d-46a1-b9a7-131640743150", "name":"cli-test", "description":"cli-test", - "status":"creating", "instances":[{"id":"394ca748-a040-4b7e-ac74-88f4d15a2262", - "status":"unknown", "ip_address":"10.64.92.51", "created_at":"2023-04-13T07:30:42.773083Z", - "updated_at":"2023-04-13T07:36:43.131666Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"4eb91793-c51e-4e95-bd60-55b05021c286", "ip_address":"51.159.204.71", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"a3840e61-695d-46a1-b9a7-131640743150", "reverse":"51-159-204-71.lb.fr-par.scw.cloud", - "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, - "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2023-04-13T07:36:42.843796Z", "updated_at":"2023-04-13T07:36:43.150536Z", - "private_network_count":0, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + body: '{"id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","name":"cli-test","description":"cli-test","status":"creating","instances":[{"id":"7b574e11-bcc2-4040-bbb0-c0450a578602","status":"ready","ip_address":"10.76.58.65","created_at":"2023-05-10T13:08:05.309349Z","updated_at":"2023-05-12T12:27:00.757820Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"476eef00-36ba-4666-9352-9b1a862abe1f","ip_address":"195.154.197.172","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","reverse":"195-154-197-172.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2023-05-12T12:27:00.125325Z","updated_at":"2023-05-12T12:27:00.418769Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:36:43 GMT + - Fri, 12 May 2023 12:27:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1869,7 +2173,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 280b163f-486f-4aec-8f54-f1881f6c86da + - d3ef36e3-0c58-4a63-bf48-847a3dae1ff2 status: 200 OK code: 200 duration: "" @@ -1879,30 +2183,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a3840e61-695d-46a1-b9a7-131640743150 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c method: GET response: - body: '{"id":"a3840e61-695d-46a1-b9a7-131640743150", "name":"cli-test", "description":"cli-test", - "status":"ready", "instances":[{"id":"394ca748-a040-4b7e-ac74-88f4d15a2262", - "status":"ready", "ip_address":"10.64.92.51", "created_at":"2023-04-13T07:30:42.773083Z", - "updated_at":"2023-04-13T07:36:43.726829Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"4eb91793-c51e-4e95-bd60-55b05021c286", "ip_address":"51.159.204.71", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"a3840e61-695d-46a1-b9a7-131640743150", "reverse":"51-159-204-71.lb.fr-par.scw.cloud", - "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, - "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2023-04-13T07:36:42.843796Z", "updated_at":"2023-04-13T07:36:44.944587Z", - "private_network_count":0, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + body: '{"id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","name":"cli-test","description":"cli-test","status":"ready","instances":[{"id":"7b574e11-bcc2-4040-bbb0-c0450a578602","status":"ready","ip_address":"10.76.58.65","created_at":"2023-05-10T13:08:05.309349Z","updated_at":"2023-05-12T12:27:00.757820Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"476eef00-36ba-4666-9352-9b1a862abe1f","ip_address":"195.154.197.172","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","reverse":"195-154-197-172.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2023-05-12T12:27:00.125325Z","updated_at":"2023-05-12T12:27:01.948660Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1100" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:36:45 GMT + - Fri, 12 May 2023 12:27:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1912,7 +2205,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e728e43-4320-4cde-9c4b-977c5e435949 + - c2182358-4217-4610-aa03-488379fe90ae status: 200 OK code: 200 duration: "" @@ -1924,33 +2217,19 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a3840e61-695d-46a1-b9a7-131640743150/private-networks/f99b7ebb-a524-4394-81d7-b0ff710054c4/attach + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c/private-networks/57c74385-6157-413e-903b-273f66181b80/attach method: POST response: - body: '{"lb":{"id":"a3840e61-695d-46a1-b9a7-131640743150", "name":"cli-test", - "description":"cli-test", "status":"ready", "instances":[{"id":"394ca748-a040-4b7e-ac74-88f4d15a2262", - "status":"ready", "ip_address":"10.64.92.51", "created_at":"2023-04-13T07:30:42.773083Z", - "updated_at":"2023-04-13T07:36:43.726829Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"4eb91793-c51e-4e95-bd60-55b05021c286", "ip_address":"51.159.204.71", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"a3840e61-695d-46a1-b9a7-131640743150", "reverse":"51-159-204-71.lb.fr-par.scw.cloud", - "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, - "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2023-04-13T07:36:42.843796Z", "updated_at":"2023-04-13T07:36:44.944587Z", - "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}, - "private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", "status":"pending", - "created_at":"2023-04-13T07:36:45.535594626Z", "updated_at":"2023-04-13T07:36:45.535594626Z", - "dhcp_config":{}}' + body: '{"lb":{"id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","name":"cli-test","description":"cli-test","status":"ready","instances":[{"id":"7b574e11-bcc2-4040-bbb0-c0450a578602","status":"ready","ip_address":"10.76.58.65","created_at":"2023-05-10T13:08:05.309349Z","updated_at":"2023-05-12T12:27:00.757820Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"476eef00-36ba-4666-9352-9b1a862abe1f","ip_address":"195.154.197.172","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","reverse":"195-154-197-172.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2023-05-12T12:27:00.125325Z","updated_at":"2023-05-12T12:27:01.948660Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"57c74385-6157-413e-903b-273f66181b80","status":"pending","created_at":"2023-05-12T12:27:03.034653377Z","updated_at":"2023-05-12T12:27:03.034653377Z","dhcp_config":{}}' headers: Content-Length: - - "1300" + - "1267" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:36:45 GMT + - Fri, 12 May 2023 12:27:03 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1960,12 +2239,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 788c1b63-f6c8-4885-9215-6fb89ed4d9a0 + - 81d13ce1-fe71-4958-9ff5-9d17b053c89d status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"cli-test","engine":"PostgreSQL-12","user_name":"foobar","password":"{4xdl*#QOoP+\u00263XRkGA)]","node_type":"db-dev-s","is_ha_cluster":false,"disable_backup":false,"tags":null,"init_settings":null,"volume_type":"lssd","volume_size":0,"init_endpoints":[{"private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4","service_ip":"192.168.0.1/24"}}],"backup_same_region":false}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"cli-test","engine":"PostgreSQL-12","user_name":"foobar","password":"{4xdl*#QOoP+\u00263XRkGA)]","node_type":"db-dev-s","is_ha_cluster":false,"disable_backup":false,"tags":null,"init_settings":null,"volume_type":"lssd","volume_size":0,"init_endpoints":[{"private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24"}}],"backup_same_region":false}' form: {} headers: Content-Type: @@ -1975,230 +2254,16 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' - headers: - Content-Length: - - "912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 13 Apr 2023 07:36:46 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 05dd60b8-71c0-4d1c-a445-37a6d572375b - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 - method: GET - response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' - headers: - Content-Length: - - "912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 13 Apr 2023 07:36:46 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - edd105fa-f9b5-43bc-8651-67cbdb2f6b37 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 - method: GET - response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' - headers: - Content-Length: - - "912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 13 Apr 2023 07:37:01 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8ae47cc7-1d1f-4b0f-85ef-d5b34502c5df - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 - method: GET - response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' - headers: - Content-Length: - - "912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 13 Apr 2023 07:37:16 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 254f9214-ff84-44a2-aa50-4f4a91de8f30 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 - method: GET - response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' - headers: - Content-Length: - - "912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 13 Apr 2023 07:37:31 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0e45be9a-c56d-4635-877a-0c12278c6474 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 - method: GET - response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "912" + - "881" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:37:47 GMT + - Fri, 12 May 2023 12:27:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2208,7 +2273,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c86202d-5edb-4f66-bb70-b7b102c8b636 + - e670727a-ef53-4008-a8bf-e747bac2b69d status: 200 OK code: 200 duration: "" @@ -2218,28 +2283,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 method: GET response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "912" + - "881" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:38:02 GMT + - Fri, 12 May 2023 12:27:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2249,7 +2305,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12151e7d-e462-4b0c-bc10-df68c7d0084e + - ac0a9a7a-a296-4c6c-936c-3c745fc1e7c3 status: 200 OK code: 200 duration: "" @@ -2259,28 +2315,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 method: GET response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "912" + - "881" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:38:17 GMT + - Fri, 12 May 2023 12:27:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2290,7 +2337,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 133c33b9-190c-4f6f-98ba-ff2c299ec6e2 + - e850b022-a82a-4386-8598-bd9b4adb055b status: 200 OK code: 200 duration: "" @@ -2300,28 +2347,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 method: GET response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "912" + - "881" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:38:32 GMT + - Fri, 12 May 2023 12:27:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2331,7 +2369,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14cb16ed-b4a0-4233-aee1-64c766a62a06 + - a59f6045-23bb-4356-a659-b5d98a2f8299 status: 200 OK code: 200 duration: "" @@ -2341,28 +2379,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 method: GET response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "912" + - "881" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:38:47 GMT + - Fri, 12 May 2023 12:27:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2372,7 +2401,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b5691cd-61c2-4f3b-b3f0-a511a446e080 + - 8a046f5f-a9e4-4505-abf4-cbb199f32cfb status: 200 OK code: 200 duration: "" @@ -2382,28 +2411,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 method: GET response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "912" + - "881" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:39:02 GMT + - Fri, 12 May 2023 12:28:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2413,7 +2433,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef764197-f477-4e66-bbea-207ae4c67f0b + - 4b98e998-932a-489f-aed3-ec69587ec8f2 status: 200 OK code: 200 duration: "" @@ -2423,28 +2443,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 method: GET response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "912" + - "881" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:39:17 GMT + - Fri, 12 May 2023 12:28:19 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2454,7 +2465,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c15c363-b442-4a08-b6e6-2cdd40472b41 + - a29ad338-7b00-48b6-bee0-17f90eac3741 status: 200 OK code: 200 duration: "" @@ -2464,28 +2475,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 method: GET response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "912" + - "881" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:39:33 GMT + - Fri, 12 May 2023 12:28:34 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2495,7 +2497,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00afea5a-46e8-4328-81ad-536a0ad81500 + - 513272fb-8a81-474c-8266-0fc5659af75a status: 200 OK code: 200 duration: "" @@ -2505,28 +2507,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 method: GET response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "912" + - "881" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:39:48 GMT + - Fri, 12 May 2023 12:28:49 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2536,7 +2529,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c54120a8-328b-44c5-9d05-f76562edd25b + - 65a02593-fdab-433b-ba83-61abe40682a8 status: 200 OK code: 200 duration: "" @@ -2546,28 +2539,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 method: GET response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "912" + - "881" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:03 GMT + - Fri, 12 May 2023 12:29:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2577,7 +2561,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a233992f-43c4-4b11-829d-c4aa6fa37c6d + - cc09f92d-c632-49ce-83e2-7f2d3da9f899 status: 200 OK code: 200 duration: "" @@ -2587,28 +2571,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 method: GET response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "912" + - "881" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:18 GMT + - Fri, 12 May 2023 12:29:20 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2618,7 +2593,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82b0cbce-8bc0-469d-8dba-b07fe7ee4f00 + - 25cea992-1491-4df7-8e57-93b6b259a084 status: 200 OK code: 200 duration: "" @@ -2628,28 +2603,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 method: GET response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "912" + - "881" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:33 GMT + - Fri, 12 May 2023 12:29:35 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2659,7 +2625,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a14b6e71-3d25-44e8-b6dd-19eb62703631 + - 3ad98115-bf42-4cbb-8c68-d64d98a36283 status: 200 OK code: 200 duration: "" @@ -2669,33 +2635,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 method: GET response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[], "endpoint":{"ip":"51.159.24.161", "port":24701, "name":null, - "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}, "tags":[], - "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}, {"ip":"51.159.24.161", "port":24701, - "name":null, "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}},{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "1406" + - "1355" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:48 GMT + - Fri, 12 May 2023 12:29:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2705,7 +2657,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0710023-f45c-4541-803a-3158affa6189 + - 99c7333d-fee0-4c1a-b3c1-a42787b3b96e status: 200 OK code: 200 duration: "" @@ -2715,22 +2667,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/f99b7ebb-a524-4394-81d7-b0ff710054c4 + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/57c74385-6157-413e-903b-273f66181b80 method: GET response: - body: '{"id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", "name":"cli-pn-practical-austin", - "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-04-13T07:36:40.254021Z", - "updated_at":"2023-04-13T07:36:40.254021Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "subnets":["172.16.184.0/22", "fd46:78ab:30b8:e6b::/64"], "zone":"fr-par-1"}' + body: '{"id":"57c74385-6157-413e-903b-273f66181b80","name":"cli-pn-cocky-wu","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2023-05-12T12:26:57.848128Z","updated_at":"2023-05-12T12:26:57.848128Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":["172.16.12.0/22","fd46:78ab:30b8:7e91::/64"],"zone":"fr-par-1"}' headers: Content-Length: - - "366" + - "349" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:48 GMT + - Fri, 12 May 2023 12:29:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2740,7 +2689,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa39fcd6-6ad4-47ad-8dff-7281e5562a3d + - 06015a32-3333-4001-b326-d28f6956fa1d status: 200 OK code: 200 duration: "" @@ -2750,30 +2699,30 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&page=1&private_network=f99b7ebb-a524-4394-81d7-b0ff710054c4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&page=1&private_network=57c74385-6157-413e-903b-273f66181b80 method: GET response: - body: '{"servers": [{"id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", "name": "cli-srv-flamboyant-mayer", + body: '{"servers": [{"id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", "name": "cli-srv-youthful-albattani", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", + "hostname": "cli-srv-youthful-albattani", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, - "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", - "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, - "volumes": {"0": {"boot": false, "id": "c4a503a4-b026-415c-a757-9cda4b7dfb2f", + "volumes": {"0": {"boot": false, "id": "d33b0abb-6cd0-4115-960c-b852df4f5143", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "server": {"id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", "name": "cli-srv-flamboyant-mayer"}, - "size": 20000000000, "state": "available", "creation_date": "2023-04-13T07:36:41.718299+00:00", - "modification_date": "2023-04-13T07:36:41.718299+00:00", "tags": [], "zone": + "server": {"id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", "name": "cli-srv-youthful-albattani"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-12T12:26:59.186487+00:00", + "modification_date": "2023-05-12T12:26:59.186487+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", + "", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-04-13T07:36:41.718299+00:00", - "modification_date": "2023-04-13T07:36:41.718299+00:00", "bootscript": {"id": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-12T12:26:59.186487+00:00", + "modification_date": "2023-05-12T12:26:59.186487+00:00", "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", @@ -2781,22 +2730,22 @@ interactions: "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": - ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "461b407b-b628-4750-97bc-5db35b781355", - "private_network_id": "f99b7ebb-a524-4394-81d7-b0ff710054c4", "server_id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", - "mac_address": "02:00:00:12:b4:60", "state": "available", "creation_date": "2023-04-13T07:36:42.183980+00:00", - "modification_date": "2023-04-13T07:36:43.473804+00:00", "zone": "fr-par-1", + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "6b8fc07e-2634-4253-bcff-4fd605655474", + "private_network_id": "57c74385-6157-413e-903b-273f66181b80", "server_id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", + "mac_address": "02:00:00:12:e9:f3", "state": "available", "creation_date": "2023-05-12T12:26:59.589036+00:00", + "modification_date": "2023-05-12T12:27:00.270830+00:00", "zone": "fr-par-1", "tags": []}], "zone": "fr-par-1"}]}' headers: Content-Length: - - "3001" + - "3009" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:48 GMT + - Fri, 12 May 2023 12:29:50 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -2807,7 +2756,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a75ea442-f185-40bc-8ce9-0af9ad46ec54 + - 7a264ef0-8c3c-4d6a-8f2a-773f6ad2062a X-Total-Count: - "1" status: 200 OK @@ -2819,19 +2768,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&page=1&private_network_id=f99b7ebb-a524-4394-81d7-b0ff710054c4 + url: https://api.scaleway.com/baremetal/v1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&page=1&private_network_id=57c74385-6157-413e-903b-273f66181b80 method: GET response: - body: '{"server_private_networks":[], "total_count":0}' + body: '{"server_private_networks":[],"total_count":0}' headers: Content-Length: - - "47" + - "46" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:49 GMT + - Fri, 12 May 2023 12:29:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2841,7 +2790,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b460028-8f28-48f0-8c2a-30c897c6d825 + - 49116d30-fbe6-4086-9606-9819303058a8 status: 200 OK code: 200 duration: "" @@ -2854,28 +2803,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?order_by=created_at_asc method: GET response: - body: '{"lbs":[{"id":"a3840e61-695d-46a1-b9a7-131640743150", "name":"cli-test", - "description":"cli-test", "status":"ready", "instances":[{"id":"394ca748-a040-4b7e-ac74-88f4d15a2262", - "status":"ready", "ip_address":"10.64.92.51", "created_at":"2023-04-13T07:30:42.773083Z", - "updated_at":"2023-04-13T07:36:43.726829Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"4eb91793-c51e-4e95-bd60-55b05021c286", "ip_address":"51.159.204.71", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"a3840e61-695d-46a1-b9a7-131640743150", "reverse":"51-159-204-71.lb.fr-par.scw.cloud", - "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, - "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2023-04-13T07:36:42.843796Z", "updated_at":"2023-04-13T07:36:44.944587Z", - "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}], - "total_count":1}' + body: '{"lbs":[{"id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","name":"cli-test","description":"cli-test","status":"ready","instances":[{"id":"7b574e11-bcc2-4040-bbb0-c0450a578602","status":"ready","ip_address":"10.76.58.65","created_at":"2023-05-10T13:08:05.309349Z","updated_at":"2023-05-12T12:27:00.757820Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"476eef00-36ba-4666-9352-9b1a862abe1f","ip_address":"195.154.197.172","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","reverse":"195-154-197-172.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2023-05-12T12:27:00.125325Z","updated_at":"2023-05-12T12:27:01.948660Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "1127" + - "1098" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:49 GMT + - Fri, 12 May 2023 12:29:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2885,7 +2822,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98ca7658-7328-4324-b2aa-1e81ffa09406 + - cb173b5a-8ed7-4aa3-8a24-18821e210c5a status: 200 OK code: 200 duration: "" @@ -2895,31 +2832,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a3840e61-695d-46a1-b9a7-131640743150/private-networks?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c/private-networks?order_by=created_at_asc&page=1 method: GET response: - body: '{"private_network":[{"lb":{"id":"a3840e61-695d-46a1-b9a7-131640743150", - "name":"cli-test", "description":"cli-test", "status":"ready", "instances":[], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"4eb91793-c51e-4e95-bd60-55b05021c286", "ip_address":"51.159.204.71", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"a3840e61-695d-46a1-b9a7-131640743150", "reverse":"51-159-204-71.lb.fr-par.scw.cloud", - "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, - "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2023-04-13T07:36:42.843796Z", "updated_at":"2023-04-13T07:36:44.944587Z", - "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}, - "private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", "status":"ready", - "created_at":"2023-04-13T07:36:45.535595Z", "updated_at":"2023-04-13T07:36:53.148692Z", - "dhcp_config":{}}], "total_count":1}' + body: '{"private_network":[{"lb":{"id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","name":"cli-test","description":"cli-test","status":"ready","instances":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"476eef00-36ba-4666-9352-9b1a862abe1f","ip_address":"195.154.197.172","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","reverse":"195-154-197-172.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2023-05-12T12:27:00.125325Z","updated_at":"2023-05-12T12:27:01.948660Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"57c74385-6157-413e-903b-273f66181b80","status":"ready","created_at":"2023-05-12T12:27:03.034653Z","updated_at":"2023-05-12T12:27:10.683968Z","dhcp_config":{}}],"total_count":1}' headers: Content-Length: - - "1114" + - "1086" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:49 GMT + - Fri, 12 May 2023 12:29:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2929,7 +2854,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70bb2139-966e-46c2-b88a-6328f763576d + - 0dac6dac-449d-466e-8b14-d262f5091b5b status: 200 OK code: 200 duration: "" @@ -2942,31 +2867,16 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances?order_by=created_at_asc&page=1 method: GET response: - body: '{"instances":[{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "status":"ready", "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":{"ip":"51.159.24.161", - "port":24701, "name":null, "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}, {"ip":"51.159.24.161", "port":24701, - "name":null, "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}], - "total_count":1}' + body: '{"instances":[{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}},{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}],"total_count":1}' headers: Content-Length: - - "1439" + - "1387" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:49 GMT + - Fri, 12 May 2023 12:29:50 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2976,7 +2886,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc057e50-7810-411c-9936-a9556023b0fb + - dca93420-a0d5-4090-8ef4-de24e215e42c status: 200 OK code: 200 duration: "" @@ -2989,16 +2899,16 @@ interactions: url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters?order_by=created_at_asc&page=1 method: GET response: - body: '{"clusters":[], "total_count":0}' + body: '{"clusters":[],"total_count":0}' headers: Content-Length: - - "32" + - "31" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:49 GMT + - Fri, 12 May 2023 12:29:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3008,7 +2918,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 018228bc-376a-48de-a1d9-398aa6599b66 + - eed45ce9-4892-435b-8d29-87d2bb9d6ba1 status: 200 OK code: 200 duration: "" @@ -3021,16 +2931,16 @@ interactions: url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways?order_by=created_at_asc&page=1&status=unknown method: GET response: - body: '{"gateways":[], "total_count":0}' + body: '{"gateways":[],"total_count":0}' headers: Content-Length: - - "32" + - "31" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:49 GMT + - Fri, 12 May 2023 12:29:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3040,7 +2950,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09d330dc-d7c8-4903-8923-e818898843bc + - a38adc3d-c5f3-48b6-b1ea-ac4a84c413d9 status: 200 OK code: 200 duration: "" @@ -3052,7 +2962,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a3840e61-695d-46a1-b9a7-131640743150/private-networks/f99b7ebb-a524-4394-81d7-b0ff710054c4/detach + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c/private-networks/57c74385-6157-413e-903b-273f66181b80/detach method: POST response: body: "" @@ -3062,7 +2972,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:49 GMT + - Fri, 12 May 2023 12:29:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3072,7 +2982,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78b9fd87-e593-4736-991f-7648f2b94d61 + - 7273c101-a1ea-40f0-924a-a6cabfd3bdeb status: 204 No Content code: 204 duration: "" @@ -3082,7 +2992,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a3840e61-695d-46a1-b9a7-131640743150?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c?release_ip=false method: DELETE response: body: "" @@ -3092,7 +3002,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:49 GMT + - Fri, 12 May 2023 12:29:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3102,7 +3012,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15ef1fd5-c930-4e55-854a-d9dc97476792 + - f5bc0f80-376b-4871-bf10-b1b82aa70090 status: 204 No Content code: 204 duration: "" @@ -3112,30 +3022,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a3840e61-695d-46a1-b9a7-131640743150 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c method: GET response: - body: '{"id":"a3840e61-695d-46a1-b9a7-131640743150", "name":"cli-test", "description":"cli-test", - "status":"to_delete", "instances":[{"id":"394ca748-a040-4b7e-ac74-88f4d15a2262", - "status":"ready", "ip_address":"10.64.92.51", "created_at":"2023-04-13T07:30:42.773083Z", - "updated_at":"2023-04-13T07:36:43.726829Z", "region":"fr-par", "zone":"fr-par-1"}], - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "ip":[{"id":"4eb91793-c51e-4e95-bd60-55b05021c286", "ip_address":"51.159.204.71", - "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "lb_id":"a3840e61-695d-46a1-b9a7-131640743150", "reverse":"51-159-204-71.lb.fr-par.scw.cloud", - "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, - "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", - "created_at":"2023-04-13T07:36:42.843796Z", "updated_at":"2023-04-13T07:40:49.804504Z", - "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' + body: '{"id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","name":"cli-test","description":"cli-test","status":"to_delete","instances":[{"id":"7b574e11-bcc2-4040-bbb0-c0450a578602","status":"ready","ip_address":"10.76.58.65","created_at":"2023-05-10T13:08:05.309349Z","updated_at":"2023-05-12T12:27:00.757820Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"476eef00-36ba-4666-9352-9b1a862abe1f","ip_address":"195.154.197.172","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","reverse":"195-154-197-172.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2023-05-12T12:27:00.125325Z","updated_at":"2023-05-12T12:29:51.468124Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' headers: Content-Length: - - "1104" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:50 GMT + - Fri, 12 May 2023 12:29:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3145,7 +3044,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d02d0cc-027d-46f8-921d-56d6d1343049 + - b656b026-eed7-4916-82be-7aaa19a58552 status: 200 OK code: 200 duration: "" @@ -3155,30 +3054,30 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2248b9b4-dd07-44bc-bde3-3be1c6ec9483 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3acf3418-9644-4dbe-a5d1-3b78db3fbd17 method: GET response: - body: '{"server": {"id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", "name": "cli-srv-flamboyant-mayer", + body: '{"server": {"id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", "name": "cli-srv-youthful-albattani", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-flamboyant-mayer", "image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", + "hostname": "cli-srv-youthful-albattani", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, - "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", - "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, - "volumes": {"0": {"boot": false, "id": "c4a503a4-b026-415c-a757-9cda4b7dfb2f", + "volumes": {"0": {"boot": false, "id": "d33b0abb-6cd0-4115-960c-b852df4f5143", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "server": {"id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", "name": "cli-srv-flamboyant-mayer"}, - "size": 20000000000, "state": "available", "creation_date": "2023-04-13T07:36:41.718299+00:00", - "modification_date": "2023-04-13T07:36:41.718299+00:00", "tags": [], "zone": + "server": {"id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", "name": "cli-srv-youthful-albattani"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-12T12:26:59.186487+00:00", + "modification_date": "2023-05-12T12:26:59.186487+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", + "", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": "51.15.207.142", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-04-13T07:36:41.718299+00:00", - "modification_date": "2023-04-13T07:36:41.718299+00:00", "bootscript": {"id": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-12T12:26:59.186487+00:00", + "modification_date": "2023-05-12T12:26:59.186487+00:00", "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", @@ -3186,20 +3085,20 @@ interactions: "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": - ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "461b407b-b628-4750-97bc-5db35b781355", - "private_network_id": "f99b7ebb-a524-4394-81d7-b0ff710054c4", "server_id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", - "mac_address": "02:00:00:12:b4:60", "state": "available", "creation_date": "2023-04-13T07:36:42.183980+00:00", - "modification_date": "2023-04-13T07:36:43.473804+00:00", "zone": "fr-par-1", + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "6b8fc07e-2634-4253-bcff-4fd605655474", + "private_network_id": "57c74385-6157-413e-903b-273f66181b80", "server_id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", + "mac_address": "02:00:00:12:e9:f3", "state": "available", "creation_date": "2023-05-12T12:26:59.589036+00:00", + "modification_date": "2023-05-12T12:27:00.270830+00:00", "zone": "fr-par-1", "tags": []}], "zone": "fr-par-1"}}' headers: Content-Length: - - "2998" + - "3006" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:50 GMT + - Fri, 12 May 2023 12:29:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3209,7 +3108,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7552db86-d627-4a92-9974-ff9444285cc5 + - b722ebed-a0cb-48ac-9294-7e680f318109 status: 200 OK code: 200 duration: "" @@ -3219,7 +3118,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2248b9b4-dd07-44bc-bde3-3be1c6ec9483 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3acf3418-9644-4dbe-a5d1-3b78db3fbd17 method: DELETE response: body: "" @@ -3227,7 +3126,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Thu, 13 Apr 2023 07:40:50 GMT + - Fri, 12 May 2023 12:29:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3237,7 +3136,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 675bf538-dc29-4df5-83f3-1592c347cd63 + - dda0565f-ffb9-442e-b657-bae665438b77 status: 204 No Content code: 204 duration: "" @@ -3247,7 +3146,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c4a503a4-b026-415c-a757-9cda4b7dfb2f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d33b0abb-6cd0-4115-960c-b852df4f5143 method: DELETE response: body: "" @@ -3255,7 +3154,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Thu, 13 Apr 2023 07:40:50 GMT + - Fri, 12 May 2023 12:29:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3265,7 +3164,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18ae0d70-de14-489b-bdfc-772f62d487ec + - 5ab2192a-e807-49e0-b241-a2901345fa4e status: 204 No Content code: 204 duration: "" @@ -3275,7 +3174,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/09cd306e-1cc3-4652-8e47-cf00dcdd63ad + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/6bc9ea33-62a3-43fd-9480-d11528653bcc method: DELETE response: body: "" @@ -3285,7 +3184,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:51 GMT + - Fri, 12 May 2023 12:29:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3295,7 +3194,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec9da88f-0135-4350-aabc-12f5cc9d5785 + - 0c1270c1-25ff-4731-8b2b-98f0f86d5835 status: 204 No Content code: 204 duration: "" @@ -3305,33 +3204,51 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + method: GET + response: + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"configuring","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}},{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + headers: + Content-Length: + - "1361" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 12 May 2023 12:29:52 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 24007dde-21cb-4a1f-845e-739cea343df1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 method: GET response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":{"ip":"51.159.24.161", - "port":24701, "name":null, "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, - "name":null, "id":"09cd306e-1cc3-4652-8e47-cf00dcdd63ad", "private_network":{"private_network_id":"f99b7ebb-a524-4394-81d7-b0ff710054c4", - "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}, {"ip":"51.159.24.161", "port":24701, - "name":null, "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"configuring","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "1412" + - "1144" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:40:51 GMT + - Fri, 12 May 2023 12:30:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3341,7 +3258,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3d7cc36-587f-4633-a0a7-32204fd6bb4b + - 88ea0dea-16fd-42a1-aba6-8b7ca28f0bb5 status: 200 OK code: 200 duration: "" @@ -3351,31 +3268,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 method: GET response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[], "endpoint":{"ip":"51.159.24.161", "port":24701, "name":null, - "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}, "tags":[], - "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"51.159.24.161", - "port":24701, "name":null, "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "1182" + - "1138" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:06 GMT + - Fri, 12 May 2023 12:30:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3385,7 +3290,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 480b9710-4bc3-421d-a9f9-889bec3334a5 + - d71d4cc5-766a-4878-ba50-bc303f0c125e status: 200 OK code: 200 duration: "" @@ -3395,31 +3300,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c1719cb-b4f1-4953-ba1a-a4439ba842f5 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 method: DELETE response: - body: '{"id":"7c1719cb-b4f1-4953-ba1a-a4439ba842f5", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[], "endpoint":{"ip":"51.159.24.161", "port":24701, "name":null, - "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}, "tags":[], - "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"51.159.24.161", - "port":24701, "name":null, "id":"2183ff74-0c44-4e6f-ae4d-4d7f34d09f5f", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-04-13T07:36:45.932142Z", "region":"fr-par"}' + body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' headers: Content-Length: - - "1185" + - "1141" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:06 GMT + - Fri, 12 May 2023 12:30:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3429,7 +3322,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dff4798f-cdbd-4bdf-9006-8a50c248e4ee + - 7238204e-86bf-426e-9365-5bf40cc9d192 status: 200 OK code: 200 duration: "" @@ -3439,7 +3332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/f99b7ebb-a524-4394-81d7-b0ff710054c4 + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/57c74385-6157-413e-903b-273f66181b80 method: DELETE response: body: "" @@ -3449,7 +3342,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:06 GMT + - Fri, 12 May 2023 12:30:23 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3459,7 +3352,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cf289e5-5039-4ee2-86fa-68ac220f73a9 + - fa6d5b34-ac66-4098-a6e7-356d079ac2e6 status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.golden b/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.golden index 4669d92f10..e38d33809c 100644 --- a/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.golden +++ b/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.golden @@ -1,39 +1,39 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID f99b7ebb-a524-4394-81d7-b0ff710054c4 -Name cli-pn-practical-austin +ID 57c74385-6157-413e-903b-273f66181b80 +Name cli-pn-cocky-wu OrganizationID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 ProjectID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 Zone fr-par-1 CreatedAt few seconds ago UpdatedAt few seconds ago -Subnets.0 172.16.184.0/22 -Subnets.1 fd46:78ab:30b8:e6b::/64 +Subnets.0 172.16.12.0/22 +Subnets.1 fd46:78ab:30b8:7e91::/64 -InstanceServers: -ID NAME STATE NIC ID MAC ADDRESS -2248b9b4-dd07-44bc-bde3-3be1c6ec9483 cli-srv-flamboyant-mayer archived 461b407b-b628-4750-97bc-5db35b781355 02:00:00:12:b4:60 +Instance Servers: +ID NAME STATE NIC ID MAC ADDRESS +3acf3418-9644-4dbe-a5d1-3b78db3fbd17 cli-srv-youthful-albattani archived 6b8fc07e-2634-4253-bcff-4fd605655474 02:00:00:12:e9:f3 -BaremetalServers: -ID NAME STATE BAREMETAL NETWORK ID +Baremetal Servers: +ID NAME STATE BAREMETAL NETWORK ID VLAN -LBs: +Load-Balancers: ID NAME STATE -a3840e61-695d-46a1-b9a7-131640743150 cli-test ready +ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c cli-test ready -RdbInstances: +Rdb Instances: ID NAME STATE ENDPOINT ID -7c1719cb-b4f1-4953-ba1a-a4439ba842f5 cli-test ready 09cd306e-1cc3-4652-8e47-cf00dcdd63ad +a0731903-a922-413b-aba3-b2779b595317 cli-test ready 6bc9ea33-62a3-43fd-9480-d11528653bcc -RedisClusters: +Redis Clusters: ID NAME STATE ENDPOINT ID -Gateways: +Public Gateways: ID NAME STATE GATEWAY NETWORK ID 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "id": "f99b7ebb-a524-4394-81d7-b0ff710054c4", - "name": "cli-pn-practical-austin", + "id": "57c74385-6157-413e-903b-273f66181b80", + "name": "cli-pn-cocky-wu", "organization_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", @@ -41,32 +41,32 @@ ID NAME STATE GATEWAY NETWORK ID "created_at": "1970-01-01T00:00:00.0Z", "updated_at": "1970-01-01T00:00:00.0Z", "subnets": [ - "172.16.184.0/22", - "fd46:78ab:30b8:e6b::/64" + "172.16.12.0/22", + "fd46:78ab:30b8:7e91::/64" ], "instance_servers": [ { - "id": "2248b9b4-dd07-44bc-bde3-3be1c6ec9483", - "name": "cli-srv-flamboyant-mayer", + "id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", + "name": "cli-srv-youthful-albattani", "state": "stopped", - "nic_id": "461b407b-b628-4750-97bc-5db35b781355", - "mac": "02:00:00:12:b4:60" + "nic_id": "6b8fc07e-2634-4253-bcff-4fd605655474", + "mac": "02:00:00:12:e9:f3" } ], "baremetal_servers": null, "lbs": [ { - "id": "a3840e61-695d-46a1-b9a7-131640743150", + "id": "ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c", "server_id": "cli-test", "state": "ready" } ], "rdb_instances": [ { - "id": "7c1719cb-b4f1-4953-ba1a-a4439ba842f5", + "id": "a0731903-a922-413b-aba3-b2779b595317", "server_id": "cli-test", "state": "ready", - "endpoint_id": "09cd306e-1cc3-4652-8e47-cf00dcdd63ad" + "endpoint_id": "6bc9ea33-62a3-43fd-9480-d11528653bcc" } ], "redis_clusters": null, diff --git a/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.cassette.yaml b/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.cassette.yaml index 22873b56ee..d8bed3df66 100644 --- a/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.cassette.yaml +++ b/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.cassette.yaml @@ -2,7 +2,7 @@ version: 1 interactions: - request: - body: '{"name":"cli-pn-recursing-clarke","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null}' + body: '{"name":"cli-pn-agitated-ritchie","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null}' form: {} headers: Content-Type: @@ -12,19 +12,16 @@ interactions: url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks method: POST response: - body: '{"id":"1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1", "name":"cli-pn-recursing-clarke", - "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-04-13T07:41:50.374622Z", - "updated_at":"2023-04-13T07:41:50.374622Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "subnets":["172.16.184.0/22", "fd46:78ab:30b8:ab9b::/64"], "zone":"fr-par-1"}' + body: '{"id":"a7389447-5a20-4ac0-af97-a6d354a1d09a","name":"cli-pn-agitated-ritchie","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2023-05-12T12:26:38.173311Z","updated_at":"2023-05-12T12:26:38.173311Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":["172.16.8.0/22","fd46:78ab:30b8:fa22::/64"],"zone":"fr-par-1"}' headers: Content-Length: - - "367" + - "356" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:50 GMT + - Fri, 12 May 2023 12:26:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -34,7 +31,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3f9cb45-4439-4f9a-8a60-803d9da97c82 + - 40027167-10a0-46bd-a8c6-e01e328330f2 status: 200 OK code: 200 duration: "" @@ -52,119 +49,173 @@ interactions: "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux distribution, governed and driven by the community, focused on long-term stability and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "73b7fe3c-6545-4f6e-aad0-e76c02404fbe", - "name": "2023-03-27T10:14:00.576321+00:00", "local_images": [{"id": "61d98e45-5103-4b3c-8ac6-060d65d0a2a5", - "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", - "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "690989ec-6014-4bc0-aa91-8b25de109120", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "name": "Instances User Resources Build System"}, "versions": [{"id": "41f32a25-c977-4dae-9a80-c997de7084c4", + "name": "2023-04-13T13:09:21.808853+00:00", "local_images": [{"id": "2d0ee515-2888-4c3a-ad0f-e59706b4129e", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8947e592-8e0b-4e96-be26-f2bec8c9b2fd", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "18c1965e-2f19-4be1-bf76-c00493b5eb87", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "ac946746-0bb6-4be4-abd3-198eb122c9d6", "zone": "fr-par-2", "arch": "x86_64", + {"id": "8211d82a-2bae-4374-9db6-537fc4270bed", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "0ccb174b-2ee2-48da-90dc-c437169b7c8c", "zone": "fr-par-3", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "57a0b470-123a-4c73-a41f-89a9a249cf0e", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "7e5efe0b-4e07-4fc0-8c90-5cf434742bb6", "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "ce0dc6f9-3c96-4b2f-88eb-9926f173196a", "zone": "pl-waw-1", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", - "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "6afebd6c-2c3d-4e52-a200-305d94d8e844", "zone": "par1", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", - "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO"]}, {"id": "d03b8ce7-b36d-41dc-a1fb-558d94e8dbd0", "zone": "ams1", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", - "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d979b82f-2a8e-414f-8e0f-7c198cded9eb", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", - "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], - "creation_date": "2023-03-27T10:14:00.744971+00:00", "modification_date": "2023-03-27T10:14:00.744971+00:00"}], - "categories": ["distribution"], "current_public_version": "73b7fe3c-6545-4f6e-aad0-e76c02404fbe", - "creation_date": "2021-10-05T13:36:52.246490+00:00", "modification_date": "2023-03-28T15:03:59.569897+00:00", - "valid_until": null}, {"id": "486ead23-9656-41d1-aa74-a5a780b2ae1b", "name": - "AlmaLinux 9", "label": "almalinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", - "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux - distribution, governed and driven by the community, focused on long-term stability - and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "ea9150d8-7c8e-4bd6-9312-ef9619890757", - "name": "2023-03-27T12:40:38.225508+00:00", "local_images": [{"id": "62a0e992-a6df-4180-aea7-a371a56a5f59", - "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + {"id": "29f387f4-367b-4a70-a1a5-f3e838779d6f", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "0907829d-3310-43a7-940e-f3d0edaa980f", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8a7f5fbb-0984-4732-904a-feb3f56df078", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "eefb08ee-e99a-4f62-85a3-b626bc704761", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "cc73f0cb-306a-419d-b8eb-0f951eb9283d", - "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "01acc25c-ba09-4830-851a-2542e5bc3dcb", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "f0c3e2f5-72d8-43b2-a139-ab850f6865bb", "zone": "fr-par-2", "arch": "x86_64", + {"id": "4cfdcb7b-c2fa-4cf0-afb3-84b40a1c3d5d", "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "a7c67fb1-27c1-4349-9d92-c4ddf119510a", "zone": "fr-par-3", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "c0a63d89-725b-4be6-b13e-967f11a85a1f", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8a052964-cef0-467e-a97b-44790b927041", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:09:21.960045+00:00", + "modification_date": "2023-04-13T13:09:21.960045+00:00"}], "categories": ["distribution"], + "current_public_version": "41f32a25-c977-4dae-9a80-c997de7084c4", "creation_date": + "2021-10-05T13:36:52.246490+00:00", "modification_date": "2023-04-13T14:39:27.135528+00:00", + "valid_until": null}, {"id": "486ead23-9656-41d1-aa74-a5a780b2ae1b", "name": + "AlmaLinux 9", "label": "almalinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", + "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux + distribution, governed and driven by the community, focused on long-term stability + and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "c8fe19b6-5406-42d1-82e2-92103b7f8323", + "name": "2023-04-13T13:08:00.223293+00:00", "local_images": [{"id": "8b2a0086-4014-4057-8681-9c23bdff934b", "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "2cd027ac-0747-48b0-9f20-f2c1d364e2d1", "zone": "pl-waw-1", "arch": "x86_64", + {"id": "ba414ba2-6fd3-472d-9426-9003d3be907d", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "ae4dd3e9-d980-4a2d-bdfa-0ad420882713", "zone": "par1", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", - "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO"]}, {"id": "718685dd-d66d-42fe-b74c-1f4895600496", "zone": "ams1", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", - "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "31c40954-2b15-4104-99e0-16184d8bc7c6", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "70c83503-a8da-48d3-bd74-f5edc76b597d", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "d5caa4ee-11c0-4f46-bbb0-975346a2868d", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "a4e5f971-f0d3-4c1a-9a87-7942cf35d54a", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "04627843-5631-4e6b-aa75-028cbda5cf9a", "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], - "creation_date": "2023-03-27T12:40:38.405478+00:00", "modification_date": "2023-03-27T12:40:38.405478+00:00"}], - "categories": ["distribution"], "current_public_version": "ea9150d8-7c8e-4bd6-9312-ef9619890757", - "creation_date": "2022-08-24T09:21:26.315925+00:00", "modification_date": "2023-03-28T15:05:12.419108+00:00", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "7a2606d4-6904-4ba7-95b5-367fd4229c42", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "ce34e9fa-b154-4bbd-a602-6dc4e311900b", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "55bcf97c-5b85-4483-ab44-26380076c73d", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "6e05dc1e-6785-4f90-a5b8-adcdeb8daffa", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:08:00.408431+00:00", + "modification_date": "2023-04-13T13:08:00.408431+00:00"}], "categories": ["distribution"], + "current_public_version": "c8fe19b6-5406-42d1-82e2-92103b7f8323", "creation_date": + "2022-08-24T09:21:26.315925+00:00", "modification_date": "2023-04-13T14:38:52.308804+00:00", "valid_until": null}, {"id": "8f60c5dd-e659-48da-97e3-fb7de42195f5", "name": "Arch Linux", "label": "arch_linux", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/archlinux.png", "description": "Arch Linux is an independently developed Linux distribution @@ -219,55 +270,56 @@ interactions: "description": "The CentOS Project is a community-driven free software effort focused on delivering a robust open source ecosystem.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "16dda4a4-874a-4e6c-a39b-f007457038d8", "name": - "2022-11-17T16:45:12.127950+00:00", "local_images": [{"id": "7fde748b-5475-4d4a-90a9-34292d227fa3", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + System"}, "versions": [{"id": "a37e7b5d-a5e5-4506-8897-4129bab079ca", "name": + "2023-04-13T13:05:23.543151+00:00", "local_images": [{"id": "15c5dd42-434b-49cf-a5b4-8bb3b5f9dc9d", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "8d8e561a-67ba-414d-9567-fdb9b70761da", "zone": "fr-par-3", "arch": "x86_64", + "54dfc73a-2a0b-4ea0-8e8e-abe85357a6cc", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "d579e95a-4c2c-4f37-b57e-c2fc22b87966", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "80f07490-eda6-4402-9273-001d059f2f40", "zone": - "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "d202a177-e307-4fe4-8e33-c014f15e1988", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "fc1f0708-c8e3-4ceb-a36a-6f47765d4f60", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "fc13535c-d2b6-4062-b4a6-e5b93fbbdf7a", "zone": "pl-waw-2", "arch": "x86_64", + "63b021be-1ec3-4227-b34d-06c976074422", "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "6306e909-ba53-4bb7-898f-f425b95a2848", "zone": - "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "620b5307-1861-4c88-8938-1e45afc9d3f6", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "3e454a77-0ff5-47b0-9c7a-cc4dca7acaeb", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], - "creation_date": "2022-11-17T16:45:12.324670+00:00", "modification_date": "2022-11-17T16:45:12.324670+00:00"}], - "categories": ["distribution"], "current_public_version": "16dda4a4-874a-4e6c-a39b-f007457038d8", - "creation_date": "2019-12-25T00:00:00+00:00", "modification_date": "2022-11-21T09:57:07.222778+00:00", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "98aceddf-c90f-4521-aa7b-93f942b5d2b5", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:05:23.795841+00:00", + "modification_date": "2023-04-13T13:05:23.795841+00:00"}], "categories": ["distribution"], + "current_public_version": "a37e7b5d-a5e5-4506-8897-4129bab079ca", "creation_date": + "2019-12-25T00:00:00+00:00", "modification_date": "2023-04-13T14:37:49.401742+00:00", "valid_until": null}, {"id": "f49dc23e-82d1-48c3-b80e-6c697b1dda92", "name": "Centos Stream 8", "label": "centos_stream_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/centos.png", "description": "The CentOS Project is a community-driven free software effort @@ -333,61 +385,87 @@ interactions: "description": "The CentOS Project is a community-driven free software effort focused on delivering a robust open source ecosystem.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "adcd38b6-0b86-4541-ac22-8746872f2f3f", "name": - "2023-03-27T15:41:43.491902+00:00", "local_images": [{"id": "6fc0bfd2-c4f5-4919-859b-ae020053fe65", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", - "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f33b7754-23be-4ad2-98ad-18af1b2da9ca", + System"}, "versions": [{"id": "4c494b40-7244-411c-a724-65b8eedb2bc2", "name": + "2023-04-13T13:06:38.087421+00:00", "local_images": [{"id": "f62ab353-50bd-4d10-b1d9-6c092c22c2f3", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "0204f372-964c-44bc-b9eb-214bf8ad1c08", "zone": "fr-par-2", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", - "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", - "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "faf2ef33-c477-4003-9de6-20e6210063a1", "zone": "pl-waw-1", "arch": "x86_64", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "c36b741d-3682-4550-b77f-9b5bbf5361a1", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "73ea099f-8489-4fbc-ada2-b8541d46df0c", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "00d03911-c48d-4ae9-937c-aa16fd01d720", "zone": "fr-par-3", "arch": "x86_64", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "3c8d2b19-b4f8-4cc1-aa04-534778519858", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "fe632ece-1b83-4036-8b7b-8f8a5aaae81b", "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "ea30b451-3c8c-4111-ae5f-c74a517da3fa", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8cd32169-81df-42d7-8581-6cfbf6293a6c", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "3dfd58df-f9ae-4c5c-87b8-76f14ccf9261", "zone": "fr-par-2", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "5e634970-32a9-4e6c-abab-9ed3df387f55", - "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "5937285a-eb94-481d-9196-7446b6783ec5", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "25d7c97d-36ec-456b-ad3c-a8739a17b50b", - "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8db20e68-5ae6-4335-a668-31e321f237a9", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "0f6dc654-fbd7-404b-83f8-9d415a6ab6b9", "zone": "fr-par-3", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-03-27T15:41:43.614858+00:00", - "modification_date": "2023-03-27T15:41:43.614858+00:00"}], "categories": ["distribution"], - "current_public_version": "adcd38b6-0b86-4541-ac22-8746872f2f3f", "creation_date": - "2022-02-03T10:35:17.004309+00:00", "modification_date": "2023-03-28T15:02:34.973875+00:00", + {"id": "9f8fba00-c8e8-4d44-ae57-2b8c91e3c997", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "74961e81-7bb0-4604-be5f-b2b622b88b14", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:06:38.259838+00:00", + "modification_date": "2023-04-13T13:06:38.259838+00:00"}], "categories": ["distribution"], + "current_public_version": "4c494b40-7244-411c-a724-65b8eedb2bc2", "creation_date": + "2022-02-03T10:35:17.004309+00:00", "modification_date": "2023-04-13T14:37:08.857124+00:00", "valid_until": null}, {"id": "7bdc1afb-231f-486a-9b85-1b0478bc0e4a", "name": "Debian Buster", "label": "debian_buster", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/debian.png", "description": "Debian is a free operating system, developed by thousands of @@ -441,462 +519,655 @@ interactions: "description": "Debian is a free operating system, developed by thousands of volunteers from all over the world who collaborate via the Internet.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources - Build System"}, "versions": [{"id": "66dac370-33e4-4c6b-8132-c63bf93d10d9", - "name": "2023-03-24T10:27:03.235790+00:00", "local_images": [{"id": "5979b981-b30b-4d05-80fa-a432a8a79a83", - "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", - "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "214fe4be-6b16-4d5d-9cdb-7698ee91659a", "zone": "par1", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + Build System"}, "versions": [{"id": "2adb2f81-b517-4dbd-b4f1-c58f658c9813", + "name": "2023-04-13T13:03:55.707814+00:00", "local_images": [{"id": "1d218316-3884-4b62-bdeb-b5fc14fa6cdb", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO"]}, {"id": "09cfbb91-f7c2-498a-ba0b-b54e19cb9d0f", "zone": "fr-par-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "ebb10763-4f0d-40b0-86bb-266f2275b9a5", - "zone": "nl-ams-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", - "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "0024830b-143b-4186-8c99-3e5effd07f04", "zone": "pl-waw-2", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "7c972b6f-0165-45b0-9dfa-52ff6c39ac4d", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "409c3356-9a2d-4212-983e-78f1ce0f23b7", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "ca4c6d52-bb47-4d4d-98b6-a201825b5b9a", "zone": "fr-par-3", "arch": "x86_64", - "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", - "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "fef3e360-8c03-4861-bde3-a4176a41a3e5", - "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "2620d33a-6c1d-4fb4-8502-93e60644bfce", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "4d03625b-965c-4468-97bd-f7c52637e8ba", "zone": "nl-ams-2", "arch": "x86_64", + {"id": "14901537-a464-4003-b7d9-388f0db136a5", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "fd88fc57-4acc-4cc8-a1fc-3f352110001b", "zone": "fr-par-2", "arch": "arm64", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "1f9b4f99-332b-46b1-99c9-3f6279c2baff", + "zone": "nl-ams-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "44d9ae31-80b8-448a-9487-e196b9c2a09f", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "41ed9bc9-94ed-4c31-9610-cd701a7cb76c", - "zone": "pl-waw-1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "52b02895-018a-4813-a522-0ab5fb838c02", + "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "665ae928-07f3-4068-a7ed-a7a185ef35ed", "zone": "fr-par-3", "arch": "arm64", + {"id": "4100648b-5063-436d-a8ae-62d5f961a25d", "zone": "pl-waw-1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "b639fa8c-16f9-493f-9af0-33e83edd6f66", - "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "91481d0d-c45e-4712-9491-787a7842d211", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "fc73b422-af26-43d7-a989-ca54ce46fe11", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "35a07178-bce4-4966-ac5f-a415135fe8d0", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "19aa7502-a4f3-4e65-a980-754fa2069217", "zone": "pl-waw-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "56ad2234-2a81-4232-86c5-314d80789ba2", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "3ee075e9-3556-4e9d-b764-b51ba5ce8c39", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-24T10:27:03.393581+00:00", - "modification_date": "2023-03-24T10:27:03.393581+00:00"}], "categories": ["distribution"], - "current_public_version": "66dac370-33e4-4c6b-8132-c63bf93d10d9", "creation_date": - "2021-07-21T09:09:36.581723+00:00", "modification_date": "2023-03-28T14:59:44.265262+00:00", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "588137bb-78c8-4397-893a-e9deca6cfc74", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", "GP1-M", + "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G", "DEV1-S", "DEV1-M", + "DEV1-L", "DEV1-XL", "STARDUST1-S"]}], "creation_date": "2023-04-13T13:03:55.943087+00:00", + "modification_date": "2023-04-13T13:03:55.943087+00:00"}], "categories": ["distribution"], + "current_public_version": "2adb2f81-b517-4dbd-b4f1-c58f658c9813", "creation_date": + "2021-07-21T09:09:36.581723+00:00", "modification_date": "2023-04-13T14:36:19.543959+00:00", "valid_until": null}, {"id": "c1b530d8-0ca0-45c4-80db-ba06608287b2", "name": "Docker", "label": "docker", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/docker.png", "description": "Docker is an open platform for developers and sysadmins to build, ship, and run distributed applications.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "80f14577-c821-44f2-aa51-fcd09ef74ccd", - "name": "2022-11-17T16:49:13.103479+00:00", "local_images": [{"id": "b9335185-d1bb-4904-adaf-da88c8e6c05b", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "aeaa9adb-f93e-482b-bb03-e402def75243", + "name": "2023-04-13T13:03:17.035176+00:00", "local_images": [{"id": "5c789fa0-3618-46b6-a484-6915a074cd1b", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "b1895cdd-a79b-4f18-9644-e5ab2434be06", "zone": "nl-ams-2", "arch": "x86_64", + "822bd95d-39f5-4649-b9ac-1b23869fb5eb", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "ef114000-7fe5-455c-afd1-714c15fdd3f3", "zone": - "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "b6c5990a-ee1d-45b6-a9bc-15edb6f6d354", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "50ebcf47-39b5-4087-ad18-79f63b9fdc05", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "9f945d00-71b9-436a-8a45-311babee406d", "zone": "pl-waw-2", "arch": "x86_64", + "2d7d32fd-3c5c-4b5d-ab9a-6423741e6d4e", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "a0c05cf2-8805-412c-acb6-45d047773732", "zone": - "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "f50af9e3-8b75-4c63-b2e5-355a2404f6dd", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "78b02952-be83-4b4b-a77c-1ecec5356652", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], - "creation_date": "2022-11-17T16:49:13.211153+00:00", "modification_date": "2022-11-17T16:49:13.211153+00:00"}], - "categories": ["instantapp"], "current_public_version": "80f14577-c821-44f2-aa51-fcd09ef74ccd", - "creation_date": "2016-03-05T15:11:26.847640+00:00", "modification_date": "2022-11-21T09:58:41.216589+00:00", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "0a7c1075-086b-4b07-b285-84c6d55b544f", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "157c5202-f71d-40d2-9cbe-08a11d0d6ab6", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:03:17.145319+00:00", + "modification_date": "2023-04-13T13:03:17.145319+00:00"}], "categories": ["instantapp"], + "current_public_version": "aeaa9adb-f93e-482b-bb03-e402def75243", "creation_date": + "2016-03-05T15:11:26.847640+00:00", "modification_date": "2023-04-13T14:34:48.199797+00:00", "valid_until": null}, {"id": "186859f6-0152-45dd-9eb8-21fc5e8d774e", "name": "Fedora 36", "label": "fedora_36", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", "description": "Fedora is a powerful, flexible operating system that includes the best and latest datacenter technologies. It puts you in control of all your infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "5f758103-8e34-40cd-b28d-6e5893ff54e3", - "name": "2023-03-28T07:19:02.568289+00:00", "local_images": [{"id": "ed49624c-0d21-4e19-beca-eb940fa0928f", + "name": "Instances User Resources Build System"}, "versions": [{"id": "9c65e858-7550-4118-9ca1-9086bf70ae11", + "name": "2023-04-13T13:03:38.692646+00:00", "local_images": [{"id": "b613de94-efde-49b0-84fd-18698da03450", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "4e0d352b-c33b-43c9-8b10-6750b70f87ec", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "74490113-256a-4bdf-bcb1-581f9d88e97f", "zone": "par1", "arch": "arm64", "compatible_commercial_types": - ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", - "AMP2-C60"]}, {"id": "aa0e328b-fe85-4773-b8d9-f4a86db0860b", "zone": "pl-waw-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "5642623f-7b90-4568-8149-843a7c07c1e4", - "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", - "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "3f936ceb-4e63-498d-94e0-5231caaaef3f", "zone": "fr-par-3", "arch": "x86_64", - "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "6b76e0e1-f650-434a-b901-628a24807738", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "0997826f-bb9c-4a7f-b442-0f95250c22b0", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "186cf8ac-3ba8-4be3-a420-e09a7a556269", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f76711a4-8846-44d2-b381-a189dd095b36", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "5ab8b0ba-e458-4a2d-b349-4c63cab96f08", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "12256f5e-7577-421d-b13a-8e6f53c7656c", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "2b72a96d-e146-49fe-b161-5e5b0b56f053", "zone": "fr-par-3", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "caf7b73d-f0d3-4d42-8db4-8ee9370de5b7", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "68532aae-1625-4a7a-ac48-b12426e1fbc4", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "e55c488c-6ca3-41eb-875e-48f7babe1500", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "595da48b-750e-4745-a211-44926dabce33", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "375587da-52be-4149-8fff-1ffbc1b242b2", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-04-13T13:03:38.803387+00:00", + "modification_date": "2023-04-13T13:03:38.803387+00:00"}], "categories": ["distribution"], + "current_public_version": "9c65e858-7550-4118-9ca1-9086bf70ae11", "creation_date": + "2022-04-14T15:45:29.069701+00:00", "modification_date": "2023-04-13T14:34:14.050901+00:00", + "valid_until": null}, {"id": "2b0e5802-eb82-4fd5-ac8f-6877c46aa14b", "name": + "Fedora 37", "label": "fedora_37", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", + "description": "Fedora is a powerful, flexible operating system that includes + the best and latest datacenter technologies. It puts you in control of all your + infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "7c6510e3-7720-4af2-94f5-a13e3eb7aec4", + "name": "2023-04-13T13:02:37.974360+00:00", "local_images": [{"id": "c8e8559a-84dd-4c0b-8727-d53bbd04de4b", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "116a529d-671d-4cd9-974d-0aca049be4d7", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "03cfa199-fff9-4677-b1b7-b676ec6d2c70", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "6fb9a92b-e16d-407a-b61e-c048c0555f9d", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "9f1b1efc-0ed1-4bdd-b547-5eaa0a1bb551", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "59687a02-e1b9-4d0a-b1ac-21e83c4c3eec", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "7a610c42-0b81-4db2-b831-11202d06a0fe", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "fb8d4eec-de07-4fe4-b515-70fb650bf471", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8cee1f9b-c123-4028-b422-e3565c1176d4", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8aed02d3-b7f5-43f5-a232-a2dab285ce2f", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-28T07:19:02.692506+00:00", - "modification_date": "2023-03-28T07:19:02.692506+00:00"}], "categories": ["distribution"], - "current_public_version": "5f758103-8e34-40cd-b28d-6e5893ff54e3", "creation_date": - "2022-04-14T15:45:29.069701+00:00", "modification_date": "2023-03-28T15:10:42.492768+00:00", - "valid_until": null}, {"id": "2b0e5802-eb82-4fd5-ac8f-6877c46aa14b", "name": - "Fedora 37", "label": "fedora_37", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "e977e7f8-875f-4a54-a141-f3fa288e0b97", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": + "2023-04-13T13:02:38.088623+00:00", "modification_date": "2023-04-13T13:02:38.088623+00:00"}], + "categories": ["distribution"], "current_public_version": "7c6510e3-7720-4af2-94f5-a13e3eb7aec4", + "creation_date": "2022-11-14T10:48:04.097063+00:00", "modification_date": "2023-04-13T14:33:41.303847+00:00", + "valid_until": null}, {"id": "dab3ed4b-5d6a-4b77-82e2-04405fd2a59e", "name": + "Fedora 38", "label": "fedora_38", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", "description": "Fedora is a powerful, flexible operating system that includes the best and latest datacenter technologies. It puts you in control of all your infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "09c9a703-7526-4b50-8333-337f1f26190d", - "name": "2023-03-27T15:49:13.458836+00:00", "local_images": [{"id": "f0f9abba-c98f-4be8-b191-88f40b5d7b27", - "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "name": "Instances User Resources Build System"}, "versions": [{"id": "dc49f9c0-e9f3-4f0a-8ef5-74116ed5995f", + "name": "2023-04-18T08:23:43.637923+00:00", "local_images": [{"id": "4040de51-ebc3-4f24-b14c-054f8cd966bf", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "4942ff7b-a79d-4654-bf6a-db74ac0f2bc2", "zone": "par1", "arch": "arm64", "compatible_commercial_types": - ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", - "AMP2-C60"]}, {"id": "fa30bf3f-7dca-412a-9d90-6ab1764c1b73", "zone": "pl-waw-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "3977ad18-9cb6-4a89-9e69-4c6caac95227", - "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", - "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "1556e65e-642d-4bbb-a13e-ad2e677e3881", "zone": "fr-par-3", "arch": "x86_64", - "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", - "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "addb1b2d-95ff-4cf7-9410-9cf94a74df4d", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "3077c13c-e1a7-404e-85de-560e427c6359", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "e1e0a7dc-bd18-465c-886d-0ca793ac7875", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "a5a980d0-91fa-4f0b-93a4-e1cc853b24dc", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "70da9c18-8d97-4de4-b666-275536750a9f", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "2bf83ac5-36a0-4245-9e66-22d5de47ce4f", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "0f0d629c-e18b-4ab3-b39e-7dd92a094627", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "e4b2dde2-250b-4afc-9641-91bb170b9344", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "b8a2c6bc-06d9-41bd-948a-1cf313ce6fba", "zone": "fr-par-3", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "0b1e1955-b880-476f-961c-36d3967585d5", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "fe8b1d78-bf61-4939-a621-8718fda1d070", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "886332b4-dff8-43d8-a432-a9cec8796343", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "811b12a5-2d32-46ec-8357-00cea52c33ed", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-27T15:49:13.669277+00:00", - "modification_date": "2023-03-27T15:49:13.669277+00:00"}], "categories": ["distribution"], - "current_public_version": "09c9a703-7526-4b50-8333-337f1f26190d", "creation_date": - "2022-11-14T10:48:04.097063+00:00", "modification_date": "2023-03-28T15:12:10.818444+00:00", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "61cf62c9-8b3d-49e3-9795-3d684909ff98", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": + "2023-04-18T08:23:43.848581+00:00", "modification_date": "2023-04-18T08:23:43.848581+00:00"}], + "categories": ["distribution"], "current_public_version": "dc49f9c0-e9f3-4f0a-8ef5-74116ed5995f", + "creation_date": "2023-04-18T07:53:13.621657+00:00", "modification_date": "2023-04-18T09:29:09.701576+00:00", "valid_until": null}, {"id": "233074b9-e2ba-4e78-818e-dd4930ce6bee", "name": "GitLab", "label": "gitlab", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/gitlab.png", "description": "GitLab is a web-based Git repository manager with wiki and issue tracking features.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "5aaa1f5b-6b83-431a-b12c-57db770bfa78", - "name": "2022-11-18T10:02:54.423998+00:00", "local_images": [{"id": "98244fe8-83ce-4076-bddc-a613eb646b91", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "b16ed12e-299b-4dbd-8225-9b8644d5ec04", + "name": "2023-04-13T13:06:28.354726+00:00", "local_images": [{"id": "416e6290-b9dd-47f8-9a90-f07cb7fa0f1d", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "0030922b-675e-4348-853f-4e4490c14ee9", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "16622dfc-d69c-4c78-9462-1321f84ac750", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "1fa73760-65fd-4350-85b4-1ffb203bcbfe", "zone": "fr-par-2", "arch": "x86_64", + "01d0cc75-9b4c-4d88-8560-5a0308a20c97", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "b0d4d06c-f535-493f-b57c-e6379c4f18bc", "zone": - "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "d0f5a66a-519a-401c-b96f-8f9b10e49552", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "e71db560-19bc-4dfe-9c84-84ae7e3a6809", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "1ad486c3-d9c4-458e-90fe-4c8ed31adc7e", "zone": "nl-ams-2", "arch": "x86_64", + "04f3be3a-f6d1-41e7-9b63-7b1d2e3492a1", "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "0b54e819-1051-4a01-8026-053c2523c45d", "zone": - "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "31fd1cfc-27bd-4baf-86e9-df0beb72efb4", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "8d43f819-553b-4490-893b-cb82abeffb14", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], - "creation_date": "2022-11-18T10:02:54.554344+00:00", "modification_date": "2022-11-18T10:02:54.554344+00:00"}], - "categories": ["instantapp"], "current_public_version": "5aaa1f5b-6b83-431a-b12c-57db770bfa78", - "creation_date": "2016-03-07T21:06:22.770864+00:00", "modification_date": "2022-11-21T09:59:01.854428+00:00", + "creation_date": "2023-04-13T13:06:28.530554+00:00", "modification_date": "2023-04-13T13:06:28.530554+00:00"}], + "categories": ["instantapp"], "current_public_version": "b16ed12e-299b-4dbd-8225-9b8644d5ec04", + "creation_date": "2016-03-07T21:06:22.770864+00:00", "modification_date": "2023-04-13T14:32:36.692844+00:00", "valid_until": null}, {"id": "7d4a7cb1-1fd5-4a64-920b-c79f47367254", "name": "NextCloud", "label": "nextcloud", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/nextcloud.png", "description": "Nextcloud is an open source, self-hosted file share and communication platform.", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": - "OCS"}, "versions": [{"id": "36e53418-c1c9-49db-bc59-f6c87e2cb96f", "name": - "2022-11-17T16:53:39.941145+00:00", "local_images": [{"id": "c604583d-dd01-4edc-b3f5-7eb5d4596e61", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "OCS"}, "versions": [{"id": "fe957b4f-1ab1-41bf-a142-b771f039d2c9", "name": + "2023-04-13T13:00:13.060943+00:00", "local_images": [{"id": "b1d51a36-38dc-4d65-873c-4fed3dbeb21e", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "671ccef0-003d-44fc-8da3-f4a8979482e3", "zone": "pl-waw-2", "arch": "x86_64", + "220ab3a6-0b38-4d6c-864d-fd6feb8aa99c", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "5e2f22ec-d003-485f-bec2-9a5372f5f0e4", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "69f87cf6-ed99-433c-b939-ce5883993150", "zone": - "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "54414b23-6028-4a9b-ba5f-98cca3e335e5", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "cee6ae09-afdc-4286-bc93-98fdb214effe", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "edae369a-f1ac-4054-8996-b95aa1b20846", "zone": "pl-waw-1", "arch": "x86_64", + "4ac5d79b-597b-4d05-a3d2-b3f44431bc2a", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "e19a0ff7-bf8a-48ac-a50f-6de58a659035", "zone": - "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "1057097d-0a23-4480-9a34-566342fb3265", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "30d1c545-c406-4515-83ab-f5224d4f95b6", "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], - "creation_date": "2022-11-17T16:53:40.112145+00:00", "modification_date": "2022-11-17T16:53:40.112145+00:00"}], - "categories": ["instantapp"], "current_public_version": "36e53418-c1c9-49db-bc59-f6c87e2cb96f", - "creation_date": "2019-04-16T12:22:56.930842+00:00", "modification_date": "2022-11-21T09:58:50.824677+00:00", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "f3a31d98-0e04-45da-8246-de949f5615e4", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:00:13.324444+00:00", + "modification_date": "2023-04-13T13:00:13.324444+00:00"}], "categories": ["instantapp"], + "current_public_version": "fe957b4f-1ab1-41bf-a142-b771f039d2c9", "creation_date": + "2019-04-16T12:22:56.930842+00:00", "modification_date": "2023-04-13T14:31:50.306200+00:00", "valid_until": null}, {"id": "b6f4edc8-21e6-4aa2-8f52-1030cf6d4dd8", "name": "OpenVPN", "label": "openvpn", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/openvpn.png", "description": "Surf the web in a secure and anonymous way with OpenVPN InstantApp.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "auth-team+ocs-organization@scaleway.com"}, - "versions": [{"id": "c07d4bc9-b947-4945-a739-78b7cda73bfa", "name": "2022-11-17T16:50:41.032881+00:00", - "local_images": [{"id": "c82757c7-a639-49a1-bd3a-5841a0da5931", "zone": "par1", + "versions": [{"id": "8c40dae0-21ad-4226-821a-aab4c6acae92", "name": "2023-04-13T12:54:17.348185+00:00", + "local_images": [{"id": "98cf2d5f-9268-4cc1-bc43-4ae9c9e66d75", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "7bb740d3-da25-4176-baec-41afe9f9a543", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "defab02d-b971-4418-8349-2a2da5740274", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "ed92b3b8-9656-4937-9169-8484d153f9e3", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + "9ea9fd9c-a795-4de7-8cd2-ca21e04f6aa7", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", - "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "5ba4b7be-5524-4a85-9008-b50360778c9b", "zone": "fr-par-3", "arch": "x86_64", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "dfc57325-2ab1-4bd0-acb0-0f93ab55a8e2", "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "75b23340-1d7f-4241-b28d-3773989ad833", "zone": - "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "35da23b9-440b-44e3-bad2-143b60502a7d", - "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "1a50ba7a-d691-4521-9837-b6c5e8be9ab4", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "fd6124df-8f3a-40a0-92f0-9dc393f73186", "zone": "pl-waw-1", "arch": "x86_64", + "d2828fd6-1d35-4140-9079-54e7025df877", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}], "creation_date": "2022-11-17T16:50:41.148343+00:00", - "modification_date": "2022-11-17T16:50:41.148343+00:00"}], "categories": ["instantapp"], - "current_public_version": "c07d4bc9-b947-4945-a739-78b7cda73bfa", "creation_date": - "2016-03-07T21:04:57.667667+00:00", "modification_date": "2022-11-21T09:58:29.002209+00:00", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "a60d4970-e050-4677-b54b-c0d395c56100", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2023-04-13T12:54:17.619668+00:00", "modification_date": "2023-04-13T12:54:17.619668+00:00"}], + "categories": ["instantapp"], "current_public_version": "8c40dae0-21ad-4226-821a-aab4c6acae92", + "creation_date": "2016-03-07T21:04:57.667667+00:00", "modification_date": "2023-04-13T14:31:04.244508+00:00", "valid_until": null}, {"id": "1576bf6b-f640-47f2-9117-968419d0546e", "name": "Rocky Linux 8", "label": "rockylinux_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/rockylinux.png", "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, production-ready Linux.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "name": "Instances User Resources Build System"}, "versions": [{"id": "1df404de-3e28-4021-8c1c-8e167f1b390a", - "name": "2023-03-27T13:51:48.477663+00:00", "local_images": [{"id": "6b2282dc-51b1-4952-938e-8290e6365209", - "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "name": "Instances User Resources Build System"}, "versions": [{"id": "417d33a8-8b9f-46ff-aedd-d74147dbd69c", + "name": "2023-04-13T12:55:09.822172+00:00", "local_images": [{"id": "d7ddbcb3-221f-49b9-8c6a-34ab34e73210", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "59bb9cf7-c0a2-4994-bc25-217dec852718", "zone": "par1", "arch": "arm64", "compatible_commercial_types": - ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", - "AMP2-C60"]}, {"id": "82d729dd-2a56-4f9a-b235-0344ed96350a", "zone": "pl-waw-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "58f3e5f0-0f66-4ee7-8e12-5c7f91945a3b", - "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", - "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "6fe7bac2-948e-43ef-9daa-6e3dab7e9d49", "zone": "fr-par-3", "arch": "x86_64", - "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", - "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "ab1a8029-524e-4d8c-a458-ddaf5a7685de", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "1e6ba192-5490-4a56-a08e-27eabbc3b4d7", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "7c34c483-af23-47d6-9688-4fa5c9bd59d6", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "4ee70f73-0190-4e73-8027-48745eb18f18", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "f93585c2-91c5-4371-b11d-22ded124b331", "zone": "fr-par-3", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "cc408539-d3c8-4a96-bb79-37987a52142b", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8a2c37b7-be86-431c-9d01-25a0682c5d71", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "119d3bc2-76f3-4664-bfeb-4c3b1f849f4d", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "c203b350-f2f2-420c-9a78-c21b3ef7b58a", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "2221b6bd-0b45-4478-877b-09eacbb7f8ed", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-27T13:51:48.645782+00:00", - "modification_date": "2023-03-27T13:51:48.645782+00:00"}], "categories": ["distribution"], - "current_public_version": "1df404de-3e28-4021-8c1c-8e167f1b390a", "creation_date": - "2021-06-25T10:16:16.254240+00:00", "modification_date": "2023-03-28T15:06:21.067890+00:00", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "af358d06-8b8a-4a66-afdc-88e0334e12a5", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "3657c2df-32fb-4afa-8bf5-be7ea7ab3e69", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "0300040c-f900-47ec-b21f-0f7410d75706", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "5809a93b-69d2-40d4-8b09-79da20ef1e1e", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-04-13T12:55:09.955903+00:00", + "modification_date": "2023-04-13T12:55:09.955903+00:00"}], "categories": ["distribution"], + "current_public_version": "417d33a8-8b9f-46ff-aedd-d74147dbd69c", "creation_date": + "2021-06-25T10:16:16.254240+00:00", "modification_date": "2023-04-13T14:28:09.866367+00:00", "valid_until": null}, {"id": "589c35a9-20ce-4ed9-92d7-16dc061be52b", "name": "Rocky Linux 9", "label": "rockylinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/rockylinux.png", "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, @@ -961,175 +1232,227 @@ interactions: "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu Server helps you make the most of your infrastructure.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "e85973e4-b50b-42cc-b5ce-16ab440c9886", "name": - "2023-03-24T09:19:43.870485+00:00", "local_images": [{"id": "d23d89d5-b0f8-4393-8554-5e9775c5d1b7", + System"}, "versions": [{"id": "12e69a70-af87-4728-8bb1-a940a8d48d35", "name": + "2023-04-13T12:38:58.138108+00:00", "local_images": [{"id": "2fedb0c7-1686-4529-8344-be9e198e4dd2", "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", "zone": "par1", "arch": "x86_64", + {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", - "PLAY2-PICO"]}, {"id": "2f5cdf98-817d-4fcc-9ecc-8b0fc8aed493", "zone": "fr-par-2", - "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", - "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", - "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", - "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", - "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d90ce4cc-f7eb-406d-9bf6-87ca8265f55c", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "7c748e78-971e-40ab-83f6-461e20a56c68", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "8ddfeedd-2fb0-4cc3-b6d4-47cdd8f4b23f", "zone": "fr-par-3", "arch": "x86_64", - "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "1dba408b-0faa-49c6-937e-e24d45e54157", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "0951cd32-05d9-48a5-b26f-26e52b2cbec3", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "a0a26970-909b-48d1-a3cc-8a47c81a374e", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "b2e92f75-db2b-4bcd-85bf-3ba21b2287bf", "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "7ae2282c-0a01-47c1-8338-c321c8326edb", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "57e89f65-ec39-4847-aed5-942629dff0ad", "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "c747046d-7c51-4a5a-b9bb-ef8336d974c4", "zone": "fr-par-3", "arch": "arm64", + {"id": "5ae24724-3cb2-40ac-9a10-6e244150587d", "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "448f073e-e8f0-4e2a-8e84-3bba5bd9a71e", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "bcdd8214-e642-4fb8-a6a1-5ff910f82e22", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "d16ad76d-5bbb-425b-b0c2-b00f43802517", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "d12ccc29-0fa0-4075-8dbe-2c2e4469f99c", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], "creation_date": "2023-03-24T09:19:44.058257+00:00", - "modification_date": "2023-03-24T09:19:44.058257+00:00"}], "categories": ["distribution"], - "current_public_version": "e85973e4-b50b-42cc-b5ce-16ab440c9886", "creation_date": - "2020-02-17T15:50:48.980694+00:00", "modification_date": "2023-03-28T14:57:19.746983+00:00", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T12:38:58.306640+00:00", + "modification_date": "2023-04-13T12:38:58.306640+00:00"}], "categories": ["distribution"], + "current_public_version": "12e69a70-af87-4728-8bb1-a940a8d48d35", "creation_date": + "2020-02-17T15:50:48.980694+00:00", "modification_date": "2023-04-13T14:26:25.085299+00:00", "valid_until": null}, {"id": "1123148c-7660-4cb2-9fd3-7b5b4896f72f", "name": "Ubuntu 22.04 Jammy Jellyfish", "label": "ubuntu_jammy", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu Server helps you make the most of your infrastructure.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "9eeca005-d3cf-4845-b9ae-fa9c926038b8", "name": - "2023-03-23T16:23:08.656307+00:00", "local_images": [{"id": "06bf3f16-930e-48ba-b5c2-eacd1fad129a", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", - "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", - "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", - "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "11cad2e3-47ab-4dac-a62c-033d5a6f2b61", - "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + System"}, "versions": [{"id": "687cdcd5-f485-4396-b2b0-a06f7f3ff00b", "name": + "2023-04-13T12:16:06.199424+00:00", "local_images": [{"id": "ce453858-557c-4f1c-a7a9-70026e67d054", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": - "350a06b2-ecd0-48b9-ba9e-495a51345a68", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": - ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", - "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", - "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", - "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", - "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "fba44936-9f63-44b3-a723-9f17eff837e1", "zone": "pl-waw-1", "arch": "x86_64", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "6cda247a-0c01-46c5-8835-9f3143905de0", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "8e0d42ac-2a7e-4ee0-a906-738a115d596e", "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "94299452-12c4-4d79-9c79-ced52967d75f", "zone": "par1", "arch": "arm64", - "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", - "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "9abe9fff-dedf-4c8a-b879-0472faacd569", - "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", - "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "660b8a19-6061-4afb-8834-17b86f2179ae", "zone": "pl-waw-2", "arch": "x86_64", - "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "235f2c1a-f81e-4aa2-af5f-b0dcf001c398", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, - {"id": "c7463c52-b051-4359-9edf-132484baf46a", "zone": "fr-par-3", "arch": "x86_64", - "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "08d5fc73-5a8b-4eb4-8c13-cee729f05d9f", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", - "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "908ed483-edab-48ac-9309-2fdd0b26776e", - "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "22f92b70-9c50-41a7-856f-71d13052b652", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "898e56c4-296d-418b-94d3-18b14a4312fd", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "83b0da88-403f-41bf-b4ce-faf16dde2d13", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, - {"id": "6dbf3c88-3138-4ce6-841a-63ee5b059ce0", "zone": "fr-par-2", "arch": "x86_64", + {"id": "4faf43e8-465c-4273-8e96-a828399804a0", "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", - "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}], - "creation_date": "2023-03-23T16:23:08.853769+00:00", "modification_date": "2023-03-23T16:23:08.853769+00:00"}], - "categories": ["distribution"], "current_public_version": "9eeca005-d3cf-4845-b9ae-fa9c926038b8", - "creation_date": "2022-04-07T13:35:54.966630+00:00", "modification_date": "2023-03-28T14:55:21.771024+00:00", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "95819e57-4ee3-4f93-afba-96de74c329f7", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], + "creation_date": "2023-04-13T12:16:06.393838+00:00", "modification_date": "2023-04-13T12:16:06.393838+00:00"}], + "categories": ["distribution"], "current_public_version": "687cdcd5-f485-4396-b2b0-a06f7f3ff00b", + "creation_date": "2022-04-07T13:35:54.966630+00:00", "modification_date": "2023-04-13T14:25:38.413213+00:00", "valid_until": null}, {"id": "b381b2bf-804a-4b12-91f6-9f4ff273462f", "name": "Ubuntu Bionic", "label": "ubuntu_bionic", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu Server helps you make the most of your infrastructure.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build - System"}, "versions": [{"id": "ff84a566-a05f-4306-9e42-9f2304f9378f", "name": - "2023-03-28T12:43:02.328403+00:00", "local_images": [{"id": "d3b6ff11-34b3-4156-8850-d954fff9df13", - "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + System"}, "versions": [{"id": "599269e6-7332-4a0c-8cd8-0e9e17f6c91e", "name": + "2023-04-13T12:47:26.451219+00:00", "local_images": [{"id": "fe177b1f-c067-45f3-84a6-5aefd68f7f77", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "2b2b1cf4-4af1-4a27-9753-e5a0e971d321", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": - ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", - "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", - "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", - "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, - {"id": "a9d19ff4-ae29-417e-b1d4-6deb185922db", "zone": "par1", "arch": "x86_64", + "c128aa85-0cf6-48e1-8d32-660b9f1fc9be", "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "48585eba-5185-472a-97f4-5df64355ffe7", - "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "96458957-9645-4d2a-8c2d-2efb1d20032c", "zone": "pl-waw-2", "arch": "x86_64", + "3bcf8475-dcd1-43ad-aabd-c7af51f4805a", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "a898d995-6011-4ce4-b802-8e8dfc4c871f", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "9ffd49dd-f620-4ee4-91a2-65028ebbe1b5", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "fc07e364-653b-4223-8e16-9f88e59e528e", "zone": "fr-par-2", "arch": "x86_64", + "3bb18d01-6f5e-4648-b524-70cc241e9686", "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", - "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-03-28T12:43:02.430071+00:00", - "modification_date": "2023-03-28T12:43:02.430071+00:00"}], "categories": ["distribution"], - "current_public_version": "ff84a566-a05f-4306-9e42-9f2304f9378f", "creation_date": - "2018-04-27T14:07:25.221998+00:00", "modification_date": "2023-03-28T14:58:39.344565+00:00", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "55e9cd84-1a80-48ef-a3fb-3c2a2d13e164", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2023-04-13T12:47:26.676017+00:00", "modification_date": "2023-04-13T12:47:26.676017+00:00"}], + "categories": ["distribution"], "current_public_version": "599269e6-7332-4a0c-8cd8-0e9e17f6c91e", + "creation_date": "2018-04-27T14:07:25.221998+00:00", "modification_date": "2023-04-13T14:27:25.576115+00:00", "valid_until": null}, {"id": "4dcc771c-820f-405c-b663-4564bdc2ed56", "name": "Ubuntu Focal GPU OS 11", "label": "ubuntu_focal_gpu_os_11", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", "description": "Ubuntu 20.04 Focal Fossa for Nvidia GPU and Machine Learning", @@ -1158,65 +1481,66 @@ interactions: "WordPress", "label": "wordpress", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/wordpress.png", "description": "WordPress is the most popular web software you can use to create a beautiful website or blog.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", - "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "49917541-e725-478f-9ed3-866bb71215fc", - "name": "2022-11-17T16:54:23.010448+00:00", "local_images": [{"id": "8640db59-ce11-466f-9124-cfe85e57c03c", - "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "08baf82b-82b8-4450-b545-c2fbfd4d6135", + "name": "2023-04-13T13:48:44.450791+00:00", "local_images": [{"id": "af715cfb-e95f-42bf-b308-eedc91ae4806", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "c28c8c9d-1b46-4712-8aba-3f2737dda564", "zone": "pl-waw-1", "arch": "x86_64", + "f9be223b-f639-4ed9-83f0-ee911be052de", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "1927920a-520f-4712-9a56-11d7cbbe43be", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "5affe637-67dd-475e-aaa3-eb4a11530270", "zone": - "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "e28a34cf-3118-47bf-9c5c-40419ce519d5", - "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "2406e707-b3cc-4721-9e7d-293ecec7dcf8", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", - "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "60e8d7b5-1d50-4934-a1fb-708025031d48", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": - ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", - "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", - "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", - "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "28357650-c47f-4bd2-8589-0cb4923c0f58", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "7c0ba4cb-6286-4220-9e28-de57042c6812", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": - "6d79accc-3d62-4ae1-98c7-20f6f1164438", "zone": "nl-ams-2", "arch": "x86_64", + "9490b6b4-92cb-4c9e-abfc-1cee6187ee29", "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", - "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", - "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", - "X64-30GB", "X64-60GB"]}, {"id": "6c17a18f-ea38-488f-bd91-76ca33e4e11f", "zone": - "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", - "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", - "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", - "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", - "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", - "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": - "2022-11-17T16:54:23.150832+00:00", "modification_date": "2022-11-17T16:54:23.150832+00:00"}], - "categories": ["instantapp"], "current_public_version": "49917541-e725-478f-9ed3-866bb71215fc", - "creation_date": "2016-03-07T21:03:59.783534+00:00", "modification_date": "2022-11-21T09:58:15.549240+00:00", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:48:44.619998+00:00", + "modification_date": "2023-04-13T13:48:44.619998+00:00"}], "categories": ["instantapp"], + "current_public_version": "08baf82b-82b8-4450-b545-c2fbfd4d6135", "creation_date": + "2016-03-07T21:03:59.783534+00:00", "modification_date": "2023-04-13T14:40:21.433436+00:00", "valid_until": null}]}' headers: Content-Length: - - "98384" + - "126189" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:50 GMT + - Fri, 12 May 2023 12:26:38 GMT Link: - ; rel="last" Server: @@ -1228,9 +1552,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ddedba2-ca57-4556-8905-1ff90ea977af + - f3e55602-1ee4-4f5a-9ee4-7ca3b60b28f5 X-Total-Count: - - "22" + - "23" status: 200 OK code: 200 duration: "" @@ -1240,15 +1564,15 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/834a6c39-41a9-4b92-a3d4-44dfafc47d6b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/68cf470e-6c35-4741-bbff-4ce788616461 method: GET response: - body: '{"image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", "name": "Ubuntu + body: '{"image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, - "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", - "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: @@ -1258,7 +1582,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:50 GMT + - Fri, 12 May 2023 12:26:38 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1268,7 +1592,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6502cb1-7714-4f44-9b20-cea49ca1d836 + - c3d446bb-fc27-4db9-b76b-b7c8d0f3ae79 status: 200 OK code: 200 duration: "" @@ -1627,7 +1951,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:50 GMT + - Fri, 12 May 2023 12:26:38 GMT Link: - ; rel="last" Server: @@ -1639,7 +1963,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9b4f01a-9e05-4813-9b9f-621063f3a252 + - b9b643f7-86dd-4fec-9a08-510a059b7116 X-Total-Count: - "38" status: 200 OK @@ -1656,21 +1980,21 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"id": "f71c779a-c8de-4690-b0cc-294e73808b15", "address": "51.15.225.123", + body: '{"ip": {"id": "0706fbba-ae5d-4613-932f-c72087d703a4", "address": "51.158.125.193", "reverse": null, "server": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: - - "254" + - "255" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:51 GMT + - Fri, 12 May 2023 12:26:39 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f71c779a-c8de-4690-b0cc-294e73808b15 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/0706fbba-ae5d-4613-932f-c72087d703a4 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1680,12 +2004,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd7310a6-d392-4803-8bea-21d71ea44e28 + - acf76127-9847-4a47-813e-2f8da34c3329 status: 201 Created code: 201 duration: "" - request: - body: '{"name":"cli-srv-charming-burnell","commercial_type":"DEV1-S","image":"834a6c39-41a9-4b92-a3d4-44dfafc47d6b","public_ip":"f71c779a-c8de-4690-b0cc-294e73808b15","boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: '{"name":"cli-srv-epic-goldstine","commercial_type":"DEV1-S","image":"68cf470e-6c35-4741-bbff-4ce788616461","public_ip":"0706fbba-ae5d-4613-932f-c72087d703a4","boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' form: {} headers: Content-Type: @@ -1695,27 +2019,27 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: - body: '{"server": {"id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", "name": "cli-srv-charming-burnell", + body: '{"server": {"id": "89040064-4dd1-414d-9f5a-6239a0055847", "name": "cli-srv-epic-goldstine", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-charming-burnell", "image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", + "hostname": "cli-srv-epic-goldstine", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, - "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", - "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, - "volumes": {"0": {"boot": false, "id": "ff810ec8-a504-4fb5-ba3e-f610b00cd878", + "volumes": {"0": {"boot": false, "id": "7f191bd4-8de7-4041-990f-f4979b127f48", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "server": {"id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", "name": "cli-srv-charming-burnell"}, - "size": 20000000000, "state": "available", "creation_date": "2023-04-13T07:41:51.842447+00:00", - "modification_date": "2023-04-13T07:41:51.842447+00:00", "tags": [], "zone": + "server": {"id": "89040064-4dd1-414d-9f5a-6239a0055847", "name": "cli-srv-epic-goldstine"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-12T12:26:39.752113+00:00", + "modification_date": "2023-05-12T12:26:39.752113+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": {"id": "f71c779a-c8de-4690-b0cc-294e73808b15", "address": "51.15.225.123", + "", "public_ip": {"id": "0706fbba-ae5d-4613-932f-c72087d703a4", "address": "51.158.125.193", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-04-13T07:41:51.842447+00:00", - "modification_date": "2023-04-13T07:41:51.842447+00:00", "bootscript": {"id": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-12T12:26:39.752113+00:00", + "modification_date": "2023-05-12T12:26:39.752113+00:00", "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", @@ -1727,15 +2051,15 @@ interactions: "fr-par-1"}}' headers: Content-Length: - - "2639" + - "2634" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:52 GMT + - Fri, 12 May 2023 12:26:40 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fdfb455b-280c-4bd2-bbd2-34dfab08dac3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89040064-4dd1-414d-9f5a-6239a0055847 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1745,25 +2069,25 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c1bd9f1-8a58-499b-b715-927dba26ec4d + - 8e6ed27f-43e5-490d-a6e4-61b2c4af8b06 status: 201 Created code: 201 duration: "" - request: - body: '{"private_network_id":"1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1"}' + body: '{"private_network_id":"a7389447-5a20-4ac0-af97-a6d354a1d09a"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fdfb455b-280c-4bd2-bbd2-34dfab08dac3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89040064-4dd1-414d-9f5a-6239a0055847/private_nics method: POST response: - body: '{"private_nic": {"id": "9a367c4e-1fd7-434f-8264-e904e5e4482c", "private_network_id": - "1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1", "server_id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", - "mac_address": "02:00:00:12:b4:63", "state": "available", "creation_date": "2023-04-13T07:41:52.359510+00:00", - "modification_date": "2023-04-13T07:41:52.359510+00:00", "zone": "fr-par-1", + body: '{"private_nic": {"id": "8c08dd03-da4d-4e44-8a6a-564d6df9ae13", "private_network_id": + "a7389447-5a20-4ac0-af97-a6d354a1d09a", "server_id": "89040064-4dd1-414d-9f5a-6239a0055847", + "mac_address": "02:00:00:12:e9:f2", "state": "available", "creation_date": "2023-05-12T12:26:40.115208+00:00", + "modification_date": "2023-05-12T12:26:40.115208+00:00", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: @@ -1773,7 +2097,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:52 GMT + - Fri, 12 May 2023 12:26:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1783,7 +2107,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f2cdab8-6329-4219-9df2-f4aa6b76586e + - 83700a68-d75e-4f96-98c5-cbd1d4c39980 status: 201 Created code: 201 duration: "" @@ -1793,22 +2117,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1 + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/a7389447-5a20-4ac0-af97-a6d354a1d09a method: GET response: - body: '{"id":"1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1", "name":"cli-pn-recursing-clarke", - "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-04-13T07:41:50.374622Z", - "updated_at":"2023-04-13T07:41:50.374622Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "subnets":["172.16.184.0/22", "fd46:78ab:30b8:ab9b::/64"], "zone":"fr-par-1"}' + body: '{"id":"a7389447-5a20-4ac0-af97-a6d354a1d09a","name":"cli-pn-agitated-ritchie","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2023-05-12T12:26:38.173311Z","updated_at":"2023-05-12T12:26:38.173311Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":["172.16.8.0/22","fd46:78ab:30b8:fa22::/64"],"zone":"fr-par-1"}' headers: Content-Length: - - "367" + - "356" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:52 GMT + - Fri, 12 May 2023 12:26:40 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1818,7 +2139,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8dd605a3-7c1a-49d1-84e6-0820eaffa9f4 + - 463f4c36-ab76-4adb-a3a5-8ed361a792ae status: 200 OK code: 200 duration: "" @@ -1828,30 +2149,30 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&page=1&private_network=1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&page=1&private_network=a7389447-5a20-4ac0-af97-a6d354a1d09a method: GET response: - body: '{"servers": [{"id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", "name": "cli-srv-charming-burnell", + body: '{"servers": [{"id": "89040064-4dd1-414d-9f5a-6239a0055847", "name": "cli-srv-epic-goldstine", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-charming-burnell", "image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", + "hostname": "cli-srv-epic-goldstine", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, - "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", - "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, - "volumes": {"0": {"boot": false, "id": "ff810ec8-a504-4fb5-ba3e-f610b00cd878", + "volumes": {"0": {"boot": false, "id": "7f191bd4-8de7-4041-990f-f4979b127f48", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "server": {"id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", "name": "cli-srv-charming-burnell"}, - "size": 20000000000, "state": "available", "creation_date": "2023-04-13T07:41:51.842447+00:00", - "modification_date": "2023-04-13T07:41:51.842447+00:00", "tags": [], "zone": + "server": {"id": "89040064-4dd1-414d-9f5a-6239a0055847", "name": "cli-srv-epic-goldstine"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-12T12:26:39.752113+00:00", + "modification_date": "2023-05-12T12:26:39.752113+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": {"id": "f71c779a-c8de-4690-b0cc-294e73808b15", "address": "51.15.225.123", + "", "public_ip": {"id": "0706fbba-ae5d-4613-932f-c72087d703a4", "address": "51.158.125.193", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-04-13T07:41:51.842447+00:00", - "modification_date": "2023-04-13T07:41:51.842447+00:00", "bootscript": {"id": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-12T12:26:39.752113+00:00", + "modification_date": "2023-05-12T12:26:39.752113+00:00", "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", @@ -1859,22 +2180,22 @@ interactions: "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": - ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "9a367c4e-1fd7-434f-8264-e904e5e4482c", - "private_network_id": "1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1", "server_id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", - "mac_address": "02:00:00:12:b4:63", "state": "available", "creation_date": "2023-04-13T07:41:52.359510+00:00", - "modification_date": "2023-04-13T07:41:52.749342+00:00", "zone": "fr-par-1", + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8c08dd03-da4d-4e44-8a6a-564d6df9ae13", + "private_network_id": "a7389447-5a20-4ac0-af97-a6d354a1d09a", "server_id": "89040064-4dd1-414d-9f5a-6239a0055847", + "mac_address": "02:00:00:12:e9:f2", "state": "available", "creation_date": "2023-05-12T12:26:40.115208+00:00", + "modification_date": "2023-05-12T12:26:40.115208+00:00", "zone": "fr-par-1", "tags": []}], "zone": "fr-par-1"}]}' headers: Content-Length: - - "3003" + - "2998" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:53 GMT + - Fri, 12 May 2023 12:26:41 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -1885,7 +2206,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72a79d5c-4ca0-483d-8a80-d72d20e0fb7a + - 69302500-f940-403d-b526-1b9ac8d56637 X-Total-Count: - "1" status: 200 OK @@ -1897,19 +2218,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&page=1&private_network_id=1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1 + url: https://api.scaleway.com/baremetal/v1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&page=1&private_network_id=a7389447-5a20-4ac0-af97-a6d354a1d09a method: GET response: - body: '{"server_private_networks":[], "total_count":0}' + body: '{"server_private_networks":[],"total_count":0}' headers: Content-Length: - - "47" + - "46" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:53 GMT + - Fri, 12 May 2023 12:26:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1919,7 +2240,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddb70f39-38bd-4af4-b02b-312bca76ebf5 + - 6ab3d8e0-ee52-4009-8457-44794dc7e4ed status: 200 OK code: 200 duration: "" @@ -1932,16 +2253,16 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?order_by=created_at_asc method: GET response: - body: '{"lbs":[], "total_count":0}' + body: '{"lbs":[],"total_count":0}' headers: Content-Length: - - "27" + - "26" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:53 GMT + - Fri, 12 May 2023 12:26:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1951,7 +2272,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84825ca4-f14a-4e3d-8a5d-0626de79a2eb + - be9fd5fc-85ca-4706-9e25-b8a6355fcdfc status: 200 OK code: 200 duration: "" @@ -1964,16 +2285,16 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances?order_by=created_at_asc&page=1 method: GET response: - body: '{"instances":[], "total_count":0}' + body: '{"instances":[],"total_count":0}' headers: Content-Length: - - "33" + - "32" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:53 GMT + - Fri, 12 May 2023 12:26:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -1983,7 +2304,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79d3227a-cc8a-41b4-92c1-1eca0d223ee3 + - f9f82a36-11d0-4415-8f20-3f2110755bac status: 200 OK code: 200 duration: "" @@ -1996,16 +2317,16 @@ interactions: url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters?order_by=created_at_asc&page=1 method: GET response: - body: '{"clusters":[], "total_count":0}' + body: '{"clusters":[],"total_count":0}' headers: Content-Length: - - "32" + - "31" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:53 GMT + - Fri, 12 May 2023 12:26:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2015,7 +2336,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f31b506-f633-4f3c-9930-29504790debc + - bfabcddf-ef99-4e01-ad4a-3d6120bd919e status: 200 OK code: 200 duration: "" @@ -2028,16 +2349,16 @@ interactions: url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways?order_by=created_at_asc&page=1&status=unknown method: GET response: - body: '{"gateways":[], "total_count":0}' + body: '{"gateways":[],"total_count":0}' headers: Content-Length: - - "32" + - "31" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:53 GMT + - Fri, 12 May 2023 12:26:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2047,7 +2368,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21917878-637a-47d1-91ca-b2d22a72b725 + - 66be2cf2-168c-462a-a1d9-525f3e2d7c0b status: 200 OK code: 200 duration: "" @@ -2057,30 +2378,30 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fdfb455b-280c-4bd2-bbd2-34dfab08dac3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89040064-4dd1-414d-9f5a-6239a0055847 method: GET response: - body: '{"server": {"id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", "name": "cli-srv-charming-burnell", + body: '{"server": {"id": "89040064-4dd1-414d-9f5a-6239a0055847", "name": "cli-srv-epic-goldstine", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-charming-burnell", "image": {"id": "834a6c39-41a9-4b92-a3d4-44dfafc47d6b", + "hostname": "cli-srv-epic-goldstine", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "3dedb0c4-2fbf-4838-ae5f-1dca8dc65df8", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, - "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-03-24T09:16:42.721384+00:00", - "modification_date": "2023-03-24T09:16:42.721384+00:00", "default_bootscript": + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, - "volumes": {"0": {"boot": false, "id": "ff810ec8-a504-4fb5-ba3e-f610b00cd878", + "volumes": {"0": {"boot": false, "id": "7f191bd4-8de7-4041-990f-f4979b127f48", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "server": {"id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", "name": "cli-srv-charming-burnell"}, - "size": 20000000000, "state": "available", "creation_date": "2023-04-13T07:41:51.842447+00:00", - "modification_date": "2023-04-13T07:41:51.842447+00:00", "tags": [], "zone": + "server": {"id": "89040064-4dd1-414d-9f5a-6239a0055847", "name": "cli-srv-epic-goldstine"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-12T12:26:39.752113+00:00", + "modification_date": "2023-05-12T12:26:39.752113+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": {"id": "f71c779a-c8de-4690-b0cc-294e73808b15", "address": "51.15.225.123", + "", "public_ip": {"id": "0706fbba-ae5d-4613-932f-c72087d703a4", "address": "51.158.125.193", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-04-13T07:41:51.842447+00:00", - "modification_date": "2023-04-13T07:41:51.842447+00:00", "bootscript": {"id": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-12T12:26:39.752113+00:00", + "modification_date": "2023-05-12T12:26:39.752113+00:00", "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", @@ -2088,20 +2409,20 @@ interactions: "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": - ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "9a367c4e-1fd7-434f-8264-e904e5e4482c", - "private_network_id": "1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1", "server_id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", - "mac_address": "02:00:00:12:b4:63", "state": "available", "creation_date": "2023-04-13T07:41:52.359510+00:00", - "modification_date": "2023-04-13T07:41:53.085687+00:00", "zone": "fr-par-1", + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8c08dd03-da4d-4e44-8a6a-564d6df9ae13", + "private_network_id": "a7389447-5a20-4ac0-af97-a6d354a1d09a", "server_id": "89040064-4dd1-414d-9f5a-6239a0055847", + "mac_address": "02:00:00:12:e9:f2", "state": "available", "creation_date": "2023-05-12T12:26:40.115208+00:00", + "modification_date": "2023-05-12T12:26:41.089815+00:00", "zone": "fr-par-1", "tags": []}], "zone": "fr-par-1"}}' headers: Content-Length: - - "3000" + - "2995" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:53 GMT + - Fri, 12 May 2023 12:26:41 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2111,7 +2432,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b14cea87-e784-4c4b-bf68-a84034e0b398 + - e18058f2-e7a9-4d6d-8612-02566493d6a9 status: 200 OK code: 200 duration: "" @@ -2121,7 +2442,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fdfb455b-280c-4bd2-bbd2-34dfab08dac3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89040064-4dd1-414d-9f5a-6239a0055847 method: DELETE response: body: "" @@ -2129,7 +2450,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Thu, 13 Apr 2023 07:41:53 GMT + - Fri, 12 May 2023 12:26:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2139,7 +2460,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eea54596-54aa-4672-ac1e-d436bff7e811 + - 99dd6e5b-f06e-406a-9330-8338367f6139 status: 204 No Content code: 204 duration: "" @@ -2149,7 +2470,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ff810ec8-a504-4fb5-ba3e-f610b00cd878 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f191bd4-8de7-4041-990f-f4979b127f48 method: DELETE response: body: "" @@ -2157,7 +2478,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Thu, 13 Apr 2023 07:41:54 GMT + - Fri, 12 May 2023 12:26:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2167,7 +2488,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05b3e1ff-f8a8-454d-8d37-9be853adb393 + - 8723832b-2aab-4484-a8e9-f71a16bbf49f status: 204 No Content code: 204 duration: "" @@ -2177,7 +2498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1 + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/a7389447-5a20-4ac0-af97-a6d354a1d09a method: DELETE response: body: "" @@ -2187,7 +2508,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 13 Apr 2023 07:41:54 GMT + - Fri, 12 May 2023 12:26:42 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2197,7 +2518,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82d50ead-7189-4224-a585-994f3f716afa + - 75e898e5-b347-4328-85c3-36b4a768de30 status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.golden b/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.golden index ba0b723469..4397dc22b6 100644 --- a/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.golden +++ b/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.golden @@ -1,37 +1,37 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID 1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1 -Name cli-pn-recursing-clarke +ID a7389447-5a20-4ac0-af97-a6d354a1d09a +Name cli-pn-agitated-ritchie OrganizationID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 ProjectID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 Zone fr-par-1 CreatedAt few seconds ago UpdatedAt few seconds ago -Subnets.0 172.16.184.0/22 -Subnets.1 fd46:78ab:30b8:ab9b::/64 +Subnets.0 172.16.8.0/22 +Subnets.1 fd46:78ab:30b8:fa22::/64 -InstanceServers: -ID NAME STATE NIC ID MAC ADDRESS -fdfb455b-280c-4bd2-bbd2-34dfab08dac3 cli-srv-charming-burnell archived 9a367c4e-1fd7-434f-8264-e904e5e4482c 02:00:00:12:b4:63 +Instance Servers: +ID NAME STATE NIC ID MAC ADDRESS +89040064-4dd1-414d-9f5a-6239a0055847 cli-srv-epic-goldstine archived 8c08dd03-da4d-4e44-8a6a-564d6df9ae13 02:00:00:12:e9:f2 -BaremetalServers: -ID NAME STATE BAREMETAL NETWORK ID +Baremetal Servers: +ID NAME STATE BAREMETAL NETWORK ID VLAN -LBs: +Load-Balancers: ID NAME STATE -RdbInstances: +Rdb Instances: ID NAME STATE ENDPOINT ID -RedisClusters: +Redis Clusters: ID NAME STATE ENDPOINT ID -Gateways: +Public Gateways: ID NAME STATE GATEWAY NETWORK ID 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "id": "1ef530e6-a9c9-4c50-8fbc-edb5fd7a87c1", - "name": "cli-pn-recursing-clarke", + "id": "a7389447-5a20-4ac0-af97-a6d354a1d09a", + "name": "cli-pn-agitated-ritchie", "organization_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", @@ -39,16 +39,16 @@ ID NAME STATE GATEWAY NETWORK ID "created_at": "1970-01-01T00:00:00.0Z", "updated_at": "1970-01-01T00:00:00.0Z", "subnets": [ - "172.16.184.0/22", - "fd46:78ab:30b8:ab9b::/64" + "172.16.8.0/22", + "fd46:78ab:30b8:fa22::/64" ], "instance_servers": [ { - "id": "fdfb455b-280c-4bd2-bbd2-34dfab08dac3", - "name": "cli-srv-charming-burnell", + "id": "89040064-4dd1-414d-9f5a-6239a0055847", + "name": "cli-srv-epic-goldstine", "state": "stopped", - "nic_id": "9a367c4e-1fd7-434f-8264-e904e5e4482c", - "mac": "02:00:00:12:b4:63" + "nic_id": "8c08dd03-da4d-4e44-8a6a-564d6df9ae13", + "mac": "02:00:00:12:e9:f2" } ], "baremetal_servers": null, From a8cd5d415c5084e0557a3e1b4f906e60a007e1f1 Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Tue, 16 May 2023 11:26:45 +0200 Subject: [PATCH 4/4] not showing resource in case it's missing --- .../vpc/v1/custom_private_network.go | 42 +- .../vpc/v1/custom_private_network_test.go | 4 +- ...get-private-network-multiple.cassette.yaml | 3658 ++++++++++++++--- .../test-get-private-network-multiple.golden | 52 +- ...t-get-private-network-simple.cassette.yaml | 2840 +++++++++++-- .../test-get-private-network-simple.golden | 50 +- 6 files changed, 5637 insertions(+), 1009 deletions(-) diff --git a/internal/namespaces/vpc/v1/custom_private_network.go b/internal/namespaces/vpc/v1/custom_private_network.go index a5af76fdfc..0c298fb6f5 100644 --- a/internal/namespaces/vpc/v1/custom_private_network.go +++ b/internal/namespaces/vpc/v1/custom_private_network.go @@ -62,12 +62,12 @@ func privateNetworkGetBuilder(c *core.Command) *core.Command { return &struct { *vpc.PrivateNetwork - InstanceServers []customInstanceServer `json:"instance_servers"` - BaremetalServers []customBaremetalServer `json:"baremetal_servers"` - LBs []customLB `json:"lbs"` - RdbInstances []customRdb `json:"rdb_instances"` - RedisClusters []customRedis `json:"redis_clusters"` - Gateways []customGateway `json:"gateways"` + InstanceServers []customInstanceServer `json:"instance_servers,omitempty"` + BaremetalServers []customBaremetalServer `json:"baremetal_servers,omitempty"` + LBs []customLB `json:"lbs,omitempty"` + RdbInstances []customRdb `json:"rdb_instances,omitempty"` + RedisClusters []customRedis `json:"redis_clusters,omitempty"` + Gateways []customGateway `json:"gateways,omitempty"` }{ pn, listInstanceServers, @@ -82,28 +82,34 @@ func privateNetworkGetBuilder(c *core.Command) *core.Command { c.View = &core.View{ Sections: []*core.ViewSection{ { - FieldName: "InstanceServers", - Title: "Instance Servers", + FieldName: "InstanceServers", + Title: "Instance Servers", + HideIfEmpty: true, }, { - FieldName: "BaremetalServers", - Title: "Baremetal Servers", + FieldName: "BaremetalServers", + Title: "Baremetal Servers", + HideIfEmpty: true, }, { - FieldName: "LBs", - Title: "Load-Balancers", + FieldName: "LBs", + Title: "Load-Balancers", + HideIfEmpty: true, }, { - FieldName: "RdbInstances", - Title: "Rdb Instances", + FieldName: "RdbInstances", + Title: "Rdb Instances", + HideIfEmpty: true, }, { - FieldName: "RedisClusters", - Title: "Redis Clusters", + FieldName: "RedisClusters", + Title: "Redis Clusters", + HideIfEmpty: true, }, { - FieldName: "Gateways", - Title: "Public Gateways", + FieldName: "Gateways", + Title: "Public Gateways", + HideIfEmpty: true, }, }, } diff --git a/internal/namespaces/vpc/v1/custom_private_network_test.go b/internal/namespaces/vpc/v1/custom_private_network_test.go index 2fb4368603..fbd160a529 100644 --- a/internal/namespaces/vpc/v1/custom_private_network_test.go +++ b/internal/namespaces/vpc/v1/custom_private_network_test.go @@ -17,7 +17,7 @@ func Test_GetPrivateNetwork(t *testing.T) { cmds.Merge(rdb.GetCommands()) cmds.Merge(redis.GetCommands()) - /*t.Run("Simple", core.Test(&core.TestConfig{ + t.Run("Simple", core.Test(&core.TestConfig{ Commands: cmds, BeforeFunc: core.BeforeFuncCombine( createPN(), @@ -30,7 +30,7 @@ func Test_GetPrivateNetwork(t *testing.T) { deleteInstance(), deletePN(), ), - }))*/ + })) t.Run("Multiple", core.Test(&core.TestConfig{ Commands: cmds, diff --git a/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.cassette.yaml b/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.cassette.yaml index caa448854e..f8505f517d 100644 --- a/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.cassette.yaml +++ b/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.cassette.yaml @@ -2,7 +2,10 @@ version: 1 interactions: - request: - body: '{"name":"cli-pn-cocky-wu","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null}' + body: '{"id":"a9b67cf7-5acd-42db-8167-64d3445260ab", "name":"cli-pn-serene-leavitt", + "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-05-16T09:22:00.038604Z", + "updated_at":"2023-05-16T09:22:00.038604Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "subnets":["172.16.44.0/22", "fd46:78ab:30b8:2ca::/64"], "zone":"fr-par-1"}' form: {} headers: Content-Type: @@ -12,16 +15,19 @@ interactions: url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks method: POST response: - body: '{"id":"57c74385-6157-413e-903b-273f66181b80","name":"cli-pn-cocky-wu","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2023-05-12T12:26:57.848128Z","updated_at":"2023-05-12T12:26:57.848128Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":["172.16.12.0/22","fd46:78ab:30b8:7e91::/64"],"zone":"fr-par-1"}' + body: '{"id":"a9b67cf7-5acd-42db-8167-64d3445260ab", "name":"cli-pn-serene-leavitt", + "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-05-16T09:22:00.038604Z", + "updated_at":"2023-05-16T09:22:00.038604Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "subnets":["172.16.44.0/22", "fd46:78ab:30b8:2ca::/64"], "zone":"fr-par-1"}' headers: Content-Length: - - "349" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:57 GMT + - Tue, 16 May 2023 09:22:00 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -31,19 +37,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a58da725-dcee-45f2-afdb-ab87f7ebb3f8 + - 20e0512e-7587-4c15-a68c-b1b71699bffa status: 200 OK code: 200 duration: "" - request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/marketplace/v1/images?page=1 - method: GET - response: body: '{"images": [{"id": "0d3a22da-c634-45d6-a7dd-aff402f88b0c", "name": "AlmaLinux 8", "label": "almalinux_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux @@ -1532,263 +1530,2101 @@ interactions: "current_public_version": "08baf82b-82b8-4450-b545-c2fbfd4d6135", "creation_date": "2016-03-07T21:03:59.783534+00:00", "modification_date": "2023-04-13T14:40:21.433436+00:00", "valid_until": null}]}' - headers: - Content-Length: - - "126189" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 12 May 2023 12:26:58 GMT - Link: - - ; rel="last" - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d7f6d0f9-a9b1-450f-be86-d74b68049ec3 - X-Total-Count: - - "23" - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/68cf470e-6c35-4741-bbff-4ce788616461 - method: GET - response: - body: '{"image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu - 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", - "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, - "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", - "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": - null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}}' - headers: - Content-Length: - - "614" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 12 May 2023 12:26:58 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 89446229-85b5-47df-a97a-fe32169abbb3 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: - body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, - "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": - 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 800000000000}}, "baremetal": false, "monthly_price": 36.1496, "hourly_price": - 0.04952, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": - "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": - 4294967296, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, - "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, - "baremetal": false, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", - "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, - "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, - "baremetal": false, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", - "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": - 12884901888, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, - "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, - "baremetal": false, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", - "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}}, "ENT1-2XL": {"alt_names": [], "arch": "x86_64", "ncpus": 96, - "ram": 412316860416, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": - 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": - false, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": - ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": - false, "placement_groups": true, "block_storage": true, "private_network": 8}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": - 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 20000000000}]}}, "ENT1-L": - {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": - 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, - "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}}, "ENT1-M": - {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": - 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, - "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 3200000000}]}}, "ENT1-S": - {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, - "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}}, "ENT1-XL": - {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": - 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, - "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}}, "ENT1-XS": - {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, - "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "ENT1-XXS": - {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, - "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "GP1-L": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": - 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["bootscript", - "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "private_network": 8}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": - 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 5000000000}]}}, "GP1-M": - {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": - 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": - ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "private_network": 8}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": - 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 1500000000}]}}, "GP1-S": - {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": - ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "private_network": 8}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": - 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "GP1-VIZ": - {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 72.0, "hourly_price": 0.1, "capabilities": {"boot_types": - ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "private_network": 8}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": - 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "GP1-XL": - {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": - 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": - ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "private_network": 8}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": - 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 10000000000}]}}, "GP1-XS": - {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": - ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "private_network": 8}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": - 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "PLAY2-MICRO": - {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, - "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "PLAY2-NANO": - {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, - "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "PLAY2-PICO": - {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, - "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}}, "PRO2-L": - {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": - 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["rescue", "local"], + body: '{"images": [{"id": "0d3a22da-c634-45d6-a7dd-aff402f88b0c", "name": "AlmaLinux + 8", "label": "almalinux_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", + "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux + distribution, governed and driven by the community, focused on long-term stability + and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "41f32a25-c977-4dae-9a80-c997de7084c4", + "name": "2023-04-13T13:09:21.808853+00:00", "local_images": [{"id": "2d0ee515-2888-4c3a-ad0f-e59706b4129e", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "18c1965e-2f19-4be1-bf76-c00493b5eb87", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "8211d82a-2bae-4374-9db6-537fc4270bed", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "7e5efe0b-4e07-4fc0-8c90-5cf434742bb6", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "29f387f4-367b-4a70-a1a5-f3e838779d6f", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "0907829d-3310-43a7-940e-f3d0edaa980f", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "eefb08ee-e99a-4f62-85a3-b626bc704761", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "01acc25c-ba09-4830-851a-2542e5bc3dcb", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "4cfdcb7b-c2fa-4cf0-afb3-84b40a1c3d5d", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8a052964-cef0-467e-a97b-44790b927041", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:09:21.960045+00:00", + "modification_date": "2023-04-13T13:09:21.960045+00:00"}], "categories": ["distribution"], + "current_public_version": "41f32a25-c977-4dae-9a80-c997de7084c4", "creation_date": + "2021-10-05T13:36:52.246490+00:00", "modification_date": "2023-04-13T14:39:27.135528+00:00", + "valid_until": null}, {"id": "486ead23-9656-41d1-aa74-a5a780b2ae1b", "name": + "AlmaLinux 9", "label": "almalinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", + "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux + distribution, governed and driven by the community, focused on long-term stability + and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "c8fe19b6-5406-42d1-82e2-92103b7f8323", + "name": "2023-04-13T13:08:00.223293+00:00", "local_images": [{"id": "8b2a0086-4014-4057-8681-9c23bdff934b", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "ba414ba2-6fd3-472d-9426-9003d3be907d", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "70c83503-a8da-48d3-bd74-f5edc76b597d", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "d5caa4ee-11c0-4f46-bbb0-975346a2868d", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "a4e5f971-f0d3-4c1a-9a87-7942cf35d54a", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "04627843-5631-4e6b-aa75-028cbda5cf9a", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "7a2606d4-6904-4ba7-95b5-367fd4229c42", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "ce34e9fa-b154-4bbd-a602-6dc4e311900b", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "55bcf97c-5b85-4483-ab44-26380076c73d", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "6e05dc1e-6785-4f90-a5b8-adcdeb8daffa", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:08:00.408431+00:00", + "modification_date": "2023-04-13T13:08:00.408431+00:00"}], "categories": ["distribution"], + "current_public_version": "c8fe19b6-5406-42d1-82e2-92103b7f8323", "creation_date": + "2022-08-24T09:21:26.315925+00:00", "modification_date": "2023-04-13T14:38:52.308804+00:00", + "valid_until": null}, {"id": "8f60c5dd-e659-48da-97e3-fb7de42195f5", "name": + "Arch Linux", "label": "arch_linux", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/archlinux.png", + "description": "Arch Linux is an independently developed Linux distribution + versatile enough to suit any role.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "fa0ae29c-27d3-4551-bb34-1a659a96d3c2", + "name": "2022-01-24T16:08:58.141740+00:00", "local_images": [{"id": "b57ecf7e-5b57-4ad7-8a57-30584aeb4c26", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XS", "ENT1-XXS"]}, {"id": "e9543979-6125-473d-9d62-398724da0c7f", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB", "ENT1-XS", "ENT1-XXS"]}, {"id": "6849a7e3-65e2-4c53-bfb4-18c157a9cd66", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS"]}, {"id": "6219dbd0-091e-4a64-9891-dfcbb586f6dd", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", + "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS"]}, {"id": "a1326795-478b-4ba1-be4b-592ecc100cac", "zone": "pl-waw-1", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", + "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", + "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", + "ENT1-XXS", "ENT1-XS"]}, {"id": "77184ad4-f7ba-486c-bdc3-509acae544a8", "zone": + "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "ENT1-XS", "ENT1-XXS"]}, + {"id": "2f64d38e-96d3-47d6-80b3-379893b2803a", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "ENT1-XXS", "ENT1-XS"]}], + "creation_date": "2022-01-24T16:08:58.198257+00:00", "modification_date": "2022-01-24T16:08:58.198257+00:00"}], + "categories": ["distribution"], "current_public_version": "fa0ae29c-27d3-4551-bb34-1a659a96d3c2", + "creation_date": "2016-03-07T20:55:32.213089+00:00", "modification_date": "2022-01-26T12:54:47.557608+00:00", + "valid_until": null}, {"id": "dc947de3-ddc7-4056-bc35-d51a316ebbb4", "name": + "CentOS 7.9", "label": "centos_7.9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/centos.png", + "description": "The CentOS Project is a community-driven free software effort + focused on delivering a robust open source ecosystem.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "a37e7b5d-a5e5-4506-8897-4129bab079ca", "name": + "2023-04-13T13:05:23.543151+00:00", "local_images": [{"id": "15c5dd42-434b-49cf-a5b4-8bb3b5f9dc9d", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "54dfc73a-2a0b-4ea0-8e8e-abe85357a6cc", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "d579e95a-4c2c-4f37-b57e-c2fc22b87966", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "fc1f0708-c8e3-4ceb-a36a-6f47765d4f60", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "63b021be-1ec3-4227-b34d-06c976074422", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "3e454a77-0ff5-47b0-9c7a-cc4dca7acaeb", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "98aceddf-c90f-4521-aa7b-93f942b5d2b5", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:05:23.795841+00:00", + "modification_date": "2023-04-13T13:05:23.795841+00:00"}], "categories": ["distribution"], + "current_public_version": "a37e7b5d-a5e5-4506-8897-4129bab079ca", "creation_date": + "2019-12-25T00:00:00+00:00", "modification_date": "2023-04-13T14:37:49.401742+00:00", + "valid_until": null}, {"id": "f49dc23e-82d1-48c3-b80e-6c697b1dda92", "name": + "Centos Stream 8", "label": "centos_stream_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/centos.png", + "description": "The CentOS Project is a community-driven free software effort + focused on delivering a robust open source ecosystem.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "f5daf351-659e-4f06-b7e7-86925f9c7011", "name": + "2023-03-28T07:17:56.324937+00:00", "local_images": [{"id": "5333864b-3235-4098-af75-f35f5239e35b", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "3e937622-375c-43ba-bff3-42a71d3077c6", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "033be0a0-e9ef-40ac-aefd-c8318c3d8ba6", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "4b75df8b-0d27-4437-b0a0-bf5dbcce1a65", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "d3328600-e772-4fd9-9135-1cade6626730", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8e922e6b-4291-421a-8bae-62b94506fe86", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "144fea20-72db-4be9-ae4a-54bde78ebcef", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "7f8365a3-68b3-43dd-b623-7bc903bc1c5b", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "147faa2b-ccef-412a-a359-9141f21f6a32", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "f4c9b209-6aef-4285-8eab-db9bf958a875", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-03-28T07:17:56.469669+00:00", + "modification_date": "2023-03-28T07:17:56.469669+00:00"}], "categories": ["distribution"], + "current_public_version": "f5daf351-659e-4f06-b7e7-86925f9c7011", "creation_date": + "2022-02-03T10:23:22.168515+00:00", "modification_date": "2023-03-28T15:00:55.387802+00:00", + "valid_until": null}, {"id": "cfb3fa01-6406-4be8-9e9d-29daee2582fa", "name": + "Centos Stream 9", "label": "centos_stream_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/centos.png", + "description": "The CentOS Project is a community-driven free software effort + focused on delivering a robust open source ecosystem.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "4c494b40-7244-411c-a724-65b8eedb2bc2", "name": + "2023-04-13T13:06:38.087421+00:00", "local_images": [{"id": "f62ab353-50bd-4d10-b1d9-6c092c22c2f3", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "c36b741d-3682-4550-b77f-9b5bbf5361a1", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "73ea099f-8489-4fbc-ada2-b8541d46df0c", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "3c8d2b19-b4f8-4cc1-aa04-534778519858", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "fe632ece-1b83-4036-8b7b-8f8a5aaae81b", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8cd32169-81df-42d7-8581-6cfbf6293a6c", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "5937285a-eb94-481d-9196-7446b6783ec5", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8db20e68-5ae6-4335-a668-31e321f237a9", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "9f8fba00-c8e8-4d44-ae57-2b8c91e3c997", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "74961e81-7bb0-4604-be5f-b2b622b88b14", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:06:38.259838+00:00", + "modification_date": "2023-04-13T13:06:38.259838+00:00"}], "categories": ["distribution"], + "current_public_version": "4c494b40-7244-411c-a724-65b8eedb2bc2", "creation_date": + "2022-02-03T10:35:17.004309+00:00", "modification_date": "2023-04-13T14:37:08.857124+00:00", + "valid_until": null}, {"id": "7bdc1afb-231f-486a-9b85-1b0478bc0e4a", "name": + "Debian Buster", "label": "debian_buster", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/debian.png", + "description": "Debian is a free operating system, developed by thousands of + volunteers from all over the world who collaborate via the Internet.", "organization": + {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources + Build System"}, "versions": [{"id": "8bd9d92c-2b86-475e-9d3d-4f9b69b7c795", + "name": "2022-11-22T14:21:22.175009+00:00", "local_images": [{"id": "d03f9dd6-6329-4aed-ad61-1973efd27cac", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "51d60da2-7ae9-45e7-81d1-9fb56a6adab7", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "641b3cdd-c70c-41cc-9ff2-6e803b928f34", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "1934aaa0-a0bf-4725-b5b3-1adc9954424b", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "5cca9d53-612a-4a59-be02-817d977dda64", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "116721d2-6af0-4d27-9505-2bbb26b63a92", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "1761dcf5-4396-4a5d-8b28-7d7cb6dc72f5", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2022-11-22T14:21:22.304730+00:00", "modification_date": "2022-11-22T14:21:22.304730+00:00"}], + "categories": ["distribution"], "current_public_version": "8bd9d92c-2b86-475e-9d3d-4f9b69b7c795", + "creation_date": "2019-07-16T13:55:36.377559+00:00", "modification_date": "2022-11-22T15:03:29.064893+00:00", + "valid_until": null}, {"id": "213b02cb-3d8d-4967-ba8d-e5767a57574e", "name": + "Debian Bullseye", "label": "debian_bullseye", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/debian.png", + "description": "Debian is a free operating system, developed by thousands of + volunteers from all over the world who collaborate via the Internet.", "organization": + {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources + Build System"}, "versions": [{"id": "2adb2f81-b517-4dbd-b4f1-c58f658c9813", + "name": "2023-04-13T13:03:55.707814+00:00", "local_images": [{"id": "1d218316-3884-4b62-bdeb-b5fc14fa6cdb", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "409c3356-9a2d-4212-983e-78f1ce0f23b7", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "2620d33a-6c1d-4fb4-8502-93e60644bfce", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "14901537-a464-4003-b7d9-388f0db136a5", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "1f9b4f99-332b-46b1-99c9-3f6279c2baff", + "zone": "nl-ams-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "44d9ae31-80b8-448a-9487-e196b9c2a09f", "zone": "par1", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "52b02895-018a-4813-a522-0ab5fb838c02", + "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "4100648b-5063-436d-a8ae-62d5f961a25d", "zone": "pl-waw-1", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "91481d0d-c45e-4712-9491-787a7842d211", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "35a07178-bce4-4966-ac5f-a415135fe8d0", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "19aa7502-a4f3-4e65-a980-754fa2069217", "zone": "pl-waw-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "56ad2234-2a81-4232-86c5-314d80789ba2", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "3ee075e9-3556-4e9d-b764-b51ba5ce8c39", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "588137bb-78c8-4397-893a-e9deca6cfc74", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", "GP1-M", + "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G", "DEV1-S", "DEV1-M", + "DEV1-L", "DEV1-XL", "STARDUST1-S"]}], "creation_date": "2023-04-13T13:03:55.943087+00:00", + "modification_date": "2023-04-13T13:03:55.943087+00:00"}], "categories": ["distribution"], + "current_public_version": "2adb2f81-b517-4dbd-b4f1-c58f658c9813", "creation_date": + "2021-07-21T09:09:36.581723+00:00", "modification_date": "2023-04-13T14:36:19.543959+00:00", + "valid_until": null}, {"id": "c1b530d8-0ca0-45c4-80db-ba06608287b2", "name": + "Docker", "label": "docker", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/docker.png", + "description": "Docker is an open platform for developers and sysadmins to build, + ship, and run distributed applications.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "aeaa9adb-f93e-482b-bb03-e402def75243", + "name": "2023-04-13T13:03:17.035176+00:00", "local_images": [{"id": "5c789fa0-3618-46b6-a484-6915a074cd1b", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "822bd95d-39f5-4649-b9ac-1b23869fb5eb", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "50ebcf47-39b5-4087-ad18-79f63b9fdc05", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "2d7d32fd-3c5c-4b5d-ab9a-6423741e6d4e", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "78b02952-be83-4b4b-a77c-1ecec5356652", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "0a7c1075-086b-4b07-b285-84c6d55b544f", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "157c5202-f71d-40d2-9cbe-08a11d0d6ab6", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:03:17.145319+00:00", + "modification_date": "2023-04-13T13:03:17.145319+00:00"}], "categories": ["instantapp"], + "current_public_version": "aeaa9adb-f93e-482b-bb03-e402def75243", "creation_date": + "2016-03-05T15:11:26.847640+00:00", "modification_date": "2023-04-13T14:34:48.199797+00:00", + "valid_until": null}, {"id": "186859f6-0152-45dd-9eb8-21fc5e8d774e", "name": + "Fedora 36", "label": "fedora_36", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", + "description": "Fedora is a powerful, flexible operating system that includes + the best and latest datacenter technologies. It puts you in control of all your + infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "9c65e858-7550-4118-9ca1-9086bf70ae11", + "name": "2023-04-13T13:03:38.692646+00:00", "local_images": [{"id": "b613de94-efde-49b0-84fd-18698da03450", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "4e0d352b-c33b-43c9-8b10-6750b70f87ec", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "6b76e0e1-f650-434a-b901-628a24807738", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "186cf8ac-3ba8-4be3-a420-e09a7a556269", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "5ab8b0ba-e458-4a2d-b349-4c63cab96f08", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "12256f5e-7577-421d-b13a-8e6f53c7656c", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "68532aae-1625-4a7a-ac48-b12426e1fbc4", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "e55c488c-6ca3-41eb-875e-48f7babe1500", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "595da48b-750e-4745-a211-44926dabce33", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "375587da-52be-4149-8fff-1ffbc1b242b2", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-04-13T13:03:38.803387+00:00", + "modification_date": "2023-04-13T13:03:38.803387+00:00"}], "categories": ["distribution"], + "current_public_version": "9c65e858-7550-4118-9ca1-9086bf70ae11", "creation_date": + "2022-04-14T15:45:29.069701+00:00", "modification_date": "2023-04-13T14:34:14.050901+00:00", + "valid_until": null}, {"id": "2b0e5802-eb82-4fd5-ac8f-6877c46aa14b", "name": + "Fedora 37", "label": "fedora_37", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", + "description": "Fedora is a powerful, flexible operating system that includes + the best and latest datacenter technologies. It puts you in control of all your + infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "7c6510e3-7720-4af2-94f5-a13e3eb7aec4", + "name": "2023-04-13T13:02:37.974360+00:00", "local_images": [{"id": "c8e8559a-84dd-4c0b-8727-d53bbd04de4b", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "116a529d-671d-4cd9-974d-0aca049be4d7", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "03cfa199-fff9-4677-b1b7-b676ec6d2c70", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "6fb9a92b-e16d-407a-b61e-c048c0555f9d", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "9f1b1efc-0ed1-4bdd-b547-5eaa0a1bb551", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "59687a02-e1b9-4d0a-b1ac-21e83c4c3eec", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "7a610c42-0b81-4db2-b831-11202d06a0fe", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "fb8d4eec-de07-4fe4-b515-70fb650bf471", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8aed02d3-b7f5-43f5-a232-a2dab285ce2f", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "e977e7f8-875f-4a54-a141-f3fa288e0b97", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": + "2023-04-13T13:02:38.088623+00:00", "modification_date": "2023-04-13T13:02:38.088623+00:00"}], + "categories": ["distribution"], "current_public_version": "7c6510e3-7720-4af2-94f5-a13e3eb7aec4", + "creation_date": "2022-11-14T10:48:04.097063+00:00", "modification_date": "2023-04-13T14:33:41.303847+00:00", + "valid_until": null}, {"id": "dab3ed4b-5d6a-4b77-82e2-04405fd2a59e", "name": + "Fedora 38", "label": "fedora_38", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", + "description": "Fedora is a powerful, flexible operating system that includes + the best and latest datacenter technologies. It puts you in control of all your + infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "dc49f9c0-e9f3-4f0a-8ef5-74116ed5995f", + "name": "2023-04-18T08:23:43.637923+00:00", "local_images": [{"id": "4040de51-ebc3-4f24-b14c-054f8cd966bf", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "3077c13c-e1a7-404e-85de-560e427c6359", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "a5a980d0-91fa-4f0b-93a4-e1cc853b24dc", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "70da9c18-8d97-4de4-b666-275536750a9f", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "2bf83ac5-36a0-4245-9e66-22d5de47ce4f", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "0f0d629c-e18b-4ab3-b39e-7dd92a094627", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "e4b2dde2-250b-4afc-9641-91bb170b9344", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "fe8b1d78-bf61-4939-a621-8718fda1d070", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "811b12a5-2d32-46ec-8357-00cea52c33ed", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "61cf62c9-8b3d-49e3-9795-3d684909ff98", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": + "2023-04-18T08:23:43.848581+00:00", "modification_date": "2023-04-18T08:23:43.848581+00:00"}], + "categories": ["distribution"], "current_public_version": "dc49f9c0-e9f3-4f0a-8ef5-74116ed5995f", + "creation_date": "2023-04-18T07:53:13.621657+00:00", "modification_date": "2023-04-18T09:29:09.701576+00:00", + "valid_until": null}, {"id": "233074b9-e2ba-4e78-818e-dd4930ce6bee", "name": + "GitLab", "label": "gitlab", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/gitlab.png", + "description": "GitLab is a web-based Git repository manager with wiki and issue + tracking features.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "b16ed12e-299b-4dbd-8225-9b8644d5ec04", + "name": "2023-04-13T13:06:28.354726+00:00", "local_images": [{"id": "416e6290-b9dd-47f8-9a90-f07cb7fa0f1d", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "0030922b-675e-4348-853f-4e4490c14ee9", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "16622dfc-d69c-4c78-9462-1321f84ac750", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "01d0cc75-9b4c-4d88-8560-5a0308a20c97", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "e71db560-19bc-4dfe-9c84-84ae7e3a6809", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "04f3be3a-f6d1-41e7-9b63-7b1d2e3492a1", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "8d43f819-553b-4490-893b-cb82abeffb14", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2023-04-13T13:06:28.530554+00:00", "modification_date": "2023-04-13T13:06:28.530554+00:00"}], + "categories": ["instantapp"], "current_public_version": "b16ed12e-299b-4dbd-8225-9b8644d5ec04", + "creation_date": "2016-03-07T21:06:22.770864+00:00", "modification_date": "2023-04-13T14:32:36.692844+00:00", + "valid_until": null}, {"id": "7d4a7cb1-1fd5-4a64-920b-c79f47367254", "name": + "NextCloud", "label": "nextcloud", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/nextcloud.png", + "description": "Nextcloud is an open source, self-hosted file share and communication + platform.", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": + "OCS"}, "versions": [{"id": "fe957b4f-1ab1-41bf-a142-b771f039d2c9", "name": + "2023-04-13T13:00:13.060943+00:00", "local_images": [{"id": "b1d51a36-38dc-4d65-873c-4fed3dbeb21e", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "220ab3a6-0b38-4d6c-864d-fd6feb8aa99c", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "5e2f22ec-d003-485f-bec2-9a5372f5f0e4", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "cee6ae09-afdc-4286-bc93-98fdb214effe", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "4ac5d79b-597b-4d05-a3d2-b3f44431bc2a", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "30d1c545-c406-4515-83ab-f5224d4f95b6", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "f3a31d98-0e04-45da-8246-de949f5615e4", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:00:13.324444+00:00", + "modification_date": "2023-04-13T13:00:13.324444+00:00"}], "categories": ["instantapp"], + "current_public_version": "fe957b4f-1ab1-41bf-a142-b771f039d2c9", "creation_date": + "2019-04-16T12:22:56.930842+00:00", "modification_date": "2023-04-13T14:31:50.306200+00:00", + "valid_until": null}, {"id": "b6f4edc8-21e6-4aa2-8f52-1030cf6d4dd8", "name": + "OpenVPN", "label": "openvpn", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/openvpn.png", + "description": "Surf the web in a secure and anonymous way with OpenVPN InstantApp.", + "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "auth-team+ocs-organization@scaleway.com"}, + "versions": [{"id": "8c40dae0-21ad-4226-821a-aab4c6acae92", "name": "2023-04-13T12:54:17.348185+00:00", + "local_images": [{"id": "98cf2d5f-9268-4cc1-bc43-4ae9c9e66d75", "zone": "par1", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", + "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "defab02d-b971-4418-8349-2a2da5740274", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "9ea9fd9c-a795-4de7-8cd2-ca21e04f6aa7", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "dfc57325-2ab1-4bd0-acb0-0f93ab55a8e2", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "1a50ba7a-d691-4521-9837-b6c5e8be9ab4", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "d2828fd6-1d35-4140-9079-54e7025df877", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "a60d4970-e050-4677-b54b-c0d395c56100", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2023-04-13T12:54:17.619668+00:00", "modification_date": "2023-04-13T12:54:17.619668+00:00"}], + "categories": ["instantapp"], "current_public_version": "8c40dae0-21ad-4226-821a-aab4c6acae92", + "creation_date": "2016-03-07T21:04:57.667667+00:00", "modification_date": "2023-04-13T14:31:04.244508+00:00", + "valid_until": null}, {"id": "1576bf6b-f640-47f2-9117-968419d0546e", "name": + "Rocky Linux 8", "label": "rockylinux_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/rockylinux.png", + "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, + production-ready Linux.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "417d33a8-8b9f-46ff-aedd-d74147dbd69c", + "name": "2023-04-13T12:55:09.822172+00:00", "local_images": [{"id": "d7ddbcb3-221f-49b9-8c6a-34ab34e73210", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "1e6ba192-5490-4a56-a08e-27eabbc3b4d7", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "4ee70f73-0190-4e73-8027-48745eb18f18", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8a2c37b7-be86-431c-9d01-25a0682c5d71", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "c203b350-f2f2-420c-9a78-c21b3ef7b58a", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "2221b6bd-0b45-4478-877b-09eacbb7f8ed", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "af358d06-8b8a-4a66-afdc-88e0334e12a5", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "3657c2df-32fb-4afa-8bf5-be7ea7ab3e69", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "0300040c-f900-47ec-b21f-0f7410d75706", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "5809a93b-69d2-40d4-8b09-79da20ef1e1e", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-04-13T12:55:09.955903+00:00", + "modification_date": "2023-04-13T12:55:09.955903+00:00"}], "categories": ["distribution"], + "current_public_version": "417d33a8-8b9f-46ff-aedd-d74147dbd69c", "creation_date": + "2021-06-25T10:16:16.254240+00:00", "modification_date": "2023-04-13T14:28:09.866367+00:00", + "valid_until": null}, {"id": "589c35a9-20ce-4ed9-92d7-16dc061be52b", "name": + "Rocky Linux 9", "label": "rockylinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/rockylinux.png", + "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, + production-ready Linux.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "af5d0eb1-1246-46b9-9769-e0efcc95ab1b", + "name": "2023-03-27T14:28:13.225003+00:00", "local_images": [{"id": "61392b4d-22bb-40da-acdd-b08d35213297", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "d0281001-81a9-4922-ad94-bac49e2dfd46", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "146f823e-7024-4ad1-a89f-e4a7da951d57", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "65deaabd-215d-4790-a324-7d2874f0af9d", "zone": "par1", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "3bdd781e-2dae-4880-a4ee-9135057424cb", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "e0aaf648-5767-4533-92b0-7bd87eaa5dbb", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f0f50b4a-16b7-48db-996d-a9c7a0cbff88", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "876933bd-7e2d-4f0f-8bf1-837a1e31ac65", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "b18e2393-d19b-4101-ba5b-226252d2b628", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "7c2d400e-b9b3-44c2-9391-1071de7db77f", "zone": "ams1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO"]}], "creation_date": "2023-03-27T14:28:13.417555+00:00", "modification_date": + "2023-03-27T14:28:13.417555+00:00"}], "categories": ["distribution"], "current_public_version": + "af5d0eb1-1246-46b9-9769-e0efcc95ab1b", "creation_date": "2022-08-24T09:26:33.639016+00:00", + "modification_date": "2023-03-28T15:09:22.188518+00:00", "valid_until": null}, + {"id": "3f1b9623-71ba-4fe3-b994-27fcdaa850ba", "name": "Ubuntu 20.04 Focal Fossa", + "label": "ubuntu_focal", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu + Server helps you make the most of your infrastructure.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "12e69a70-af87-4728-8bb1-a940a8d48d35", "name": + "2023-04-13T12:38:58.138108+00:00", "local_images": [{"id": "2fedb0c7-1686-4529-8344-be9e198e4dd2", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "7c748e78-971e-40ab-83f6-461e20a56c68", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "1dba408b-0faa-49c6-937e-e24d45e54157", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "a0a26970-909b-48d1-a3cc-8a47c81a374e", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "b2e92f75-db2b-4bcd-85bf-3ba21b2287bf", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "57e89f65-ec39-4847-aed5-942629dff0ad", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "5ae24724-3cb2-40ac-9a10-6e244150587d", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "bcdd8214-e642-4fb8-a6a1-5ff910f82e22", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "d12ccc29-0fa0-4075-8dbe-2c2e4469f99c", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T12:38:58.306640+00:00", + "modification_date": "2023-04-13T12:38:58.306640+00:00"}], "categories": ["distribution"], + "current_public_version": "12e69a70-af87-4728-8bb1-a940a8d48d35", "creation_date": + "2020-02-17T15:50:48.980694+00:00", "modification_date": "2023-04-13T14:26:25.085299+00:00", + "valid_until": null}, {"id": "1123148c-7660-4cb2-9fd3-7b5b4896f72f", "name": + "Ubuntu 22.04 Jammy Jellyfish", "label": "ubuntu_jammy", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu + Server helps you make the most of your infrastructure.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "687cdcd5-f485-4396-b2b0-a06f7f3ff00b", "name": + "2023-04-13T12:16:06.199424+00:00", "local_images": [{"id": "ce453858-557c-4f1c-a7a9-70026e67d054", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "6cda247a-0c01-46c5-8835-9f3143905de0", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "8e0d42ac-2a7e-4ee0-a906-738a115d596e", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "235f2c1a-f81e-4aa2-af5f-b0dcf001c398", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "08d5fc73-5a8b-4eb4-8c13-cee729f05d9f", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "22f92b70-9c50-41a7-856f-71d13052b652", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "898e56c4-296d-418b-94d3-18b14a4312fd", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "83b0da88-403f-41bf-b4ce-faf16dde2d13", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "4faf43e8-465c-4273-8e96-a828399804a0", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "95819e57-4ee3-4f93-afba-96de74c329f7", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], + "creation_date": "2023-04-13T12:16:06.393838+00:00", "modification_date": "2023-04-13T12:16:06.393838+00:00"}], + "categories": ["distribution"], "current_public_version": "687cdcd5-f485-4396-b2b0-a06f7f3ff00b", + "creation_date": "2022-04-07T13:35:54.966630+00:00", "modification_date": "2023-04-13T14:25:38.413213+00:00", + "valid_until": null}, {"id": "b381b2bf-804a-4b12-91f6-9f4ff273462f", "name": + "Ubuntu Bionic", "label": "ubuntu_bionic", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu + Server helps you make the most of your infrastructure.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "599269e6-7332-4a0c-8cd8-0e9e17f6c91e", "name": + "2023-04-13T12:47:26.451219+00:00", "local_images": [{"id": "fe177b1f-c067-45f3-84a6-5aefd68f7f77", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "c128aa85-0cf6-48e1-8d32-660b9f1fc9be", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "3bcf8475-dcd1-43ad-aabd-c7af51f4805a", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "9ffd49dd-f620-4ee4-91a2-65028ebbe1b5", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "3bb18d01-6f5e-4648-b524-70cc241e9686", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "55e9cd84-1a80-48ef-a3fb-3c2a2d13e164", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2023-04-13T12:47:26.676017+00:00", "modification_date": "2023-04-13T12:47:26.676017+00:00"}], + "categories": ["distribution"], "current_public_version": "599269e6-7332-4a0c-8cd8-0e9e17f6c91e", + "creation_date": "2018-04-27T14:07:25.221998+00:00", "modification_date": "2023-04-13T14:27:25.576115+00:00", + "valid_until": null}, {"id": "4dcc771c-820f-405c-b663-4564bdc2ed56", "name": + "Ubuntu Focal GPU OS 11", "label": "ubuntu_focal_gpu_os_11", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu 20.04 Focal Fossa for Nvidia GPU and Machine Learning", + "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances + User Resources Build System"}, "versions": [{"id": "5cff6a19-a5e0-46bb-bcbc-4942c836ca46", + "name": "2022-09-15T19:11:26.000595+00:00", "local_images": [{"id": "d22f119d-400b-4792-9d2c-985be3fe0a2b", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", + "GPU-3070-S"]}, {"id": "04ac2de1-2c99-4cf8-a533-ea92e7809d32", "zone": "fr-par-2", + "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", "GPU-3070-S"]}], + "creation_date": "2022-09-15T19:11:26.061606+00:00", "modification_date": "2022-09-15T19:11:26.061606+00:00"}], + "categories": ["Machine Learning"], "current_public_version": "5cff6a19-a5e0-46bb-bcbc-4942c836ca46", + "creation_date": "2021-11-30T12:37:45.971134+00:00", "modification_date": "2022-09-19T14:10:37.648361+00:00", + "valid_until": null}, {"id": "a6c68db3-5613-4b08-acaa-2c92d8baf26c", "name": + "Ubuntu Jammy GPU OS 12", "label": "ubuntu_jammy_gpu_os_12", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu 22.04 Jammy Jellyfish for Nvidia GPU and Machine Learning + (GPU passthrough)", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "acac98cc-db99-47f7-882c-693e895d8b21", + "name": "2023-02-15T09:47:38.749339+00:00", "local_images": [{"id": "7dbfc0d2-0699-4e38-8664-45971a24af33", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", + "GPU-3070-S"]}, {"id": "819cb4c0-b0d3-475e-a18a-014f1998853c", "zone": "fr-par-2", + "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", "GPU-3070-S"]}], + "creation_date": "2023-02-15T09:47:38.843433+00:00", "modification_date": "2023-02-15T09:47:38.843433+00:00"}], + "categories": ["Machine Learning"], "current_public_version": "acac98cc-db99-47f7-882c-693e895d8b21", + "creation_date": "2023-01-20T14:30:57.496021+00:00", "modification_date": "2023-02-15T10:00:58.861108+00:00", + "valid_until": null}, {"id": "215a50f9-0ba8-4e9c-a4e7-10caf50e3586", "name": + "WordPress", "label": "wordpress", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/wordpress.png", + "description": "WordPress is the most popular web software you can use to create + a beautiful website or blog.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "08baf82b-82b8-4450-b545-c2fbfd4d6135", + "name": "2023-04-13T13:48:44.450791+00:00", "local_images": [{"id": "af715cfb-e95f-42bf-b308-eedc91ae4806", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "f9be223b-f639-4ed9-83f0-ee911be052de", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "1927920a-520f-4712-9a56-11d7cbbe43be", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "2406e707-b3cc-4721-9e7d-293ecec7dcf8", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "28357650-c47f-4bd2-8589-0cb4923c0f58", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "7c0ba4cb-6286-4220-9e28-de57042c6812", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "9490b6b4-92cb-4c9e-abfc-1cee6187ee29", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:48:44.619998+00:00", + "modification_date": "2023-04-13T13:48:44.619998+00:00"}], "categories": ["instantapp"], + "current_public_version": "08baf82b-82b8-4450-b545-c2fbfd4d6135", "creation_date": + "2016-03-07T21:03:59.783534+00:00", "modification_date": "2023-04-13T14:40:21.433436+00:00", + "valid_until": null}]}' + headers: + Content-Length: + - "126189" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 16 May 2023 09:22:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0cf8d3b-c704-43af-af33-4d1087029bcc + X-Total-Count: + - "23" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu + 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/68cf470e-6c35-4741-bbff-4ce788616461 + method: GET + response: + body: '{"image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu + 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "614" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 16 May 2023 09:22:00 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8f3f3e0e-6ec3-4598-a096-d57f5129bc87 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, + "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": + 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "baremetal": false, "monthly_price": 36.1496, "hourly_price": + 0.04952, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": + 4294967296, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": + 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 300000000}]}}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 12884901888, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": + 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 500000000}]}}, "ENT1-2XL": {"alt_names": [], "arch": "x86_64", "ncpus": 96, + "ram": 412316860416, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": + false, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": + ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + false, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": + 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 20000000000}]}}, "ENT1-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}}, "ENT1-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 3200000000}]}}, "ENT1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}}, "ENT1-XL": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}}, "ENT1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "ENT1-XXS": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "GP1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": + 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": + 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5000000000}]}}, "GP1-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": + 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1500000000}]}}, "GP1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "GP1-VIZ": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 72.0, "hourly_price": 0.1, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "GP1-XL": + {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": + 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 10000000000}]}}, "GP1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "PLAY2-MICRO": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "PLAY2-NANO": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "PLAY2-PICO": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}}, "PRO2-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, + "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 6000000000}]}}, "PRO2-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 3000000000}]}}, "PRO2-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 1500000000}]}}, "PRO2-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, + "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 700000000}]}}, "PRO2-XXS": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, + "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 350000000}]}}, "RENDER-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": + 1, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": + ["local", "rescue"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": + 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1000000000}]}}, "STARDUST1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}}, "START1-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, + "baremetal": false, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 400000000}]}}, "START1-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": + 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 300000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 300000000}]}}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "baremetal": false, "monthly_price": 7.738, "hourly_price": + 0.0106, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "START1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, + "volumes_constraint": {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": + false, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 100000000}]}}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": + 6, "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "baremetal": false, "monthly_price": 18.0164, "hourly_price": + 0.02468, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "VC1M": {"alt_names": + ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": + false, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": + 2, "ram": 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 50000000000, + "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "baremetal": false, "monthly_price": 6.2926, "hourly_price": + 0.00862, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "X64-120GB": + {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": + 0, "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, + "baremetal": false, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1000000000}]}}, "X64-15GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "volumes_constraint": {"min_size": + 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": + 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 250000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 250000000}]}}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 32212254720, "gpu": 0, "volumes_constraint": {"min_size": 300000000000, "max_size": + 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "baremetal": false, "monthly_price": 86.9138, "hourly_price": + 0.11906, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 500000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "X64-60GB": + {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": + 0, "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, + "baremetal": false, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1000000000}]}}}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + method: GET + response: + body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, + "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": + 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "baremetal": false, "monthly_price": 36.1496, "hourly_price": + 0.04952, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": + 4294967296, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": + 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 300000000}]}}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 12884901888, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": + 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 500000000}]}}, "ENT1-2XL": {"alt_names": [], "arch": "x86_64", "ncpus": 96, + "ram": 412316860416, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": + false, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": + ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + false, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": + 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 20000000000}]}}, "ENT1-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}}, "ENT1-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 3200000000}]}}, "ENT1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}}, "ENT1-XL": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}}, "ENT1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "ENT1-XXS": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "GP1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": + 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": + 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5000000000}]}}, "GP1-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": + 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1500000000}]}}, "GP1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "GP1-VIZ": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 72.0, "hourly_price": 0.1, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "GP1-XL": + {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": + 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 10000000000}]}}, "GP1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "PLAY2-MICRO": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "PLAY2-NANO": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "PLAY2-PICO": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}}, "PRO2-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, @@ -1951,7 +3787,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:58 GMT + - Tue, 16 May 2023 09:22:00 GMT Link: - ; rel="last" Server: @@ -1963,14 +3799,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee66b971-efd5-45a6-8f83-ae896525cd26 + - a6848b49-d63a-4964-9859-c42d37dc6cb6 X-Total-Count: - "38" status: 200 OK code: 200 duration: "" - request: - body: '{"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: '{"ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", + "reverse": null, "server": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", "tags": + []}}' form: {} headers: Content-Type: @@ -1980,21 +3819,21 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": "51.15.207.142", + body: '{"ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", "reverse": null, "server": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: - - "254" + - "252" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:58 GMT + - Tue, 16 May 2023 09:22:01 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2d7bc003-aa3c-4a47-9694-36a765cc1cdf + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/10aa800f-40e1-43a1-9bba-d826b33776a9 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2004,12 +3843,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80e3d7da-55e2-4cbf-9d3d-6c73e22dd904 + - 507aed3b-eb26-47ce-8d59-1e7018a1f4b8 status: 201 Created code: 201 duration: "" - request: - body: '{"name":"cli-srv-youthful-albattani","commercial_type":"DEV1-S","image":"68cf470e-6c35-4741-bbff-4ce788616461","public_ip":"2d7bc003-aa3c-4a47-9694-36a765cc1cdf","boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: '{"server": {"id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", "name": "cli-srv-focused-shannon", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-focused-shannon", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", + "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "caf70318-60d3-409c-acfd-8f967bd005d6", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, + "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", "name": "cli-srv-focused-shannon"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-16T09:22:01.284492+00:00", + "modification_date": "2023-05-16T09:22:01.284492+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", + "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-16T09:22:01.284492+00:00", + "modification_date": "2023-05-16T09:22:01.284492+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "ac7c7160-8415-425b-8cf0-9976ee15ccd1", + "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": + ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' form: {} headers: Content-Type: @@ -2019,47 +3887,47 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: - body: '{"server": {"id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", "name": "cli-srv-youthful-albattani", + body: '{"server": {"id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", "name": "cli-srv-focused-shannon", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-youthful-albattani", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", + "hostname": "cli-srv-focused-shannon", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, - "volumes": {"0": {"boot": false, "id": "d33b0abb-6cd0-4115-960c-b852df4f5143", + "volumes": {"0": {"boot": false, "id": "caf70318-60d3-409c-acfd-8f967bd005d6", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "server": {"id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", "name": "cli-srv-youthful-albattani"}, - "size": 20000000000, "state": "available", "creation_date": "2023-05-12T12:26:59.186487+00:00", - "modification_date": "2023-05-12T12:26:59.186487+00:00", "tags": [], "zone": + "server": {"id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", "name": "cli-srv-focused-shannon"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-16T09:22:01.284492+00:00", + "modification_date": "2023-05-16T09:22:01.284492+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": "51.15.207.142", + "", "public_ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-12T12:26:59.186487+00:00", - "modification_date": "2023-05-12T12:26:59.186487+00:00", "bootscript": {"id": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-16T09:22:01.284492+00:00", + "modification_date": "2023-05-16T09:22:01.284492+00:00", "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", + true, "zone": "fr-par-1"}, "security_group": {"id": "ac7c7160-8415-425b-8cf0-9976ee15ccd1", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "2645" + - "2634" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:59 GMT + - Tue, 16 May 2023 09:22:01 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3acf3418-9644-4dbe-a5d1-3b78db3fbd17 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7f2ce636-eca7-459d-bec1-b4bb70a3933c Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2069,25 +3937,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8aa3237e-94a9-436b-b854-569f41568615 + - 4f3cb598-67ff-4974-bc8b-4081edbe66d2 status: 201 Created code: 201 duration: "" - request: - body: '{"private_network_id":"57c74385-6157-413e-903b-273f66181b80"}' + body: '{"private_nic": {"id": "17f915a3-50d4-4efa-b586-617e9006867e", "private_network_id": + "a9b67cf7-5acd-42db-8167-64d3445260ab", "server_id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", + "mac_address": "02:00:00:12:ed:23", "state": "available", "creation_date": "2023-05-16T09:22:01.580103+00:00", + "modification_date": "2023-05-16T09:22:01.580103+00:00", "zone": "fr-par-1", + "tags": []}}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3acf3418-9644-4dbe-a5d1-3b78db3fbd17/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7f2ce636-eca7-459d-bec1-b4bb70a3933c/private_nics method: POST response: - body: '{"private_nic": {"id": "6b8fc07e-2634-4253-bcff-4fd605655474", "private_network_id": - "57c74385-6157-413e-903b-273f66181b80", "server_id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", - "mac_address": "02:00:00:12:e9:f3", "state": "available", "creation_date": "2023-05-12T12:26:59.589036+00:00", - "modification_date": "2023-05-12T12:26:59.589036+00:00", "zone": "fr-par-1", + body: '{"private_nic": {"id": "17f915a3-50d4-4efa-b586-617e9006867e", "private_network_id": + "a9b67cf7-5acd-42db-8167-64d3445260ab", "server_id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", + "mac_address": "02:00:00:12:ed:23", "state": "available", "creation_date": "2023-05-16T09:22:01.580103+00:00", + "modification_date": "2023-05-16T09:22:01.580103+00:00", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: @@ -2097,7 +3969,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 12 May 2023 12:27:00 GMT + - Tue, 16 May 2023 09:22:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2107,12 +3979,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f9a942e-71d3-4a35-89bd-9ea509a5dc16 + - 6df436c2-fa2c-4d8c-b3f7-c72e0e28b9d7 status: 201 Created code: 201 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"cli-test","description":"cli-test","ip_id":null,"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_unknown"}' + body: '{"id":"7568dacc-08bc-4987-bb14-440c06afa905", "name":"cli-test", "description":"cli-test", + "status":"to_create", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8ed45167-3059-480a-b3bc-39b7d2d3e647", + "ip_address":"51.159.74.116", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"7568dacc-08bc-4987-bb14-440c06afa905", + "reverse":"51-159-74-116.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":[], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-16T09:22:02.267816096Z", + "updated_at":"2023-05-16T09:22:02.267816096Z", "private_network_count":0, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}' form: {} headers: Content-Type: @@ -2122,16 +4003,25 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: - body: '{"id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","name":"cli-test","description":"cli-test","status":"to_create","instances":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"476eef00-36ba-4666-9352-9b1a862abe1f","ip_address":"195.154.197.172","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","reverse":"195-154-197-172.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2023-05-12T12:27:00.125325366Z","updated_at":"2023-05-12T12:27:00.125325366Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"7568dacc-08bc-4987-bb14-440c06afa905", "name":"cli-test", "description":"cli-test", + "status":"to_create", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8ed45167-3059-480a-b3bc-39b7d2d3e647", + "ip_address":"51.159.74.116", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"7568dacc-08bc-4987-bb14-440c06afa905", + "reverse":"51-159-74-116.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":[], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-16T09:22:02.267816096Z", + "updated_at":"2023-05-16T09:22:02.267816096Z", "private_network_count":0, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}' headers: Content-Length: - - "871" + - "893" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:27:00 GMT + - Tue, 16 May 2023 09:22:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2141,29 +4031,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ff1ced2-23ec-415a-97c4-8c6b56bae615 + - 5c0940d9-7f1d-416f-a90b-fc26189c63e4 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"7568dacc-08bc-4987-bb14-440c06afa905", "name":"cli-test", "description":"cli-test", + "status":"to_create", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8ed45167-3059-480a-b3bc-39b7d2d3e647", + "ip_address":"51.159.74.116", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"7568dacc-08bc-4987-bb14-440c06afa905", + "reverse":"51-159-74-116.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":[], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-16T09:22:02.267816Z", + "updated_at":"2023-05-16T09:22:02.267816Z", "private_network_count":0, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7568dacc-08bc-4987-bb14-440c06afa905 method: GET response: - body: '{"id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","name":"cli-test","description":"cli-test","status":"creating","instances":[{"id":"7b574e11-bcc2-4040-bbb0-c0450a578602","status":"ready","ip_address":"10.76.58.65","created_at":"2023-05-10T13:08:05.309349Z","updated_at":"2023-05-12T12:27:00.757820Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"476eef00-36ba-4666-9352-9b1a862abe1f","ip_address":"195.154.197.172","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","reverse":"195-154-197-172.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2023-05-12T12:27:00.125325Z","updated_at":"2023-05-12T12:27:00.418769Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"7568dacc-08bc-4987-bb14-440c06afa905", "name":"cli-test", "description":"cli-test", + "status":"to_create", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8ed45167-3059-480a-b3bc-39b7d2d3e647", + "ip_address":"51.159.74.116", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"7568dacc-08bc-4987-bb14-440c06afa905", + "reverse":"51-159-74-116.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":[], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-16T09:22:02.267816Z", + "updated_at":"2023-05-16T09:22:02.267816Z", "private_network_count":0, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}' headers: Content-Length: - - "1075" + - "887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:27:00 GMT + - Tue, 16 May 2023 09:22:02 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2173,29 +4081,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3ef36e3-0c58-4a63-bf48-847a3dae1ff2 + - 5dd82652-3881-4473-bf71-e598f0548c38 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"7568dacc-08bc-4987-bb14-440c06afa905", "name":"cli-test", "description":"cli-test", + "status":"ready", "instances":[{"id":"87e93279-e9e7-491e-a74c-900adc7f0cf7", + "status":"ready", "ip_address":"10.76.70.39", "created_at":"2023-05-15T01:09:33.998264Z", + "updated_at":"2023-05-16T09:22:02.919664Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"8ed45167-3059-480a-b3bc-39b7d2d3e647", "ip_address":"51.159.74.116", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"7568dacc-08bc-4987-bb14-440c06afa905", "reverse":"51-159-74-116.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-05-16T09:22:02.267816Z", "updated_at":"2023-05-16T09:22:04.041546Z", + "private_network_count":0, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7568dacc-08bc-4987-bb14-440c06afa905 method: GET response: - body: '{"id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","name":"cli-test","description":"cli-test","status":"ready","instances":[{"id":"7b574e11-bcc2-4040-bbb0-c0450a578602","status":"ready","ip_address":"10.76.58.65","created_at":"2023-05-10T13:08:05.309349Z","updated_at":"2023-05-12T12:27:00.757820Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"476eef00-36ba-4666-9352-9b1a862abe1f","ip_address":"195.154.197.172","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","reverse":"195-154-197-172.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2023-05-12T12:27:00.125325Z","updated_at":"2023-05-12T12:27:01.948660Z","private_network_count":0,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"7568dacc-08bc-4987-bb14-440c06afa905", "name":"cli-test", "description":"cli-test", + "status":"ready", "instances":[{"id":"87e93279-e9e7-491e-a74c-900adc7f0cf7", + "status":"ready", "ip_address":"10.76.70.39", "created_at":"2023-05-15T01:09:33.998264Z", + "updated_at":"2023-05-16T09:22:02.919664Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"8ed45167-3059-480a-b3bc-39b7d2d3e647", "ip_address":"51.159.74.116", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"7568dacc-08bc-4987-bb14-440c06afa905", "reverse":"51-159-74-116.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-05-16T09:22:02.267816Z", "updated_at":"2023-05-16T09:22:04.041546Z", + "private_network_count":0, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' headers: Content-Length: - - "1072" + - "1100" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:27:02 GMT + - Tue, 16 May 2023 09:22:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2205,31 +4135,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2182358-4217-4610-aa03-488379fe90ae + - 91755013-72c6-4dfd-934b-c462f255c189 status: 200 OK code: 200 duration: "" - request: - body: '{}' + body: '{"lb":{"id":"7568dacc-08bc-4987-bb14-440c06afa905", "name":"cli-test", + "description":"cli-test", "status":"ready", "instances":[{"id":"87e93279-e9e7-491e-a74c-900adc7f0cf7", + "status":"ready", "ip_address":"10.76.70.39", "created_at":"2023-05-15T01:09:33.998264Z", + "updated_at":"2023-05-16T09:22:02.919664Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"8ed45167-3059-480a-b3bc-39b7d2d3e647", "ip_address":"51.159.74.116", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"7568dacc-08bc-4987-bb14-440c06afa905", "reverse":"51-159-74-116.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-05-16T09:22:02.267816Z", "updated_at":"2023-05-16T09:22:04.041546Z", + "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}, + "private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", "status":"pending", + "created_at":"2023-05-16T09:22:04.757714264Z", "updated_at":"2023-05-16T09:22:04.757714264Z", + "dhcp_config":{}}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c/private-networks/57c74385-6157-413e-903b-273f66181b80/attach + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7568dacc-08bc-4987-bb14-440c06afa905/private-networks/a9b67cf7-5acd-42db-8167-64d3445260ab/attach method: POST response: - body: '{"lb":{"id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","name":"cli-test","description":"cli-test","status":"ready","instances":[{"id":"7b574e11-bcc2-4040-bbb0-c0450a578602","status":"ready","ip_address":"10.76.58.65","created_at":"2023-05-10T13:08:05.309349Z","updated_at":"2023-05-12T12:27:00.757820Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"476eef00-36ba-4666-9352-9b1a862abe1f","ip_address":"195.154.197.172","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","reverse":"195-154-197-172.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2023-05-12T12:27:00.125325Z","updated_at":"2023-05-12T12:27:01.948660Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"57c74385-6157-413e-903b-273f66181b80","status":"pending","created_at":"2023-05-12T12:27:03.034653377Z","updated_at":"2023-05-12T12:27:03.034653377Z","dhcp_config":{}}' + body: '{"lb":{"id":"7568dacc-08bc-4987-bb14-440c06afa905", "name":"cli-test", + "description":"cli-test", "status":"ready", "instances":[{"id":"87e93279-e9e7-491e-a74c-900adc7f0cf7", + "status":"ready", "ip_address":"10.76.70.39", "created_at":"2023-05-15T01:09:33.998264Z", + "updated_at":"2023-05-16T09:22:02.919664Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"8ed45167-3059-480a-b3bc-39b7d2d3e647", "ip_address":"51.159.74.116", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"7568dacc-08bc-4987-bb14-440c06afa905", "reverse":"51-159-74-116.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-05-16T09:22:02.267816Z", "updated_at":"2023-05-16T09:22:04.041546Z", + "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}, + "private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", "status":"pending", + "created_at":"2023-05-16T09:22:04.757714264Z", "updated_at":"2023-05-16T09:22:04.757714264Z", + "dhcp_config":{}}' headers: Content-Length: - - "1267" + - "1300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:27:03 GMT + - Tue, 16 May 2023 09:22:04 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2239,12 +4197,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81d13ce1-fe71-4958-9ff5-9d17b053c89d + - 80b80f97-fdaf-4770-b16a-def22e09df2e status: 200 OK code: 200 duration: "" - request: - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"cli-test","engine":"PostgreSQL-12","user_name":"foobar","password":"{4xdl*#QOoP+\u00263XRkGA)]","node_type":"db-dev-s","is_ha_cluster":false,"disable_backup":false,"tags":null,"init_settings":null,"volume_type":"lssd","volume_size":0,"init_endpoints":[{"private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24"}}],"backup_same_region":false}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: Content-Type: @@ -2254,16 +4221,25 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "881" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:27:04 GMT + - Tue, 16 May 2023 09:22:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2273,29 +4249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e670727a-ef53-4008-a8bf-e747bac2b69d + - 5493caf7-2fe3-4c18-a38e-1e570f23bc40 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1c1d4842-b97b-4709-9c13-89afa8ddcf0d method: GET response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "881" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:27:04 GMT + - Tue, 16 May 2023 09:22:05 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2305,29 +4299,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac0a9a7a-a296-4c6c-936c-3c745fc1e7c3 + - 333ec3ab-7ca1-4a86-b6c3-1c0b20e1ff52 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1c1d4842-b97b-4709-9c13-89afa8ddcf0d method: GET response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "881" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:27:19 GMT + - Tue, 16 May 2023 09:22:21 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2337,29 +4349,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e850b022-a82a-4386-8598-bd9b4adb055b + - f6359585-7a17-47c4-ba02-78133e78be34 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1c1d4842-b97b-4709-9c13-89afa8ddcf0d method: GET response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "881" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:27:34 GMT + - Tue, 16 May 2023 09:22:36 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2369,29 +4399,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a59f6045-23bb-4356-a659-b5d98a2f8299 + - a37f2b7a-7b21-4d78-8d3b-a25b9fd25b7f status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1c1d4842-b97b-4709-9c13-89afa8ddcf0d method: GET response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "881" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:27:49 GMT + - Tue, 16 May 2023 09:22:51 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2401,29 +4449,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a046f5f-a9e4-4505-abf4-cbb199f32cfb + - d0376870-52c5-4a59-8dc6-6dc42544ac2a status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1c1d4842-b97b-4709-9c13-89afa8ddcf0d method: GET response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"provisioning", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "881" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:28:04 GMT + - Tue, 16 May 2023 09:23:06 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2433,29 +4499,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b98e998-932a-489f-aed3-ec69587ec8f2 + - 55614d7e-3eef-4a74-894d-e970002de243 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1c1d4842-b97b-4709-9c13-89afa8ddcf0d method: GET response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "881" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:28:19 GMT + - Tue, 16 May 2023 09:23:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2465,29 +4549,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a29ad338-7b00-48b6-bee0-17f90eac3741 + - d18d317d-eef1-4312-a7cc-531418e5b483 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1c1d4842-b97b-4709-9c13-89afa8ddcf0d method: GET response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "881" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:28:34 GMT + - Tue, 16 May 2023 09:23:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2497,29 +4599,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 513272fb-8a81-474c-8266-0fc5659af75a + - 984b7c23-ef7e-4182-8189-2b3103b6050c status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1c1d4842-b97b-4709-9c13-89afa8ddcf0d method: GET response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "881" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:28:49 GMT + - Tue, 16 May 2023 09:23:52 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2529,29 +4649,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65a02593-fdab-433b-ba83-61abe40682a8 + - 6570a4e4-555e-468b-bff6-4ee6769c06cf status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1c1d4842-b97b-4709-9c13-89afa8ddcf0d method: GET response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "881" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:05 GMT + - Tue, 16 May 2023 09:24:07 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2561,29 +4699,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc09f92d-c632-49ce-83e2-7f2d3da9f899 + - ca47c025-7a5f-44fa-9d62-9e5ee7c104de status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1c1d4842-b97b-4709-9c13-89afa8ddcf0d method: GET response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "881" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:20 GMT + - Tue, 16 May 2023 09:24:22 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2593,29 +4749,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25cea992-1491-4df7-8e57-93b6b259a084 + - 46e495ba-d316-400d-bdcf-feab42307692 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1c1d4842-b97b-4709-9c13-89afa8ddcf0d method: GET response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"initializing", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "881" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:35 GMT + - Tue, 16 May 2023 09:24:37 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2625,29 +4799,57 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ad98115-bf42-4cbb-8c68-d64d98a36283 + - ae6e8bb2-67f6-45f6-b5b6-c07652a977ac status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "engine":"PostgreSQL-12", + "upgradable_version":[], "endpoint":{"ip":"51.159.204.58", "port":4363, "name":null, + "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}, {"ip":"51.159.204.58", "port":4363, + "name":null, "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1c1d4842-b97b-4709-9c13-89afa8ddcf0d method: GET response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}},{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "engine":"PostgreSQL-12", + "upgradable_version":[], "endpoint":{"ip":"51.159.204.58", "port":4363, "name":null, + "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}, {"ip":"51.159.204.58", "port":4363, + "name":null, "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "1355" + - "1404" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:50 GMT + - Tue, 16 May 2023 09:24:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2657,29 +4859,35 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99c7333d-fee0-4c1a-b3c1-a42787b3b96e + - d2a32aa3-8f90-4fa2-819d-615526b8807c status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"a9b67cf7-5acd-42db-8167-64d3445260ab", "name":"cli-pn-serene-leavitt", + "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-05-16T09:22:00.038604Z", + "updated_at":"2023-05-16T09:22:00.038604Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "subnets":["172.16.44.0/22", "fd46:78ab:30b8:2ca::/64"], "zone":"fr-par-1"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/57c74385-6157-413e-903b-273f66181b80 + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/a9b67cf7-5acd-42db-8167-64d3445260ab method: GET response: - body: '{"id":"57c74385-6157-413e-903b-273f66181b80","name":"cli-pn-cocky-wu","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2023-05-12T12:26:57.848128Z","updated_at":"2023-05-12T12:26:57.848128Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":["172.16.12.0/22","fd46:78ab:30b8:7e91::/64"],"zone":"fr-par-1"}' + body: '{"id":"a9b67cf7-5acd-42db-8167-64d3445260ab", "name":"cli-pn-serene-leavitt", + "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-05-16T09:22:00.038604Z", + "updated_at":"2023-05-16T09:22:00.038604Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "subnets":["172.16.44.0/22", "fd46:78ab:30b8:2ca::/64"], "zone":"fr-par-1"}' headers: Content-Length: - - "349" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:50 GMT + - Tue, 16 May 2023 09:24:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2689,63 +4897,95 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06015a32-3333-4001-b326-d28f6956fa1d + - f60bb1ac-01d1-4b88-85f1-1f7ac985077f status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"servers": [{"id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", "name": "cli-srv-focused-shannon", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-focused-shannon", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", + "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "caf70318-60d3-409c-acfd-8f967bd005d6", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, + "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", "name": "cli-srv-focused-shannon"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-16T09:22:01.284492+00:00", + "modification_date": "2023-05-16T09:22:01.284492+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", + "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-16T09:22:01.284492+00:00", + "modification_date": "2023-05-16T09:22:01.284492+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "ac7c7160-8415-425b-8cf0-9976ee15ccd1", + "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "17f915a3-50d4-4efa-b586-617e9006867e", + "private_network_id": "a9b67cf7-5acd-42db-8167-64d3445260ab", "server_id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", + "mac_address": "02:00:00:12:ed:23", "state": "available", "creation_date": "2023-05-16T09:22:01.580103+00:00", + "modification_date": "2023-05-16T09:22:02.486922+00:00", "zone": "fr-par-1", + "tags": []}], "zone": "fr-par-1"}]}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&page=1&private_network=57c74385-6157-413e-903b-273f66181b80 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&page=1&private_network=a9b67cf7-5acd-42db-8167-64d3445260ab method: GET response: - body: '{"servers": [{"id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", "name": "cli-srv-youthful-albattani", + body: '{"servers": [{"id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", "name": "cli-srv-focused-shannon", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-youthful-albattani", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", + "hostname": "cli-srv-focused-shannon", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, - "volumes": {"0": {"boot": false, "id": "d33b0abb-6cd0-4115-960c-b852df4f5143", + "volumes": {"0": {"boot": false, "id": "caf70318-60d3-409c-acfd-8f967bd005d6", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "server": {"id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", "name": "cli-srv-youthful-albattani"}, - "size": 20000000000, "state": "available", "creation_date": "2023-05-12T12:26:59.186487+00:00", - "modification_date": "2023-05-12T12:26:59.186487+00:00", "tags": [], "zone": + "server": {"id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", "name": "cli-srv-focused-shannon"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-16T09:22:01.284492+00:00", + "modification_date": "2023-05-16T09:22:01.284492+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": "51.15.207.142", + "", "public_ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-12T12:26:59.186487+00:00", - "modification_date": "2023-05-12T12:26:59.186487+00:00", "bootscript": {"id": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-16T09:22:01.284492+00:00", + "modification_date": "2023-05-16T09:22:01.284492+00:00", "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", + true, "zone": "fr-par-1"}, "security_group": {"id": "ac7c7160-8415-425b-8cf0-9976ee15ccd1", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": - ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "6b8fc07e-2634-4253-bcff-4fd605655474", - "private_network_id": "57c74385-6157-413e-903b-273f66181b80", "server_id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", - "mac_address": "02:00:00:12:e9:f3", "state": "available", "creation_date": "2023-05-12T12:26:59.589036+00:00", - "modification_date": "2023-05-12T12:27:00.270830+00:00", "zone": "fr-par-1", + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "17f915a3-50d4-4efa-b586-617e9006867e", + "private_network_id": "a9b67cf7-5acd-42db-8167-64d3445260ab", "server_id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", + "mac_address": "02:00:00:12:ed:23", "state": "available", "creation_date": "2023-05-16T09:22:01.580103+00:00", + "modification_date": "2023-05-16T09:22:02.486922+00:00", "zone": "fr-par-1", "tags": []}], "zone": "fr-par-1"}]}' headers: Content-Length: - - "3009" + - "2998" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:50 GMT + - Tue, 16 May 2023 09:24:53 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -2756,31 +4996,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a264ef0-8c3c-4d6a-8f2a-773f6ad2062a + - 77dbf66a-13cc-459c-ad2a-882c14c5720e X-Total-Count: - "1" status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"server_private_networks":[], "total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&page=1&private_network_id=57c74385-6157-413e-903b-273f66181b80 + url: https://api.scaleway.com/baremetal/v1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&page=1&private_network_id=a9b67cf7-5acd-42db-8167-64d3445260ab method: GET response: - body: '{"server_private_networks":[],"total_count":0}' + body: '{"server_private_networks":[], "total_count":0}' headers: Content-Length: - - "46" + - "47" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:50 GMT + - Tue, 16 May 2023 09:24:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2790,12 +5030,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49116d30-fbe6-4086-9606-9819303058a8 + - 7c9eed46-ccc3-4cce-9db8-5b4655de3d8d status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"lbs":[{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", "name":"test_lb", + "description":"", "status":"ready", "instances":[{"id":"f6ee0815-016b-43d0-a414-962e222755a3", + "status":"ready", "ip_address":"10.76.114.37", "created_at":"2023-05-15T07:30:03.980291Z", + "updated_at":"2023-05-15T07:37:25.750897Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", "ip_address":"51.159.204.2", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", "reverse":"51-159-204-2.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":["network"], "frontend_count":0, + "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-05-15T07:37:25.183150Z", "updated_at":"2023-05-15T07:37:27.141137Z", + "private_network_count":3, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}, + {"id":"7568dacc-08bc-4987-bb14-440c06afa905", "name":"cli-test", "description":"cli-test", + "status":"ready", "instances":[{"id":"87e93279-e9e7-491e-a74c-900adc7f0cf7", + "status":"ready", "ip_address":"10.76.70.39", "created_at":"2023-05-15T01:09:33.998264Z", + "updated_at":"2023-05-16T09:22:02.919664Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"8ed45167-3059-480a-b3bc-39b7d2d3e647", "ip_address":"51.159.74.116", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"7568dacc-08bc-4987-bb14-440c06afa905", "reverse":"51-159-74-116.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-05-16T09:22:02.267816Z", "updated_at":"2023-05-16T09:22:04.041546Z", + "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}], + "total_count":2}' form: {} headers: User-Agent: @@ -2803,16 +5067,40 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?order_by=created_at_asc method: GET response: - body: '{"lbs":[{"id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","name":"cli-test","description":"cli-test","status":"ready","instances":[{"id":"7b574e11-bcc2-4040-bbb0-c0450a578602","status":"ready","ip_address":"10.76.58.65","created_at":"2023-05-10T13:08:05.309349Z","updated_at":"2023-05-12T12:27:00.757820Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"476eef00-36ba-4666-9352-9b1a862abe1f","ip_address":"195.154.197.172","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","reverse":"195-154-197-172.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2023-05-12T12:27:00.125325Z","updated_at":"2023-05-12T12:27:01.948660Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}],"total_count":1}' + body: '{"lbs":[{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", "name":"test_lb", + "description":"", "status":"ready", "instances":[{"id":"f6ee0815-016b-43d0-a414-962e222755a3", + "status":"ready", "ip_address":"10.76.114.37", "created_at":"2023-05-15T07:30:03.980291Z", + "updated_at":"2023-05-15T07:37:25.750897Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", "ip_address":"51.159.204.2", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", "reverse":"51-159-204-2.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":["network"], "frontend_count":0, + "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-05-15T07:37:25.183150Z", "updated_at":"2023-05-15T07:37:27.141137Z", + "private_network_count":3, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}, + {"id":"7568dacc-08bc-4987-bb14-440c06afa905", "name":"cli-test", "description":"cli-test", + "status":"ready", "instances":[{"id":"87e93279-e9e7-491e-a74c-900adc7f0cf7", + "status":"ready", "ip_address":"10.76.70.39", "created_at":"2023-05-15T01:09:33.998264Z", + "updated_at":"2023-05-16T09:22:02.919664Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"8ed45167-3059-480a-b3bc-39b7d2d3e647", "ip_address":"51.159.74.116", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"7568dacc-08bc-4987-bb14-440c06afa905", "reverse":"51-159-74-116.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-05-16T09:22:02.267816Z", "updated_at":"2023-05-16T09:22:04.041546Z", + "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}], + "total_count":2}' headers: Content-Length: - - "1098" + - "2228" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:50 GMT + - Tue, 16 May 2023 09:24:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2822,29 +5110,95 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb173b5a-8ed7-4aa3-8a24-18821e210c5a + - 816e16b3-df42-4c31-862e-5645f1d67a8e status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"private_network":[{"lb":{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "name":"test_lb", "description":"", "status":"ready", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", + "ip_address":"51.159.204.2", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "reverse":"51-159-204-2.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":["network"], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-15T07:37:25.183150Z", + "updated_at":"2023-05-15T07:37:27.141137Z", "private_network_count":3, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}, "private_network_id":"cde0143a-e7f6-4c43-a9e4-3ac22b8275fa", + "status":"ready", "created_at":"2023-05-15T07:37:55.713330Z", "updated_at":"2023-05-15T07:37:58.925341Z", + "static_config":{"ip_address":["172.16.0.104"]}}, {"lb":{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "name":"test_lb", "description":"", "status":"ready", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", + "ip_address":"51.159.204.2", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "reverse":"51-159-204-2.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":["network"], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-15T07:37:25.183150Z", + "updated_at":"2023-05-15T07:37:27.141137Z", "private_network_count":3, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}, "private_network_id":"2c111777-c253-4ca0-b9f4-1569266fbc8d", + "status":"ready", "created_at":"2023-05-15T07:38:26.190633Z", "updated_at":"2023-05-15T07:38:34.130357Z", + "dhcp_config":{}}, {"lb":{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", "name":"test_lb", + "description":"", "status":"ready", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", + "ip_address":"51.159.204.2", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "reverse":"51-159-204-2.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":["network"], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-15T07:37:25.183150Z", + "updated_at":"2023-05-15T07:37:27.141137Z", "private_network_count":3, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}, "private_network_id":"182524b1-cf72-4376-a481-f4066e4c9f2a", + "status":"ready", "created_at":"2023-05-15T07:38:56.748211Z", "updated_at":"2023-05-15T07:39:04.201532Z", + "dhcp_config":{}}], "total_count":3}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c/private-networks?order_by=created_at_asc&page=1 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a38cccee-a702-400f-ba30-f1b2517a0047/private-networks?order_by=created_at_asc&page=1 method: GET response: - body: '{"private_network":[{"lb":{"id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","name":"cli-test","description":"cli-test","status":"ready","instances":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"476eef00-36ba-4666-9352-9b1a862abe1f","ip_address":"195.154.197.172","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","reverse":"195-154-197-172.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2023-05-12T12:27:00.125325Z","updated_at":"2023-05-12T12:27:01.948660Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"},"private_network_id":"57c74385-6157-413e-903b-273f66181b80","status":"ready","created_at":"2023-05-12T12:27:03.034653Z","updated_at":"2023-05-12T12:27:10.683968Z","dhcp_config":{}}],"total_count":1}' + body: '{"private_network":[{"lb":{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "name":"test_lb", "description":"", "status":"ready", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", + "ip_address":"51.159.204.2", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "reverse":"51-159-204-2.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":["network"], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-15T07:37:25.183150Z", + "updated_at":"2023-05-15T07:37:27.141137Z", "private_network_count":3, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}, "private_network_id":"cde0143a-e7f6-4c43-a9e4-3ac22b8275fa", + "status":"ready", "created_at":"2023-05-15T07:37:55.713330Z", "updated_at":"2023-05-15T07:37:58.925341Z", + "static_config":{"ip_address":["172.16.0.104"]}}, {"lb":{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "name":"test_lb", "description":"", "status":"ready", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", + "ip_address":"51.159.204.2", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "reverse":"51-159-204-2.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":["network"], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-15T07:37:25.183150Z", + "updated_at":"2023-05-15T07:37:27.141137Z", "private_network_count":3, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}, "private_network_id":"2c111777-c253-4ca0-b9f4-1569266fbc8d", + "status":"ready", "created_at":"2023-05-15T07:38:26.190633Z", "updated_at":"2023-05-15T07:38:34.130357Z", + "dhcp_config":{}}, {"lb":{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", "name":"test_lb", + "description":"", "status":"ready", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", + "ip_address":"51.159.204.2", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "reverse":"51-159-204-2.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":["network"], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-15T07:37:25.183150Z", + "updated_at":"2023-05-15T07:37:27.141137Z", "private_network_count":3, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}, "private_network_id":"182524b1-cf72-4376-a481-f4066e4c9f2a", + "status":"ready", "created_at":"2023-05-15T07:38:56.748211Z", "updated_at":"2023-05-15T07:39:04.201532Z", + "dhcp_config":{}}], "total_count":3}' headers: Content-Length: - - "1086" + - "3293" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:50 GMT + - Tue, 16 May 2023 09:24:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2854,12 +5208,96 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0dac6dac-449d-466e-8b14-d262f5091b5b + - 196be801-b1f6-424e-8782-599aba9c5721 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"private_network":[{"lb":{"id":"7568dacc-08bc-4987-bb14-440c06afa905", + "name":"cli-test", "description":"cli-test", "status":"ready", "instances":[], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"8ed45167-3059-480a-b3bc-39b7d2d3e647", "ip_address":"51.159.74.116", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"7568dacc-08bc-4987-bb14-440c06afa905", "reverse":"51-159-74-116.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-05-16T09:22:02.267816Z", "updated_at":"2023-05-16T09:22:04.041546Z", + "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}, + "private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", "status":"ready", + "created_at":"2023-05-16T09:22:04.757714Z", "updated_at":"2023-05-16T09:22:12.348843Z", + "dhcp_config":{}}], "total_count":1}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7568dacc-08bc-4987-bb14-440c06afa905/private-networks?order_by=created_at_asc&page=1 + method: GET + response: + body: '{"private_network":[{"lb":{"id":"7568dacc-08bc-4987-bb14-440c06afa905", + "name":"cli-test", "description":"cli-test", "status":"ready", "instances":[], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"8ed45167-3059-480a-b3bc-39b7d2d3e647", "ip_address":"51.159.74.116", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"7568dacc-08bc-4987-bb14-440c06afa905", "reverse":"51-159-74-116.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-05-16T09:22:02.267816Z", "updated_at":"2023-05-16T09:22:04.041546Z", + "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}, + "private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", "status":"ready", + "created_at":"2023-05-16T09:22:04.757714Z", "updated_at":"2023-05-16T09:22:12.348843Z", + "dhcp_config":{}}], "total_count":1}' + headers: + Content-Length: + - "1114" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 16 May 2023 09:24:53 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2f770b4b-f445-4a60-a495-ed4ac0ff2388 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"instances":[{"id":"df3ce9de-0ef1-4b83-b481-b326645e1c33", "name":"rdb-gifted-volhard", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "status":"ready", "engine":"PostgreSQL-14", "upgradable_version":[], "endpoint":{"ip":"51.159.113.51", + "port":9631, "name":null, "id":"602f2e65-102d-4ca3-8564-1d86df50770f", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":true, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"51.159.113.51", + "port":9631, "name":null, "id":"602f2e65-102d-4ca3-8564-1d86df50770f", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-05-15T19:32:42.739269Z", "region":"fr-par"}, + {"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "engine":"PostgreSQL-12", + "upgradable_version":[], "endpoint":{"ip":"51.159.204.58", "port":4363, "name":null, + "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}, {"ip":"51.159.204.58", "port":4363, + "name":null, "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}], + "total_count":2}' form: {} headers: User-Agent: @@ -2867,16 +5305,44 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances?order_by=created_at_asc&page=1 method: GET response: - body: '{"instances":[{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}},{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}],"total_count":1}' + body: '{"instances":[{"id":"df3ce9de-0ef1-4b83-b481-b326645e1c33", "name":"rdb-gifted-volhard", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "status":"ready", "engine":"PostgreSQL-14", "upgradable_version":[], "endpoint":{"ip":"51.159.113.51", + "port":9631, "name":null, "id":"602f2e65-102d-4ca3-8564-1d86df50770f", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":true, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"51.159.113.51", + "port":9631, "name":null, "id":"602f2e65-102d-4ca3-8564-1d86df50770f", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-05-15T19:32:42.739269Z", "region":"fr-par"}, + {"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "engine":"PostgreSQL-12", + "upgradable_version":[], "endpoint":{"ip":"51.159.204.58", "port":4363, "name":null, + "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}, {"ip":"51.159.204.58", "port":4363, + "name":null, "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}], + "total_count":2}' headers: Content-Length: - - "1387" + - "2628" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:50 GMT + - Tue, 16 May 2023 09:24:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2886,12 +5352,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dca93420-a0d5-4090-8ef4-de24e215e42c + - 88415c4d-f4ad-4c49-902b-7a8bee92ae25 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"clusters":[], "total_count":0}' form: {} headers: User-Agent: @@ -2899,16 +5365,16 @@ interactions: url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters?order_by=created_at_asc&page=1 method: GET response: - body: '{"clusters":[],"total_count":0}' + body: '{"clusters":[], "total_count":0}' headers: Content-Length: - - "31" + - "32" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:51 GMT + - Tue, 16 May 2023 09:24:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2918,12 +5384,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eed45ce9-4892-435b-8d29-87d2bb9d6ba1 + - c0a07fed-8109-4450-8812-e5a93336f560 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"gateways":[], "total_count":0}' form: {} headers: User-Agent: @@ -2931,16 +5397,16 @@ interactions: url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways?order_by=created_at_asc&page=1&status=unknown method: GET response: - body: '{"gateways":[],"total_count":0}' + body: '{"gateways":[], "total_count":0}' headers: Content-Length: - - "31" + - "32" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:51 GMT + - Tue, 16 May 2023 09:24:53 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2950,19 +5416,19 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a38adc3d-c5f3-48b6-b1ea-ac4a84c413d9 + - eb812ab1-1aaa-49e3-8bc3-530ef94de906 status: 200 OK code: 200 duration: "" - request: - body: '{}' + body: "" form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c/private-networks/57c74385-6157-413e-903b-273f66181b80/detach + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7568dacc-08bc-4987-bb14-440c06afa905/private-networks/a9b67cf7-5acd-42db-8167-64d3445260ab/detach method: POST response: body: "" @@ -2972,7 +5438,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:51 GMT + - Tue, 16 May 2023 09:24:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2982,7 +5448,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7273c101-a1ea-40f0-924a-a6cabfd3bdeb + - cce50221-5bdf-4bfe-8cc9-9e0d5302638e status: 204 No Content code: 204 duration: "" @@ -2992,7 +5458,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7568dacc-08bc-4987-bb14-440c06afa905?release_ip=false method: DELETE response: body: "" @@ -3002,7 +5468,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:51 GMT + - Tue, 16 May 2023 09:24:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3012,29 +5478,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5bc0f80-376b-4871-bf10-b1b82aa70090 + - fef22488-d372-4fb6-a607-924d893f8040 status: 204 No Content code: 204 duration: "" - request: - body: "" + body: '{"id":"7568dacc-08bc-4987-bb14-440c06afa905", "name":"cli-test", "description":"cli-test", + "status":"to_delete", "instances":[{"id":"87e93279-e9e7-491e-a74c-900adc7f0cf7", + "status":"ready", "ip_address":"10.76.70.39", "created_at":"2023-05-15T01:09:33.998264Z", + "updated_at":"2023-05-16T09:22:02.919664Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"8ed45167-3059-480a-b3bc-39b7d2d3e647", "ip_address":"51.159.74.116", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"7568dacc-08bc-4987-bb14-440c06afa905", "reverse":"51-159-74-116.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-05-16T09:22:02.267816Z", "updated_at":"2023-05-16T09:24:54.287426Z", + "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7568dacc-08bc-4987-bb14-440c06afa905 method: GET response: - body: '{"id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","name":"cli-test","description":"cli-test","status":"to_delete","instances":[{"id":"7b574e11-bcc2-4040-bbb0-c0450a578602","status":"ready","ip_address":"10.76.58.65","created_at":"2023-05-10T13:08:05.309349Z","updated_at":"2023-05-12T12:27:00.757820Z","region":"fr-par","zone":"fr-par-1"}],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","ip":[{"id":"476eef00-36ba-4666-9352-9b1a862abe1f","ip_address":"195.154.197.172","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","lb_id":"ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c","reverse":"195-154-197-172.lb.fr-par.scw.cloud","region":"fr-par","zone":"fr-par-1"}],"tags":[],"frontend_count":0,"backend_count":0,"type":"lb-s","subscriber":null,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","created_at":"2023-05-12T12:27:00.125325Z","updated_at":"2023-05-12T12:29:51.468124Z","private_network_count":1,"route_count":0,"region":"fr-par","zone":"fr-par-1"}' + body: '{"id":"7568dacc-08bc-4987-bb14-440c06afa905", "name":"cli-test", "description":"cli-test", + "status":"to_delete", "instances":[{"id":"87e93279-e9e7-491e-a74c-900adc7f0cf7", + "status":"ready", "ip_address":"10.76.70.39", "created_at":"2023-05-15T01:09:33.998264Z", + "updated_at":"2023-05-16T09:22:02.919664Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"8ed45167-3059-480a-b3bc-39b7d2d3e647", "ip_address":"51.159.74.116", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"7568dacc-08bc-4987-bb14-440c06afa905", "reverse":"51-159-74-116.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":[], "frontend_count":0, "backend_count":0, + "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-05-16T09:22:02.267816Z", "updated_at":"2023-05-16T09:24:54.287426Z", + "private_network_count":1, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}' headers: Content-Length: - - "1076" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:51 GMT + - Tue, 16 May 2023 09:24:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3044,61 +5532,93 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b656b026-eed7-4916-82be-7aaa19a58552 + - c595d8a4-c9fc-49b1-a012-931c168f3989 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"server": {"id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", "name": "cli-srv-focused-shannon", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-focused-shannon", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", + "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "caf70318-60d3-409c-acfd-8f967bd005d6", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, + "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", "name": "cli-srv-focused-shannon"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-16T09:22:01.284492+00:00", + "modification_date": "2023-05-16T09:22:01.284492+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", + "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-16T09:22:01.284492+00:00", + "modification_date": "2023-05-16T09:22:01.284492+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "ac7c7160-8415-425b-8cf0-9976ee15ccd1", + "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "17f915a3-50d4-4efa-b586-617e9006867e", + "private_network_id": "a9b67cf7-5acd-42db-8167-64d3445260ab", "server_id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", + "mac_address": "02:00:00:12:ed:23", "state": "available", "creation_date": "2023-05-16T09:22:01.580103+00:00", + "modification_date": "2023-05-16T09:22:02.486922+00:00", "zone": "fr-par-1", + "tags": []}], "zone": "fr-par-1"}}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3acf3418-9644-4dbe-a5d1-3b78db3fbd17 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7f2ce636-eca7-459d-bec1-b4bb70a3933c method: GET response: - body: '{"server": {"id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", "name": "cli-srv-youthful-albattani", + body: '{"server": {"id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", "name": "cli-srv-focused-shannon", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-youthful-albattani", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", + "hostname": "cli-srv-focused-shannon", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, - "volumes": {"0": {"boot": false, "id": "d33b0abb-6cd0-4115-960c-b852df4f5143", + "volumes": {"0": {"boot": false, "id": "caf70318-60d3-409c-acfd-8f967bd005d6", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "server": {"id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", "name": "cli-srv-youthful-albattani"}, - "size": 20000000000, "state": "available", "creation_date": "2023-05-12T12:26:59.186487+00:00", - "modification_date": "2023-05-12T12:26:59.186487+00:00", "tags": [], "zone": + "server": {"id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", "name": "cli-srv-focused-shannon"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-16T09:22:01.284492+00:00", + "modification_date": "2023-05-16T09:22:01.284492+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": {"id": "2d7bc003-aa3c-4a47-9694-36a765cc1cdf", "address": "51.15.207.142", + "", "public_ip": {"id": "10aa800f-40e1-43a1-9bba-d826b33776a9", "address": "51.15.194.5", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-12T12:26:59.186487+00:00", - "modification_date": "2023-05-12T12:26:59.186487+00:00", "bootscript": {"id": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-16T09:22:01.284492+00:00", + "modification_date": "2023-05-16T09:22:01.284492+00:00", "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", + true, "zone": "fr-par-1"}, "security_group": {"id": "ac7c7160-8415-425b-8cf0-9976ee15ccd1", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": - ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "6b8fc07e-2634-4253-bcff-4fd605655474", - "private_network_id": "57c74385-6157-413e-903b-273f66181b80", "server_id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", - "mac_address": "02:00:00:12:e9:f3", "state": "available", "creation_date": "2023-05-12T12:26:59.589036+00:00", - "modification_date": "2023-05-12T12:27:00.270830+00:00", "zone": "fr-par-1", + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "17f915a3-50d4-4efa-b586-617e9006867e", + "private_network_id": "a9b67cf7-5acd-42db-8167-64d3445260ab", "server_id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", + "mac_address": "02:00:00:12:ed:23", "state": "available", "creation_date": "2023-05-16T09:22:01.580103+00:00", + "modification_date": "2023-05-16T09:22:02.486922+00:00", "zone": "fr-par-1", "tags": []}], "zone": "fr-par-1"}}' headers: Content-Length: - - "3006" + - "2995" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:51 GMT + - Tue, 16 May 2023 09:24:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3108,7 +5628,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b722ebed-a0cb-48ac-9294-7e680f318109 + - 7932242d-70e7-402d-af3c-53a450047473 status: 200 OK code: 200 duration: "" @@ -3118,7 +5638,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3acf3418-9644-4dbe-a5d1-3b78db3fbd17 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7f2ce636-eca7-459d-bec1-b4bb70a3933c method: DELETE response: body: "" @@ -3126,7 +5646,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 12 May 2023 12:29:52 GMT + - Tue, 16 May 2023 09:24:54 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3136,7 +5656,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dda0565f-ffb9-442e-b657-bae665438b77 + - 1b88c906-f11d-40be-bf55-8a116c1b35ca status: 204 No Content code: 204 duration: "" @@ -3146,7 +5666,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d33b0abb-6cd0-4115-960c-b852df4f5143 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/caf70318-60d3-409c-acfd-8f967bd005d6 method: DELETE response: body: "" @@ -3154,7 +5674,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 12 May 2023 12:29:52 GMT + - Tue, 16 May 2023 09:24:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3164,7 +5684,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ab2192a-e807-49e0-b241-a2901345fa4e + - 49e10249-17f3-479a-b1f3-a10a72575fd4 status: 204 No Content code: 204 duration: "" @@ -3174,7 +5694,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/6bc9ea33-62a3-43fd-9480-d11528653bcc + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/ca93ff4c-7eb7-4f4a-95db-b6833c7962f0 method: DELETE response: body: "" @@ -3184,7 +5704,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 12 May 2023 12:29:52 GMT + - Tue, 16 May 2023 09:24:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3194,61 +5714,57 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c1270c1-25ff-4731-8b2b-98f0f86d5835 + - 9dc71766-4e84-4e3d-ae0d-eea92beb69b4 status: 204 No Content code: 204 duration: "" - request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 - method: GET - response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"configuring","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"192.168.0.1","port":5432,"name":null,"id":"6bc9ea33-62a3-43fd-9480-d11528653bcc","private_network":{"private_network_id":"57c74385-6157-413e-903b-273f66181b80","service_ip":"192.168.0.1/24","zone":"fr-par-1"}},{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' - headers: - Content-Length: - - "1361" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 12 May 2023 12:29:52 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 24007dde-21cb-4a1f-845e-739cea343df1 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"configuring", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":{"ip":"51.159.204.58", + "port":4363, "name":null, "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}, {"ip":"51.159.204.58", "port":4363, + "name":null, "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1c1d4842-b97b-4709-9c13-89afa8ddcf0d method: GET response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"configuring","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"configuring", + "engine":"PostgreSQL-12", "upgradable_version":[], "endpoint":{"ip":"51.159.204.58", + "port":4363, "name":null, "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"192.168.0.1", "port":5432, + "name":null, "id":"ca93ff4c-7eb7-4f4a-95db-b6833c7962f0", "private_network":{"private_network_id":"a9b67cf7-5acd-42db-8167-64d3445260ab", + "service_ip":"192.168.0.1/24", "zone":"fr-par-1"}}, {"ip":"51.159.204.58", "port":4363, + "name":null, "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "1144" + - "1410" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:30:07 GMT + - Tue, 16 May 2023 09:24:55 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3258,29 +5774,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88ea0dea-16fd-42a1-aba6-8b7ca28f0bb5 + - ccf13bc9-2b78-4ddb-986b-e78d38c1028e status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "engine":"PostgreSQL-12", + "upgradable_version":[], "endpoint":{"ip":"51.159.204.58", "port":4363, "name":null, + "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"51.159.204.58", + "port":4363, "name":null, "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1c1d4842-b97b-4709-9c13-89afa8ddcf0d method: GET response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"ready", "engine":"PostgreSQL-12", + "upgradable_version":[], "endpoint":{"ip":"51.159.204.58", "port":4363, "name":null, + "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"51.159.204.58", + "port":4363, "name":null, "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "1138" + - "1180" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:30:22 GMT + - Tue, 16 May 2023 09:25:10 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3290,29 +5830,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d71d4cc5-766a-4878-ba50-bc303f0c125e + - 45fc7da4-8daf-451f-b3e9-6346c2e5031d status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"deleting", "engine":"PostgreSQL-12", + "upgradable_version":[], "endpoint":{"ip":"51.159.204.58", "port":4363, "name":null, + "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"51.159.204.58", + "port":4363, "name":null, "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a0731903-a922-413b-aba3-b2779b595317 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1c1d4842-b97b-4709-9c13-89afa8ddcf0d method: DELETE response: - body: '{"id":"a0731903-a922-413b-aba3-b2779b595317","name":"cli-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","engine":"PostgreSQL-12","upgradable_version":[],"endpoint":{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000},"init_settings":[],"endpoints":[{"ip":"51.159.26.225","port":13660,"name":null,"id":"7781f9d2-49e9-4dc7-8a03-6364962d92e1","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2023-05-12T12:27:03.482421Z","region":"fr-par"}' + body: '{"id":"1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "name":"cli-test", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "status":"deleting", "engine":"PostgreSQL-12", + "upgradable_version":[], "endpoint":{"ip":"51.159.204.58", "port":4363, "name":null, + "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"51.159.204.58", + "port":4363, "name":null, "id":"37aa4a68-d73f-466c-b84a-b47d6f3a0e00", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-05-16T09:22:05.238270Z", "region":"fr-par"}' headers: Content-Length: - - "1141" + - "1183" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:30:23 GMT + - Tue, 16 May 2023 09:25:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3322,7 +5886,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7238204e-86bf-426e-9365-5bf40cc9d192 + - 65de61ec-9a55-4aeb-8e5a-c72194e8ed2b status: 200 OK code: 200 duration: "" @@ -3332,7 +5896,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/57c74385-6157-413e-903b-273f66181b80 + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/a9b67cf7-5acd-42db-8167-64d3445260ab method: DELETE response: body: "" @@ -3342,7 +5906,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 12 May 2023 12:30:23 GMT + - Tue, 16 May 2023 09:25:11 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -3352,7 +5916,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa6d5b34-ac66-4098-a6e7-356d079ac2e6 + - 5701fbaf-a7a2-4945-b5da-3c36c14a4059 status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.golden b/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.golden index e38d33809c..026459098e 100644 --- a/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.golden +++ b/internal/namespaces/vpc/v1/testdata/test-get-private-network-multiple.golden @@ -1,39 +1,30 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID 57c74385-6157-413e-903b-273f66181b80 -Name cli-pn-cocky-wu +ID a9b67cf7-5acd-42db-8167-64d3445260ab +Name cli-pn-serene-leavitt OrganizationID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 ProjectID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 Zone fr-par-1 CreatedAt few seconds ago UpdatedAt few seconds ago -Subnets.0 172.16.12.0/22 -Subnets.1 fd46:78ab:30b8:7e91::/64 +Subnets.0 172.16.44.0/22 +Subnets.1 fd46:78ab:30b8:2ca::/64 Instance Servers: -ID NAME STATE NIC ID MAC ADDRESS -3acf3418-9644-4dbe-a5d1-3b78db3fbd17 cli-srv-youthful-albattani archived 6b8fc07e-2634-4253-bcff-4fd605655474 02:00:00:12:e9:f3 - -Baremetal Servers: -ID NAME STATE BAREMETAL NETWORK ID VLAN +ID NAME STATE NIC ID MAC ADDRESS +7f2ce636-eca7-459d-bec1-b4bb70a3933c cli-srv-focused-shannon archived 17f915a3-50d4-4efa-b586-617e9006867e 02:00:00:12:ed:23 Load-Balancers: ID NAME STATE -ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c cli-test ready +7568dacc-08bc-4987-bb14-440c06afa905 cli-test ready Rdb Instances: ID NAME STATE ENDPOINT ID -a0731903-a922-413b-aba3-b2779b595317 cli-test ready 6bc9ea33-62a3-43fd-9480-d11528653bcc - -Redis Clusters: -ID NAME STATE ENDPOINT ID - -Public Gateways: -ID NAME STATE GATEWAY NETWORK ID +1c1d4842-b97b-4709-9c13-89afa8ddcf0d cli-test ready ca93ff4c-7eb7-4f4a-95db-b6833c7962f0 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "id": "57c74385-6157-413e-903b-273f66181b80", - "name": "cli-pn-cocky-wu", + "id": "a9b67cf7-5acd-42db-8167-64d3445260ab", + "name": "cli-pn-serene-leavitt", "organization_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", @@ -41,34 +32,31 @@ ID NAME STATE GATEWAY NETWORK ID "created_at": "1970-01-01T00:00:00.0Z", "updated_at": "1970-01-01T00:00:00.0Z", "subnets": [ - "172.16.12.0/22", - "fd46:78ab:30b8:7e91::/64" + "172.16.44.0/22", + "fd46:78ab:30b8:2ca::/64" ], "instance_servers": [ { - "id": "3acf3418-9644-4dbe-a5d1-3b78db3fbd17", - "name": "cli-srv-youthful-albattani", + "id": "7f2ce636-eca7-459d-bec1-b4bb70a3933c", + "name": "cli-srv-focused-shannon", "state": "stopped", - "nic_id": "6b8fc07e-2634-4253-bcff-4fd605655474", - "mac": "02:00:00:12:e9:f3" + "nic_id": "17f915a3-50d4-4efa-b586-617e9006867e", + "mac": "02:00:00:12:ed:23" } ], - "baremetal_servers": null, "lbs": [ { - "id": "ddf3ab1d-3c5c-4ef3-9f17-365fa7afea7c", + "id": "7568dacc-08bc-4987-bb14-440c06afa905", "server_id": "cli-test", "state": "ready" } ], "rdb_instances": [ { - "id": "a0731903-a922-413b-aba3-b2779b595317", + "id": "1c1d4842-b97b-4709-9c13-89afa8ddcf0d", "server_id": "cli-test", "state": "ready", - "endpoint_id": "6bc9ea33-62a3-43fd-9480-d11528653bcc" + "endpoint_id": "ca93ff4c-7eb7-4f4a-95db-b6833c7962f0" } - ], - "redis_clusters": null, - "gateways": null + ] } diff --git a/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.cassette.yaml b/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.cassette.yaml index d8bed3df66..2e1ec22608 100644 --- a/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.cassette.yaml +++ b/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.cassette.yaml @@ -2,7 +2,10 @@ version: 1 interactions: - request: - body: '{"name":"cli-pn-agitated-ritchie","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":null,"subnets":null}' + body: '{"id":"9b219bf2-8175-4873-b130-447fad04084a", "name":"cli-pn-mystifying-knuth", + "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-05-16T09:21:28.438501Z", + "updated_at":"2023-05-16T09:21:28.438501Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "subnets":["172.16.40.0/22", "fd46:78ab:30b8:88c8::/64"], "zone":"fr-par-1"}' form: {} headers: Content-Type: @@ -12,16 +15,19 @@ interactions: url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks method: POST response: - body: '{"id":"a7389447-5a20-4ac0-af97-a6d354a1d09a","name":"cli-pn-agitated-ritchie","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2023-05-12T12:26:38.173311Z","updated_at":"2023-05-12T12:26:38.173311Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":["172.16.8.0/22","fd46:78ab:30b8:fa22::/64"],"zone":"fr-par-1"}' + body: '{"id":"9b219bf2-8175-4873-b130-447fad04084a", "name":"cli-pn-mystifying-knuth", + "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-05-16T09:21:28.438501Z", + "updated_at":"2023-05-16T09:21:28.438501Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "subnets":["172.16.40.0/22", "fd46:78ab:30b8:88c8::/64"], "zone":"fr-par-1"}' headers: Content-Length: - - "356" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:38 GMT + - Tue, 16 May 2023 09:21:28 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -31,19 +37,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40027167-10a0-46bd-a8c6-e01e328330f2 + - 861dd8fe-b988-4279-ae05-c7b14cdbbf78 status: 200 OK code: 200 duration: "" - request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/marketplace/v1/images?page=1 - method: GET - response: body: '{"images": [{"id": "0d3a22da-c634-45d6-a7dd-aff402f88b0c", "name": "AlmaLinux 8", "label": "almalinux_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux @@ -1532,263 +1530,2101 @@ interactions: "current_public_version": "08baf82b-82b8-4450-b545-c2fbfd4d6135", "creation_date": "2016-03-07T21:03:59.783534+00:00", "modification_date": "2023-04-13T14:40:21.433436+00:00", "valid_until": null}]}' - headers: - Content-Length: - - "126189" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 12 May 2023 12:26:38 GMT - Link: - - ; rel="last" - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f3e55602-1ee4-4f5a-9ee4-7ca3b60b28f5 - X-Total-Count: - - "23" - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/68cf470e-6c35-4741-bbff-4ce788616461 - method: GET - response: - body: '{"image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu - 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", - "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", - "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, - "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", - "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": - null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}}' - headers: - Content-Length: - - "614" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 12 May 2023 12:26:38 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c3d446bb-fc27-4db9-b76b-b7c8d0f3ae79 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + url: https://api.scaleway.com/marketplace/v1/images?page=1 method: GET response: - body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, - "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": - 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": - 800000000000}}, "baremetal": false, "monthly_price": 36.1496, "hourly_price": - 0.04952, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": - "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": - 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 400000000}]}}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": - 4294967296, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, - "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, - "baremetal": false, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", - "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": - 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 300000000}]}}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": - 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, - "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, - "baremetal": false, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", - "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": - 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 200000000}]}}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": - 12884901888, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, - "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, - "baremetal": false, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": - {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", - "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": - true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": - 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": - 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": - 500000000}]}}, "ENT1-2XL": {"alt_names": [], "arch": "x86_64", "ncpus": 96, - "ram": 412316860416, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": - 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": - false, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": - ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": - false, "placement_groups": true, "block_storage": true, "private_network": 8}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": - 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 20000000000}]}}, "ENT1-L": - {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": - 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, - "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}}, "ENT1-M": - {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": - 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, - "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 3200000000}]}}, "ENT1-S": - {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, - "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}}, "ENT1-XL": - {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": - 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, - "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}}, "ENT1-XS": - {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, - "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "ENT1-XXS": - {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, - "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "GP1-L": {"alt_names": - [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "volumes_constraint": - {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": - {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": - 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["bootscript", - "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "private_network": 8}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": - 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 5000000000}]}}, "GP1-M": - {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": - 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": - ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "private_network": 8}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": - 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 1500000000}]}}, "GP1-S": - {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": - ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "private_network": 8}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": - 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "GP1-VIZ": - {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 72.0, "hourly_price": 0.1, "capabilities": {"boot_types": - ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "private_network": 8}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": - 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "GP1-XL": - {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": - 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": - ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "private_network": 8}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": - 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 10000000000}]}}, "GP1-XS": - {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": - {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": - false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": - ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": - true, "placement_groups": true, "block_storage": true, "private_network": 8}, - "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": - 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": - null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "PLAY2-MICRO": - {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, - "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "PLAY2-NANO": - {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, - "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "PLAY2-PICO": - {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, - "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["rescue", "local"], - "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": - true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": - true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, - "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": null}, - {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}}, "PRO2-L": - {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": - 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": - {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": - 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["rescue", "local"], + body: '{"images": [{"id": "0d3a22da-c634-45d6-a7dd-aff402f88b0c", "name": "AlmaLinux + 8", "label": "almalinux_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", + "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux + distribution, governed and driven by the community, focused on long-term stability + and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "41f32a25-c977-4dae-9a80-c997de7084c4", + "name": "2023-04-13T13:09:21.808853+00:00", "local_images": [{"id": "2d0ee515-2888-4c3a-ad0f-e59706b4129e", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "18c1965e-2f19-4be1-bf76-c00493b5eb87", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "8211d82a-2bae-4374-9db6-537fc4270bed", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "7e5efe0b-4e07-4fc0-8c90-5cf434742bb6", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "29f387f4-367b-4a70-a1a5-f3e838779d6f", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "0907829d-3310-43a7-940e-f3d0edaa980f", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "eefb08ee-e99a-4f62-85a3-b626bc704761", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "01acc25c-ba09-4830-851a-2542e5bc3dcb", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "4cfdcb7b-c2fa-4cf0-afb3-84b40a1c3d5d", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8a052964-cef0-467e-a97b-44790b927041", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:09:21.960045+00:00", + "modification_date": "2023-04-13T13:09:21.960045+00:00"}], "categories": ["distribution"], + "current_public_version": "41f32a25-c977-4dae-9a80-c997de7084c4", "creation_date": + "2021-10-05T13:36:52.246490+00:00", "modification_date": "2023-04-13T14:39:27.135528+00:00", + "valid_until": null}, {"id": "486ead23-9656-41d1-aa74-a5a780b2ae1b", "name": + "AlmaLinux 9", "label": "almalinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/almalinux.png", + "description": "AlmaLinux OS is an Open Source and forever-free enterprise Linux + distribution, governed and driven by the community, focused on long-term stability + and a robust production-grade platform", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "c8fe19b6-5406-42d1-82e2-92103b7f8323", + "name": "2023-04-13T13:08:00.223293+00:00", "local_images": [{"id": "8b2a0086-4014-4057-8681-9c23bdff934b", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "ba414ba2-6fd3-472d-9426-9003d3be907d", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "70c83503-a8da-48d3-bd74-f5edc76b597d", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "d5caa4ee-11c0-4f46-bbb0-975346a2868d", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "a4e5f971-f0d3-4c1a-9a87-7942cf35d54a", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "04627843-5631-4e6b-aa75-028cbda5cf9a", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "7a2606d4-6904-4ba7-95b5-367fd4229c42", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "ce34e9fa-b154-4bbd-a602-6dc4e311900b", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "55bcf97c-5b85-4483-ab44-26380076c73d", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "6e05dc1e-6785-4f90-a5b8-adcdeb8daffa", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:08:00.408431+00:00", + "modification_date": "2023-04-13T13:08:00.408431+00:00"}], "categories": ["distribution"], + "current_public_version": "c8fe19b6-5406-42d1-82e2-92103b7f8323", "creation_date": + "2022-08-24T09:21:26.315925+00:00", "modification_date": "2023-04-13T14:38:52.308804+00:00", + "valid_until": null}, {"id": "8f60c5dd-e659-48da-97e3-fb7de42195f5", "name": + "Arch Linux", "label": "arch_linux", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/archlinux.png", + "description": "Arch Linux is an independently developed Linux distribution + versatile enough to suit any role.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "fa0ae29c-27d3-4551-bb34-1a659a96d3c2", + "name": "2022-01-24T16:08:58.141740+00:00", "local_images": [{"id": "b57ecf7e-5b57-4ad7-8a57-30584aeb4c26", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XS", "ENT1-XXS"]}, {"id": "e9543979-6125-473d-9d62-398724da0c7f", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", + "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", + "X64-30GB", "X64-60GB", "ENT1-XS", "ENT1-XXS"]}, {"id": "6849a7e3-65e2-4c53-bfb4-18c157a9cd66", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS"]}, {"id": "6219dbd0-091e-4a64-9891-dfcbb586f6dd", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", + "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS"]}, {"id": "a1326795-478b-4ba1-be4b-592ecc100cac", "zone": "pl-waw-1", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", "GP1-M", + "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", + "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", + "ENT1-XXS", "ENT1-XS"]}, {"id": "77184ad4-f7ba-486c-bdc3-509acae544a8", "zone": + "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", + "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "ENT1-XS", "ENT1-XXS"]}, + {"id": "2f64d38e-96d3-47d6-80b3-379893b2803a", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-S", + "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", + "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "ENT1-XXS", "ENT1-XS"]}], + "creation_date": "2022-01-24T16:08:58.198257+00:00", "modification_date": "2022-01-24T16:08:58.198257+00:00"}], + "categories": ["distribution"], "current_public_version": "fa0ae29c-27d3-4551-bb34-1a659a96d3c2", + "creation_date": "2016-03-07T20:55:32.213089+00:00", "modification_date": "2022-01-26T12:54:47.557608+00:00", + "valid_until": null}, {"id": "dc947de3-ddc7-4056-bc35-d51a316ebbb4", "name": + "CentOS 7.9", "label": "centos_7.9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/centos.png", + "description": "The CentOS Project is a community-driven free software effort + focused on delivering a robust open source ecosystem.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "a37e7b5d-a5e5-4506-8897-4129bab079ca", "name": + "2023-04-13T13:05:23.543151+00:00", "local_images": [{"id": "15c5dd42-434b-49cf-a5b4-8bb3b5f9dc9d", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "54dfc73a-2a0b-4ea0-8e8e-abe85357a6cc", "zone": "par1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "d579e95a-4c2c-4f37-b57e-c2fc22b87966", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "fc1f0708-c8e3-4ceb-a36a-6f47765d4f60", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "63b021be-1ec3-4227-b34d-06c976074422", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "3e454a77-0ff5-47b0-9c7a-cc4dca7acaeb", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "98aceddf-c90f-4521-aa7b-93f942b5d2b5", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:05:23.795841+00:00", + "modification_date": "2023-04-13T13:05:23.795841+00:00"}], "categories": ["distribution"], + "current_public_version": "a37e7b5d-a5e5-4506-8897-4129bab079ca", "creation_date": + "2019-12-25T00:00:00+00:00", "modification_date": "2023-04-13T14:37:49.401742+00:00", + "valid_until": null}, {"id": "f49dc23e-82d1-48c3-b80e-6c697b1dda92", "name": + "Centos Stream 8", "label": "centos_stream_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/centos.png", + "description": "The CentOS Project is a community-driven free software effort + focused on delivering a robust open source ecosystem.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "f5daf351-659e-4f06-b7e7-86925f9c7011", "name": + "2023-03-28T07:17:56.324937+00:00", "local_images": [{"id": "5333864b-3235-4098-af75-f35f5239e35b", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "3e937622-375c-43ba-bff3-42a71d3077c6", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "033be0a0-e9ef-40ac-aefd-c8318c3d8ba6", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "4b75df8b-0d27-4437-b0a0-bf5dbcce1a65", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "d3328600-e772-4fd9-9135-1cade6626730", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "8e922e6b-4291-421a-8bae-62b94506fe86", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "144fea20-72db-4be9-ae4a-54bde78ebcef", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "7f8365a3-68b3-43dd-b623-7bc903bc1c5b", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "147faa2b-ccef-412a-a359-9141f21f6a32", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "f4c9b209-6aef-4285-8eab-db9bf958a875", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-03-28T07:17:56.469669+00:00", + "modification_date": "2023-03-28T07:17:56.469669+00:00"}], "categories": ["distribution"], + "current_public_version": "f5daf351-659e-4f06-b7e7-86925f9c7011", "creation_date": + "2022-02-03T10:23:22.168515+00:00", "modification_date": "2023-03-28T15:00:55.387802+00:00", + "valid_until": null}, {"id": "cfb3fa01-6406-4be8-9e9d-29daee2582fa", "name": + "Centos Stream 9", "label": "centos_stream_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/centos.png", + "description": "The CentOS Project is a community-driven free software effort + focused on delivering a robust open source ecosystem.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "4c494b40-7244-411c-a724-65b8eedb2bc2", "name": + "2023-04-13T13:06:38.087421+00:00", "local_images": [{"id": "f62ab353-50bd-4d10-b1d9-6c092c22c2f3", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "c36b741d-3682-4550-b77f-9b5bbf5361a1", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "73ea099f-8489-4fbc-ada2-b8541d46df0c", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "3c8d2b19-b4f8-4cc1-aa04-534778519858", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "fe632ece-1b83-4036-8b7b-8f8a5aaae81b", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8cd32169-81df-42d7-8581-6cfbf6293a6c", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "5937285a-eb94-481d-9196-7446b6783ec5", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8db20e68-5ae6-4335-a668-31e321f237a9", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "9f8fba00-c8e8-4d44-ae57-2b8c91e3c997", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "74961e81-7bb0-4604-be5f-b2b622b88b14", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T13:06:38.259838+00:00", + "modification_date": "2023-04-13T13:06:38.259838+00:00"}], "categories": ["distribution"], + "current_public_version": "4c494b40-7244-411c-a724-65b8eedb2bc2", "creation_date": + "2022-02-03T10:35:17.004309+00:00", "modification_date": "2023-04-13T14:37:08.857124+00:00", + "valid_until": null}, {"id": "7bdc1afb-231f-486a-9b85-1b0478bc0e4a", "name": + "Debian Buster", "label": "debian_buster", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/debian.png", + "description": "Debian is a free operating system, developed by thousands of + volunteers from all over the world who collaborate via the Internet.", "organization": + {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources + Build System"}, "versions": [{"id": "8bd9d92c-2b86-475e-9d3d-4f9b69b7c795", + "name": "2022-11-22T14:21:22.175009+00:00", "local_images": [{"id": "d03f9dd6-6329-4aed-ad61-1973efd27cac", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "51d60da2-7ae9-45e7-81d1-9fb56a6adab7", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "641b3cdd-c70c-41cc-9ff2-6e803b928f34", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "1934aaa0-a0bf-4725-b5b3-1adc9954424b", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "5cca9d53-612a-4a59-be02-817d977dda64", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "116721d2-6af0-4d27-9505-2bbb26b63a92", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "1761dcf5-4396-4a5d-8b28-7d7cb6dc72f5", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2022-11-22T14:21:22.304730+00:00", "modification_date": "2022-11-22T14:21:22.304730+00:00"}], + "categories": ["distribution"], "current_public_version": "8bd9d92c-2b86-475e-9d3d-4f9b69b7c795", + "creation_date": "2019-07-16T13:55:36.377559+00:00", "modification_date": "2022-11-22T15:03:29.064893+00:00", + "valid_until": null}, {"id": "213b02cb-3d8d-4967-ba8d-e5767a57574e", "name": + "Debian Bullseye", "label": "debian_bullseye", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/debian.png", + "description": "Debian is a free operating system, developed by thousands of + volunteers from all over the world who collaborate via the Internet.", "organization": + {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources + Build System"}, "versions": [{"id": "2adb2f81-b517-4dbd-b4f1-c58f658c9813", + "name": "2023-04-13T13:03:55.707814+00:00", "local_images": [{"id": "1d218316-3884-4b62-bdeb-b5fc14fa6cdb", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "409c3356-9a2d-4212-983e-78f1ce0f23b7", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "2620d33a-6c1d-4fb4-8502-93e60644bfce", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "14901537-a464-4003-b7d9-388f0db136a5", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "1f9b4f99-332b-46b1-99c9-3f6279c2baff", + "zone": "nl-ams-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "44d9ae31-80b8-448a-9487-e196b9c2a09f", "zone": "par1", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "52b02895-018a-4813-a522-0ab5fb838c02", + "zone": "ams1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "4100648b-5063-436d-a8ae-62d5f961a25d", "zone": "pl-waw-1", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "91481d0d-c45e-4712-9491-787a7842d211", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "35a07178-bce4-4966-ac5f-a415135fe8d0", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "19aa7502-a4f3-4e65-a980-754fa2069217", "zone": "pl-waw-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "56ad2234-2a81-4232-86c5-314d80789ba2", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "3ee075e9-3556-4e9d-b764-b51ba5ce8c39", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "588137bb-78c8-4397-893a-e9deca6cfc74", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", "GP1-M", + "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G", "DEV1-S", "DEV1-M", + "DEV1-L", "DEV1-XL", "STARDUST1-S"]}], "creation_date": "2023-04-13T13:03:55.943087+00:00", + "modification_date": "2023-04-13T13:03:55.943087+00:00"}], "categories": ["distribution"], + "current_public_version": "2adb2f81-b517-4dbd-b4f1-c58f658c9813", "creation_date": + "2021-07-21T09:09:36.581723+00:00", "modification_date": "2023-04-13T14:36:19.543959+00:00", + "valid_until": null}, {"id": "c1b530d8-0ca0-45c4-80db-ba06608287b2", "name": + "Docker", "label": "docker", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/docker.png", + "description": "Docker is an open platform for developers and sysadmins to build, + ship, and run distributed applications.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "aeaa9adb-f93e-482b-bb03-e402def75243", + "name": "2023-04-13T13:03:17.035176+00:00", "local_images": [{"id": "5c789fa0-3618-46b6-a484-6915a074cd1b", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "822bd95d-39f5-4649-b9ac-1b23869fb5eb", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "50ebcf47-39b5-4087-ad18-79f63b9fdc05", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "2d7d32fd-3c5c-4b5d-ab9a-6423741e6d4e", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "78b02952-be83-4b4b-a77c-1ecec5356652", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "0a7c1075-086b-4b07-b285-84c6d55b544f", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "157c5202-f71d-40d2-9cbe-08a11d0d6ab6", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:03:17.145319+00:00", + "modification_date": "2023-04-13T13:03:17.145319+00:00"}], "categories": ["instantapp"], + "current_public_version": "aeaa9adb-f93e-482b-bb03-e402def75243", "creation_date": + "2016-03-05T15:11:26.847640+00:00", "modification_date": "2023-04-13T14:34:48.199797+00:00", + "valid_until": null}, {"id": "186859f6-0152-45dd-9eb8-21fc5e8d774e", "name": + "Fedora 36", "label": "fedora_36", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", + "description": "Fedora is a powerful, flexible operating system that includes + the best and latest datacenter technologies. It puts you in control of all your + infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "9c65e858-7550-4118-9ca1-9086bf70ae11", + "name": "2023-04-13T13:03:38.692646+00:00", "local_images": [{"id": "b613de94-efde-49b0-84fd-18698da03450", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "4e0d352b-c33b-43c9-8b10-6750b70f87ec", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "6b76e0e1-f650-434a-b901-628a24807738", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "186cf8ac-3ba8-4be3-a420-e09a7a556269", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "5ab8b0ba-e458-4a2d-b349-4c63cab96f08", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "12256f5e-7577-421d-b13a-8e6f53c7656c", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "68532aae-1625-4a7a-ac48-b12426e1fbc4", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "e55c488c-6ca3-41eb-875e-48f7babe1500", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "595da48b-750e-4745-a211-44926dabce33", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "375587da-52be-4149-8fff-1ffbc1b242b2", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-04-13T13:03:38.803387+00:00", + "modification_date": "2023-04-13T13:03:38.803387+00:00"}], "categories": ["distribution"], + "current_public_version": "9c65e858-7550-4118-9ca1-9086bf70ae11", "creation_date": + "2022-04-14T15:45:29.069701+00:00", "modification_date": "2023-04-13T14:34:14.050901+00:00", + "valid_until": null}, {"id": "2b0e5802-eb82-4fd5-ac8f-6877c46aa14b", "name": + "Fedora 37", "label": "fedora_37", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", + "description": "Fedora is a powerful, flexible operating system that includes + the best and latest datacenter technologies. It puts you in control of all your + infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "7c6510e3-7720-4af2-94f5-a13e3eb7aec4", + "name": "2023-04-13T13:02:37.974360+00:00", "local_images": [{"id": "c8e8559a-84dd-4c0b-8727-d53bbd04de4b", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "116a529d-671d-4cd9-974d-0aca049be4d7", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "03cfa199-fff9-4677-b1b7-b676ec6d2c70", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "6fb9a92b-e16d-407a-b61e-c048c0555f9d", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "9f1b1efc-0ed1-4bdd-b547-5eaa0a1bb551", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "59687a02-e1b9-4d0a-b1ac-21e83c4c3eec", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "7a610c42-0b81-4db2-b831-11202d06a0fe", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "fb8d4eec-de07-4fe4-b515-70fb650bf471", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8aed02d3-b7f5-43f5-a232-a2dab285ce2f", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "e977e7f8-875f-4a54-a141-f3fa288e0b97", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": + "2023-04-13T13:02:38.088623+00:00", "modification_date": "2023-04-13T13:02:38.088623+00:00"}], + "categories": ["distribution"], "current_public_version": "7c6510e3-7720-4af2-94f5-a13e3eb7aec4", + "creation_date": "2022-11-14T10:48:04.097063+00:00", "modification_date": "2023-04-13T14:33:41.303847+00:00", + "valid_until": null}, {"id": "dab3ed4b-5d6a-4b77-82e2-04405fd2a59e", "name": + "Fedora 38", "label": "fedora_38", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/fedora.png", + "description": "Fedora is a powerful, flexible operating system that includes + the best and latest datacenter technologies. It puts you in control of all your + infrastructure and services", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "dc49f9c0-e9f3-4f0a-8ef5-74116ed5995f", + "name": "2023-04-18T08:23:43.637923+00:00", "local_images": [{"id": "4040de51-ebc3-4f24-b14c-054f8cd966bf", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "3077c13c-e1a7-404e-85de-560e427c6359", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "a5a980d0-91fa-4f0b-93a4-e1cc853b24dc", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "70da9c18-8d97-4de4-b666-275536750a9f", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "2bf83ac5-36a0-4245-9e66-22d5de47ce4f", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "0f0d629c-e18b-4ab3-b39e-7dd92a094627", "zone": "fr-par-2", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "e4b2dde2-250b-4afc-9641-91bb170b9344", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "fe8b1d78-bf61-4939-a621-8718fda1d070", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "811b12a5-2d32-46ec-8357-00cea52c33ed", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "61cf62c9-8b3d-49e3-9795-3d684909ff98", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": + "2023-04-18T08:23:43.848581+00:00", "modification_date": "2023-04-18T08:23:43.848581+00:00"}], + "categories": ["distribution"], "current_public_version": "dc49f9c0-e9f3-4f0a-8ef5-74116ed5995f", + "creation_date": "2023-04-18T07:53:13.621657+00:00", "modification_date": "2023-04-18T09:29:09.701576+00:00", + "valid_until": null}, {"id": "233074b9-e2ba-4e78-818e-dd4930ce6bee", "name": + "GitLab", "label": "gitlab", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/gitlab.png", + "description": "GitLab is a web-based Git repository manager with wiki and issue + tracking features.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "b16ed12e-299b-4dbd-8225-9b8644d5ec04", + "name": "2023-04-13T13:06:28.354726+00:00", "local_images": [{"id": "416e6290-b9dd-47f8-9a90-f07cb7fa0f1d", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "0030922b-675e-4348-853f-4e4490c14ee9", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "16622dfc-d69c-4c78-9462-1321f84ac750", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "01d0cc75-9b4c-4d88-8560-5a0308a20c97", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "e71db560-19bc-4dfe-9c84-84ae7e3a6809", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "04f3be3a-f6d1-41e7-9b63-7b1d2e3492a1", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "8d43f819-553b-4490-893b-cb82abeffb14", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2023-04-13T13:06:28.530554+00:00", "modification_date": "2023-04-13T13:06:28.530554+00:00"}], + "categories": ["instantapp"], "current_public_version": "b16ed12e-299b-4dbd-8225-9b8644d5ec04", + "creation_date": "2016-03-07T21:06:22.770864+00:00", "modification_date": "2023-04-13T14:32:36.692844+00:00", + "valid_until": null}, {"id": "7d4a7cb1-1fd5-4a64-920b-c79f47367254", "name": + "NextCloud", "label": "nextcloud", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/nextcloud.png", + "description": "Nextcloud is an open source, self-hosted file share and communication + platform.", "organization": {"id": "11111111-1111-4111-8111-111111111111", "name": + "OCS"}, "versions": [{"id": "fe957b4f-1ab1-41bf-a142-b771f039d2c9", "name": + "2023-04-13T13:00:13.060943+00:00", "local_images": [{"id": "b1d51a36-38dc-4d65-873c-4fed3dbeb21e", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "220ab3a6-0b38-4d6c-864d-fd6feb8aa99c", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "5e2f22ec-d003-485f-bec2-9a5372f5f0e4", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "cee6ae09-afdc-4286-bc93-98fdb214effe", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "4ac5d79b-597b-4d05-a3d2-b3f44431bc2a", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "30d1c545-c406-4515-83ab-f5224d4f95b6", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "f3a31d98-0e04-45da-8246-de949f5615e4", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:00:13.324444+00:00", + "modification_date": "2023-04-13T13:00:13.324444+00:00"}], "categories": ["instantapp"], + "current_public_version": "fe957b4f-1ab1-41bf-a142-b771f039d2c9", "creation_date": + "2019-04-16T12:22:56.930842+00:00", "modification_date": "2023-04-13T14:31:50.306200+00:00", + "valid_until": null}, {"id": "b6f4edc8-21e6-4aa2-8f52-1030cf6d4dd8", "name": + "OpenVPN", "label": "openvpn", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/openvpn.png", + "description": "Surf the web in a secure and anonymous way with OpenVPN InstantApp.", + "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", "name": "auth-team+ocs-organization@scaleway.com"}, + "versions": [{"id": "8c40dae0-21ad-4226-821a-aab4c6acae92", "name": "2023-04-13T12:54:17.348185+00:00", + "local_images": [{"id": "98cf2d5f-9268-4cc1-bc43-4ae9c9e66d75", "zone": "par1", + "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", + "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", + "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", + "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", + "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "defab02d-b971-4418-8349-2a2da5740274", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "9ea9fd9c-a795-4de7-8cd2-ca21e04f6aa7", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "dfc57325-2ab1-4bd0-acb0-0f93ab55a8e2", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "1a50ba7a-d691-4521-9837-b6c5e8be9ab4", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "d2828fd6-1d35-4140-9079-54e7025df877", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "a60d4970-e050-4677-b54b-c0d395c56100", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2023-04-13T12:54:17.619668+00:00", "modification_date": "2023-04-13T12:54:17.619668+00:00"}], + "categories": ["instantapp"], "current_public_version": "8c40dae0-21ad-4226-821a-aab4c6acae92", + "creation_date": "2016-03-07T21:04:57.667667+00:00", "modification_date": "2023-04-13T14:31:04.244508+00:00", + "valid_until": null}, {"id": "1576bf6b-f640-47f2-9117-968419d0546e", "name": + "Rocky Linux 8", "label": "rockylinux_8", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/rockylinux.png", + "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, + production-ready Linux.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "417d33a8-8b9f-46ff-aedd-d74147dbd69c", + "name": "2023-04-13T12:55:09.822172+00:00", "local_images": [{"id": "d7ddbcb3-221f-49b9-8c6a-34ab34e73210", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "1e6ba192-5490-4a56-a08e-27eabbc3b4d7", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "4ee70f73-0190-4e73-8027-48745eb18f18", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "8a2c37b7-be86-431c-9d01-25a0682c5d71", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "c203b350-f2f2-420c-9a78-c21b3ef7b58a", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "2221b6bd-0b45-4478-877b-09eacbb7f8ed", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "af358d06-8b8a-4a66-afdc-88e0334e12a5", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "3657c2df-32fb-4afa-8bf5-be7ea7ab3e69", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "0300040c-f900-47ec-b21f-0f7410d75706", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "5809a93b-69d2-40d4-8b09-79da20ef1e1e", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], "creation_date": "2023-04-13T12:55:09.955903+00:00", + "modification_date": "2023-04-13T12:55:09.955903+00:00"}], "categories": ["distribution"], + "current_public_version": "417d33a8-8b9f-46ff-aedd-d74147dbd69c", "creation_date": + "2021-06-25T10:16:16.254240+00:00", "modification_date": "2023-04-13T14:28:09.866367+00:00", + "valid_until": null}, {"id": "589c35a9-20ce-4ed9-92d7-16dc061be52b", "name": + "Rocky Linux 9", "label": "rockylinux_9", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/rockylinux.png", + "description": "Rocky Linux is a community-driven effort to bring you enterprise-grade, + production-ready Linux.", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "af5d0eb1-1246-46b9-9769-e0efcc95ab1b", + "name": "2023-03-27T14:28:13.225003+00:00", "local_images": [{"id": "61392b4d-22bb-40da-acdd-b08d35213297", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "d0281001-81a9-4922-ad94-bac49e2dfd46", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "146f823e-7024-4ad1-a89f-e4a7da951d57", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "65deaabd-215d-4790-a324-7d2874f0af9d", "zone": "par1", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "3bdd781e-2dae-4880-a4ee-9135057424cb", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "e0aaf648-5767-4533-92b0-7bd87eaa5dbb", "zone": "fr-par-3", "arch": "x86_64", + "compatible_commercial_types": ["GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": "f0f50b4a-16b7-48db-996d-a9c7a0cbff88", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, {"id": + "876933bd-7e2d-4f0f-8bf1-837a1e31ac65", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "b18e2393-d19b-4101-ba5b-226252d2b628", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO"]}, + {"id": "7c2d400e-b9b3-44c2-9391-1071de7db77f", "zone": "ams1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO"]}], "creation_date": "2023-03-27T14:28:13.417555+00:00", "modification_date": + "2023-03-27T14:28:13.417555+00:00"}], "categories": ["distribution"], "current_public_version": + "af5d0eb1-1246-46b9-9769-e0efcc95ab1b", "creation_date": "2022-08-24T09:26:33.639016+00:00", + "modification_date": "2023-03-28T15:09:22.188518+00:00", "valid_until": null}, + {"id": "3f1b9623-71ba-4fe3-b994-27fcdaa850ba", "name": "Ubuntu 20.04 Focal Fossa", + "label": "ubuntu_focal", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu + Server helps you make the most of your infrastructure.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "12e69a70-af87-4728-8bb1-a940a8d48d35", "name": + "2023-04-13T12:38:58.138108+00:00", "local_images": [{"id": "2fedb0c7-1686-4529-8344-be9e198e4dd2", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", + "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "7c748e78-971e-40ab-83f6-461e20a56c68", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "1dba408b-0faa-49c6-937e-e24d45e54157", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "a0a26970-909b-48d1-a3cc-8a47c81a374e", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "b2e92f75-db2b-4bcd-85bf-3ba21b2287bf", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "57e89f65-ec39-4847-aed5-942629dff0ad", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "5ae24724-3cb2-40ac-9a10-6e244150587d", "zone": "fr-par-3", "arch": "arm64", + "compatible_commercial_types": ["AMP2-C1", "AMP2-C2", "AMP2-C4", "AMP2-C8", + "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, {"id": "bcdd8214-e642-4fb8-a6a1-5ff910f82e22", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "d12ccc29-0fa0-4075-8dbe-2c2e4469f99c", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}], "creation_date": "2023-04-13T12:38:58.306640+00:00", + "modification_date": "2023-04-13T12:38:58.306640+00:00"}], "categories": ["distribution"], + "current_public_version": "12e69a70-af87-4728-8bb1-a940a8d48d35", "creation_date": + "2020-02-17T15:50:48.980694+00:00", "modification_date": "2023-04-13T14:26:25.085299+00:00", + "valid_until": null}, {"id": "1123148c-7660-4cb2-9fd3-7b5b4896f72f", "name": + "Ubuntu 22.04 Jammy Jellyfish", "label": "ubuntu_jammy", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu + Server helps you make the most of your infrastructure.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "687cdcd5-f485-4396-b2b0-a06f7f3ff00b", "name": + "2023-04-13T12:16:06.199424+00:00", "local_images": [{"id": "ce453858-557c-4f1c-a7a9-70026e67d054", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "6cda247a-0c01-46c5-8835-9f3143905de0", + "zone": "fr-par-2", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "8e0d42ac-2a7e-4ee0-a906-738a115d596e", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "235f2c1a-f81e-4aa2-af5f-b0dcf001c398", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "08d5fc73-5a8b-4eb4-8c13-cee729f05d9f", + "zone": "fr-par-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "22f92b70-9c50-41a7-856f-71d13052b652", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", "POP2-4C-16G", + "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", "POP2-HM-2C-16G", + "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "898e56c4-296d-418b-94d3-18b14a4312fd", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", "ENT1-XS", "ENT1-S", "ENT1-M", + "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", "PRO2-XS", "PRO2-S", "PRO2-M", + "PRO2-L", "STARDUST1-S", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "POP2-2C-8G", + "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", "POP2-64C-256G", + "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", "POP2-HM-32C-256G", + "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", "POP2-HC-16C-32G", + "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "83b0da88-403f-41bf-b4ce-faf16dde2d13", + "zone": "par1", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}, + {"id": "4faf43e8-465c-4273-8e96-a828399804a0", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", + "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB", "ENT1-XXS", + "ENT1-XS", "ENT1-S", "ENT1-M", "ENT1-L", "ENT1-XL", "ENT1-2XL", "PRO2-XXS", + "PRO2-XS", "PRO2-S", "PRO2-M", "PRO2-L", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "POP2-2C-8G", "POP2-4C-16G", "POP2-8C-32G", "POP2-16C-64G", "POP2-32C-128G", + "POP2-64C-256G", "POP2-HM-2C-16G", "POP2-HM-4C-32G", "POP2-HM-8C-64G", "POP2-HM-16C-128G", + "POP2-HM-32C-256G", "POP2-HM-64C-512G", "POP2-HC-2C-4G", "POP2-HC-4C-8G", "POP2-HC-8C-16G", + "POP2-HC-16C-32G", "POP2-HC-32C-64G", "POP2-HC-64C-128G"]}, {"id": "95819e57-4ee3-4f93-afba-96de74c329f7", + "zone": "fr-par-3", "arch": "arm64", "compatible_commercial_types": ["AMP2-C1", + "AMP2-C2", "AMP2-C4", "AMP2-C8", "AMP2-C12", "AMP2-C24", "AMP2-C48", "AMP2-C60"]}], + "creation_date": "2023-04-13T12:16:06.393838+00:00", "modification_date": "2023-04-13T12:16:06.393838+00:00"}], + "categories": ["distribution"], "current_public_version": "687cdcd5-f485-4396-b2b0-a06f7f3ff00b", + "creation_date": "2022-04-07T13:35:54.966630+00:00", "modification_date": "2023-04-13T14:25:38.413213+00:00", + "valid_until": null}, {"id": "b381b2bf-804a-4b12-91f6-9f4ff273462f", "name": + "Ubuntu Bionic", "label": "ubuntu_bionic", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu is the ideal distribution for scale-out computing, Ubuntu + Server helps you make the most of your infrastructure.", "organization": {"id": + "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances User Resources Build + System"}, "versions": [{"id": "599269e6-7332-4a0c-8cd8-0e9e17f6c91e", "name": + "2023-04-13T12:47:26.451219+00:00", "local_images": [{"id": "fe177b1f-c067-45f3-84a6-5aefd68f7f77", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "c128aa85-0cf6-48e1-8d32-660b9f1fc9be", "zone": "pl-waw-1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "4cdb6366-9d0b-4daa-98c1-d171227fb92f", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "3bcf8475-dcd1-43ad-aabd-c7af51f4805a", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "9ffd49dd-f620-4ee4-91a2-65028ebbe1b5", + "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "3bb18d01-6f5e-4648-b524-70cc241e9686", "zone": "nl-ams-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "55e9cd84-1a80-48ef-a3fb-3c2a2d13e164", + "zone": "pl-waw-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}], + "creation_date": "2023-04-13T12:47:26.676017+00:00", "modification_date": "2023-04-13T12:47:26.676017+00:00"}], + "categories": ["distribution"], "current_public_version": "599269e6-7332-4a0c-8cd8-0e9e17f6c91e", + "creation_date": "2018-04-27T14:07:25.221998+00:00", "modification_date": "2023-04-13T14:27:25.576115+00:00", + "valid_until": null}, {"id": "4dcc771c-820f-405c-b663-4564bdc2ed56", "name": + "Ubuntu Focal GPU OS 11", "label": "ubuntu_focal_gpu_os_11", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu 20.04 Focal Fossa for Nvidia GPU and Machine Learning", + "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", "name": "Instances + User Resources Build System"}, "versions": [{"id": "5cff6a19-a5e0-46bb-bcbc-4942c836ca46", + "name": "2022-09-15T19:11:26.000595+00:00", "local_images": [{"id": "d22f119d-400b-4792-9d2c-985be3fe0a2b", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", + "GPU-3070-S"]}, {"id": "04ac2de1-2c99-4cf8-a533-ea92e7809d32", "zone": "fr-par-2", + "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", "GPU-3070-S"]}], + "creation_date": "2022-09-15T19:11:26.061606+00:00", "modification_date": "2022-09-15T19:11:26.061606+00:00"}], + "categories": ["Machine Learning"], "current_public_version": "5cff6a19-a5e0-46bb-bcbc-4942c836ca46", + "creation_date": "2021-11-30T12:37:45.971134+00:00", "modification_date": "2022-09-19T14:10:37.648361+00:00", + "valid_until": null}, {"id": "a6c68db3-5613-4b08-acaa-2c92d8baf26c", "name": + "Ubuntu Jammy GPU OS 12", "label": "ubuntu_jammy_gpu_os_12", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/ubuntu.png", + "description": "Ubuntu 22.04 Jammy Jellyfish for Nvidia GPU and Machine Learning + (GPU passthrough)", "organization": {"id": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "name": "Instances User Resources Build System"}, "versions": [{"id": "acac98cc-db99-47f7-882c-693e895d8b21", + "name": "2023-02-15T09:47:38.749339+00:00", "local_images": [{"id": "7dbfc0d2-0699-4e38-8664-45971a24af33", + "zone": "par1", "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", + "GPU-3070-S"]}, {"id": "819cb4c0-b0d3-475e-a18a-014f1998853c", "zone": "fr-par-2", + "arch": "x86_64", "compatible_commercial_types": ["RENDER-S", "GPU-3070-S"]}], + "creation_date": "2023-02-15T09:47:38.843433+00:00", "modification_date": "2023-02-15T09:47:38.843433+00:00"}], + "categories": ["Machine Learning"], "current_public_version": "acac98cc-db99-47f7-882c-693e895d8b21", + "creation_date": "2023-01-20T14:30:57.496021+00:00", "modification_date": "2023-02-15T10:00:58.861108+00:00", + "valid_until": null}, {"id": "215a50f9-0ba8-4e9c-a4e7-10caf50e3586", "name": + "WordPress", "label": "wordpress", "logo": "https://scw-marketplace-logos.s3.fr-par.scw.cloud/wordpress.png", + "description": "WordPress is the most popular web software you can use to create + a beautiful website or blog.", "organization": {"id": "6d6b64e5-6bad-4cc6-b7ef-2030884c3e11", + "name": "auth-team+ocs-organization@scaleway.com"}, "versions": [{"id": "08baf82b-82b8-4450-b545-c2fbfd4d6135", + "name": "2023-04-13T13:48:44.450791+00:00", "local_images": [{"id": "af715cfb-e95f-42bf-b308-eedc91ae4806", + "zone": "nl-ams-2", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "f9be223b-f639-4ed9-83f0-ee911be052de", "zone": "ams1", "arch": "x86_64", "compatible_commercial_types": + ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", + "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", + "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", + "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", + "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, + {"id": "1927920a-520f-4712-9a56-11d7cbbe43be", "zone": "par1", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "2406e707-b3cc-4721-9e7d-293ecec7dcf8", + "zone": "pl-waw-1", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "28357650-c47f-4bd2-8589-0cb4923c0f58", "zone": "pl-waw-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": "7c0ba4cb-6286-4220-9e28-de57042c6812", + "zone": "fr-par-3", "arch": "x86_64", "compatible_commercial_types": ["DEV1-L", + "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", + "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", + "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", + "PRO2-XXS", "RENDER-S", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", + "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"]}, {"id": + "9490b6b4-92cb-4c9e-abfc-1cee6187ee29", "zone": "fr-par-2", "arch": "x86_64", + "compatible_commercial_types": ["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "ENT1-2XL", + "ENT1-L", "ENT1-M", "ENT1-S", "ENT1-XL", "ENT1-XS", "ENT1-XXS", "GP1-L", "GP1-M", + "GP1-S", "GP1-VIZ", "GP1-XL", "GP1-XS", "PLAY2-MICRO", "PLAY2-NANO", "PLAY2-PICO", + "PRO2-L", "PRO2-M", "PRO2-S", "PRO2-XS", "PRO2-XXS", "RENDER-S", "STARDUST1-S", + "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", + "X64-15GB", "X64-30GB", "X64-60GB"]}], "creation_date": "2023-04-13T13:48:44.619998+00:00", + "modification_date": "2023-04-13T13:48:44.619998+00:00"}], "categories": ["instantapp"], + "current_public_version": "08baf82b-82b8-4450-b545-c2fbfd4d6135", "creation_date": + "2016-03-07T21:03:59.783534+00:00", "modification_date": "2023-04-13T14:40:21.433436+00:00", + "valid_until": null}]}' + headers: + Content-Length: + - "126189" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 16 May 2023 09:21:28 GMT + Link: + - ; rel="last" + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2908016d-718d-464d-b29e-00d0a9dcaf5b + X-Total-Count: + - "23" + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu + 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/68cf470e-6c35-4741-bbff-4ce788616461 + method: GET + response: + body: '{"image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu + 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "614" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 16 May 2023 09:21:28 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6882e41a-ae41-4598-ab33-84d2f4f6903a + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, + "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": + 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "baremetal": false, "monthly_price": 36.1496, "hourly_price": + 0.04952, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": + 4294967296, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": + 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 300000000}]}}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 12884901888, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": + 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 500000000}]}}, "ENT1-2XL": {"alt_names": [], "arch": "x86_64", "ncpus": 96, + "ram": 412316860416, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": + false, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": + ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + false, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": + 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 20000000000}]}}, "ENT1-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}}, "ENT1-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 3200000000}]}}, "ENT1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}}, "ENT1-XL": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}}, "ENT1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "ENT1-XXS": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "GP1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": + 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": + 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5000000000}]}}, "GP1-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": + 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1500000000}]}}, "GP1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "GP1-VIZ": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 72.0, "hourly_price": 0.1, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "GP1-XL": + {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": + 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 10000000000}]}}, "GP1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "PLAY2-MICRO": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "PLAY2-NANO": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "PLAY2-PICO": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}}, "PRO2-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, + "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 6000000000}]}}, "PRO2-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, + "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 3000000000}]}}, "PRO2-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, + "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 1500000000}]}}, "PRO2-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, + "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 700000000}]}}, "PRO2-XXS": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, + "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 350000000}]}}, "RENDER-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": + 1, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 907.098, "hourly_price": 1.2426, "capabilities": {"boot_types": + ["local", "rescue"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": + 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1000000000}]}}, "STARDUST1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 3.3507, "hourly_price": 0.00459, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}}, "START1-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 200000000000, "max_size": 200000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, + "baremetal": false, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 400000000}]}}, "START1-M": {"alt_names": [], "arch": + "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "volumes_constraint": {"min_size": + 100000000000, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": + 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 300000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 300000000}]}}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 50000000000, "max_size": + 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "baremetal": false, "monthly_price": 7.738, "hourly_price": + 0.0106, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "START1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, + "volumes_constraint": {"min_size": 25000000000, "max_size": 25000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": + false, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 100000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 100000000}]}}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": + 6, "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 200000000000, + "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "baremetal": false, "monthly_price": 18.0164, "hourly_price": + 0.02468, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "VC1M": {"alt_names": + ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "volumes_constraint": + {"min_size": 100000000000, "max_size": 100000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": + false, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 200000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": + 2, "ram": 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 50000000000, + "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, + "max_size": 200000000000}}, "baremetal": false, "monthly_price": 6.2926, "hourly_price": + 0.00862, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 200000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "X64-120GB": + {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": + 0, "volumes_constraint": {"min_size": 500000000000, "max_size": 1000000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, + "baremetal": false, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1000000000}]}}, "X64-15GB": {"alt_names": [], "arch": + "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "volumes_constraint": {"min_size": + 200000000000, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 200000000000}}, "baremetal": false, "monthly_price": + 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "bootscript", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 0}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": + 250000000, "interfaces": [{"internal_bandwidth": null, "internet_bandwidth": + 250000000}]}}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": + 32212254720, "gpu": 0, "volumes_constraint": {"min_size": 300000000000, "max_size": + 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 200000000000}}, "baremetal": false, "monthly_price": 86.9138, "hourly_price": + 0.11906, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "bootscript", "hot_snapshots_local_volume": true, "placement_groups": true, + "block_storage": true, "private_network": 0}, "network": {"ipv6_support": true, + "sum_internal_bandwidth": 104857600, "sum_internet_bandwidth": 500000000, "interfaces": + [{"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "X64-60GB": + {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": + 0, "volumes_constraint": {"min_size": 400000000000, "max_size": 700000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 200000000000}}, + "baremetal": false, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "bootscript", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 104857600, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": + null, "internet_bandwidth": 1000000000}]}}}}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + method: GET + response: + body: '{"servers": {"DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, + "ram": 8589934592, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": + 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": + 800000000000}}, "baremetal": false, "monthly_price": 36.1496, "hourly_price": + 0.04952, "capabilities": {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": + "local", "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": + 400000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 400000000}]}}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": + 4294967296, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 18.6588, "hourly_price": 0.02556, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": + 300000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 300000000}]}}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": + 2147483648, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 9.9864, "hourly_price": 0.01368, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": + 200000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 200000000}]}}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": + 12884901888, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, + "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, + "baremetal": false, "monthly_price": 53.3484, "hourly_price": 0.07308, "capabilities": + {"boot_types": ["bootscript", "rescue", "local"], "default_boot_type": "local", + "hot_snapshots_local_volume": true, "placement_groups": true, "block_storage": + true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": + 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": + 500000000, "internet_bandwidth": null}, {"internal_bandwidth": null, "internet_bandwidth": + 500000000}]}}, "ENT1-2XL": {"alt_names": [], "arch": "x86_64", "ncpus": 96, + "ram": 412316860416, "gpu": 0, "volumes_constraint": {"min_size": 0, "max_size": + 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": + false, "monthly_price": 2576.9, "hourly_price": 3.53, "capabilities": {"boot_types": + ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + false, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": + 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 20000000000}]}}, "ENT1-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, + "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 6400000000}]}}, "ENT1-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, + "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 3200000000}]}}, "ENT1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, + "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 1600000000}]}}, "ENT1-XL": + {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, + "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 12800000000}]}}, "ENT1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, + "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "ENT1-XXS": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 53.655, "hourly_price": 0.0735, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "GP1-L": {"alt_names": + [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "volumes_constraint": + {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": + {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": false, "monthly_price": + 576.262, "hourly_price": 0.7894, "capabilities": {"boot_types": ["bootscript", + "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": + 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 5000000000}]}}, "GP1-M": + {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 296.672, "hourly_price": 0.4064, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": + 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 1500000000}]}}, "GP1-S": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 149.066, "hourly_price": 0.2042, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": + 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 800000000}]}}, "GP1-VIZ": + {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 72.0, "hourly_price": 0.1, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "GP1-XL": + {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 1220.122, "hourly_price": 1.6714, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": + 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 10000000000}]}}, "GP1-XS": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": + {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "baremetal": + false, "monthly_price": 74.168, "hourly_price": 0.1016, "capabilities": {"boot_types": + ["bootscript", "rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": + true, "placement_groups": true, "block_storage": true, "private_network": 8}, + "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": + 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": + null}, {"internal_bandwidth": null, "internet_bandwidth": 500000000}]}}, "PLAY2-MICRO": + {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, + "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 400000000}]}}, "PLAY2-NANO": + {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, + "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 200000000}]}}, "PLAY2-PICO": + {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, + "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["rescue", "local"], + "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": + true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": + true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, + "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": null}, + {"internal_bandwidth": null, "internet_bandwidth": 100000000}]}}, "PRO2-L": + {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": + 0, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": + {"l_ssd": {"min_size": 0, "max_size": 0}}, "baremetal": false, "monthly_price": + 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["rescue", "local"], "default_boot_type": "local", "hot_snapshots_local_volume": false, "placement_groups": true, "block_storage": true, "private_network": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, @@ -1951,7 +3787,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:38 GMT + - Tue, 16 May 2023 09:21:28 GMT Link: - ; rel="last" Server: @@ -1963,14 +3799,17 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9b643f7-86dd-4fec-9a08-510a059b7116 + - e49d6160-2c69-4581-9147-aebd65990ecc X-Total-Count: - "38" status: 200 OK code: 200 duration: "" - request: - body: '{"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: '{"ip": {"id": "607f9310-4c85-4152-a2a6-f0c6272b012d", "address": "163.172.168.201", + "reverse": null, "server": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", "tags": + []}}' form: {} headers: Content-Type: @@ -1980,21 +3819,21 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: - body: '{"ip": {"id": "0706fbba-ae5d-4613-932f-c72087d703a4", "address": "51.158.125.193", + body: '{"ip": {"id": "607f9310-4c85-4152-a2a6-f0c6272b012d", "address": "163.172.168.201", "reverse": null, "server": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: - - "255" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:39 GMT + - Tue, 16 May 2023 09:21:29 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/0706fbba-ae5d-4613-932f-c72087d703a4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607f9310-4c85-4152-a2a6-f0c6272b012d Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2004,12 +3843,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acf76127-9847-4a47-813e-2f8da34c3329 + - 0cf75e0c-85ae-4ba5-9668-5d36b1f5ec56 status: 201 Created code: 201 duration: "" - request: - body: '{"name":"cli-srv-epic-goldstine","commercial_type":"DEV1-S","image":"68cf470e-6c35-4741-bbff-4ce788616461","public_ip":"0706fbba-ae5d-4613-932f-c72087d703a4","boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: '{"server": {"id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", "name": "cli-srv-determined-wright", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-determined-wright", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", + "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "74ae0313-fe13-4260-9782-5b50cfb05edd", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, + "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", "name": "cli-srv-determined-wright"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-16T09:21:29.629508+00:00", + "modification_date": "2023-05-16T09:21:29.629508+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "607f9310-4c85-4152-a2a6-f0c6272b012d", "address": "163.172.168.201", + "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-16T09:21:29.629508+00:00", + "modification_date": "2023-05-16T09:21:29.629508+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "ac7c7160-8415-425b-8cf0-9976ee15ccd1", + "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": + ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": + "fr-par-1"}}' form: {} headers: Content-Type: @@ -2019,47 +3887,47 @@ interactions: url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: - body: '{"server": {"id": "89040064-4dd1-414d-9f5a-6239a0055847", "name": "cli-srv-epic-goldstine", + body: '{"server": {"id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", "name": "cli-srv-determined-wright", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-epic-goldstine", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", + "hostname": "cli-srv-determined-wright", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, - "volumes": {"0": {"boot": false, "id": "7f191bd4-8de7-4041-990f-f4979b127f48", + "volumes": {"0": {"boot": false, "id": "74ae0313-fe13-4260-9782-5b50cfb05edd", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "server": {"id": "89040064-4dd1-414d-9f5a-6239a0055847", "name": "cli-srv-epic-goldstine"}, - "size": 20000000000, "state": "available", "creation_date": "2023-05-12T12:26:39.752113+00:00", - "modification_date": "2023-05-12T12:26:39.752113+00:00", "tags": [], "zone": + "server": {"id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", "name": "cli-srv-determined-wright"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-16T09:21:29.629508+00:00", + "modification_date": "2023-05-16T09:21:29.629508+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": {"id": "0706fbba-ae5d-4613-932f-c72087d703a4", "address": "51.158.125.193", + "", "public_ip": {"id": "607f9310-4c85-4152-a2a6-f0c6272b012d", "address": "163.172.168.201", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-12T12:26:39.752113+00:00", - "modification_date": "2023-05-12T12:26:39.752113+00:00", "bootscript": {"id": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-16T09:21:29.629508+00:00", + "modification_date": "2023-05-16T09:21:29.629508+00:00", "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", + true, "zone": "fr-par-1"}, "security_group": {"id": "ac7c7160-8415-425b-8cf0-9976ee15ccd1", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "2634" + - "2644" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:40 GMT + - Tue, 16 May 2023 09:21:29 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89040064-4dd1-414d-9f5a-6239a0055847 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/acd622a2-ad90-4f37-9ddb-e2e5d54b9077 Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2069,25 +3937,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e6ed27f-43e5-490d-a6e4-61b2c4af8b06 + - 78eb605e-f62b-4e02-8d15-ba5b4289b5b4 status: 201 Created code: 201 duration: "" - request: - body: '{"private_network_id":"a7389447-5a20-4ac0-af97-a6d354a1d09a"}' + body: '{"private_nic": {"id": "4ed1543a-35ba-46e9-8da1-1534885e8a40", "private_network_id": + "9b219bf2-8175-4873-b130-447fad04084a", "server_id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", + "mac_address": "02:00:00:12:ed:21", "state": "available", "creation_date": "2023-05-16T09:21:30.007345+00:00", + "modification_date": "2023-05-16T09:21:30.007345+00:00", "zone": "fr-par-1", + "tags": []}}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89040064-4dd1-414d-9f5a-6239a0055847/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/acd622a2-ad90-4f37-9ddb-e2e5d54b9077/private_nics method: POST response: - body: '{"private_nic": {"id": "8c08dd03-da4d-4e44-8a6a-564d6df9ae13", "private_network_id": - "a7389447-5a20-4ac0-af97-a6d354a1d09a", "server_id": "89040064-4dd1-414d-9f5a-6239a0055847", - "mac_address": "02:00:00:12:e9:f2", "state": "available", "creation_date": "2023-05-12T12:26:40.115208+00:00", - "modification_date": "2023-05-12T12:26:40.115208+00:00", "zone": "fr-par-1", + body: '{"private_nic": {"id": "4ed1543a-35ba-46e9-8da1-1534885e8a40", "private_network_id": + "9b219bf2-8175-4873-b130-447fad04084a", "server_id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", + "mac_address": "02:00:00:12:ed:21", "state": "available", "creation_date": "2023-05-16T09:21:30.007345+00:00", + "modification_date": "2023-05-16T09:21:30.007345+00:00", "zone": "fr-par-1", "tags": []}}' headers: Content-Length: @@ -2097,7 +3969,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:40 GMT + - Tue, 16 May 2023 09:21:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2107,29 +3979,35 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83700a68-d75e-4f96-98c5-cbd1d4c39980 + - 5d61a226-a801-4ab7-b59e-5e5f9e5b8cf8 status: 201 Created code: 201 duration: "" - request: - body: "" + body: '{"id":"9b219bf2-8175-4873-b130-447fad04084a", "name":"cli-pn-mystifying-knuth", + "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-05-16T09:21:28.438501Z", + "updated_at":"2023-05-16T09:21:28.438501Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "subnets":["172.16.40.0/22", "fd46:78ab:30b8:88c8::/64"], "zone":"fr-par-1"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/a7389447-5a20-4ac0-af97-a6d354a1d09a + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/9b219bf2-8175-4873-b130-447fad04084a method: GET response: - body: '{"id":"a7389447-5a20-4ac0-af97-a6d354a1d09a","name":"cli-pn-agitated-ritchie","tags":[],"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","created_at":"2023-05-12T12:26:38.173311Z","updated_at":"2023-05-12T12:26:38.173311Z","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnets":["172.16.8.0/22","fd46:78ab:30b8:fa22::/64"],"zone":"fr-par-1"}' + body: '{"id":"9b219bf2-8175-4873-b130-447fad04084a", "name":"cli-pn-mystifying-knuth", + "tags":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "created_at":"2023-05-16T09:21:28.438501Z", + "updated_at":"2023-05-16T09:21:28.438501Z", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "subnets":["172.16.40.0/22", "fd46:78ab:30b8:88c8::/64"], "zone":"fr-par-1"}' headers: Content-Length: - - "356" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:40 GMT + - Tue, 16 May 2023 09:21:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2139,63 +4017,95 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 463f4c36-ab76-4adb-a3a5-8ed361a792ae + - e27563a8-b5d0-4c3a-8744-d9fa276693a5 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"servers": [{"id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", "name": "cli-srv-determined-wright", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-determined-wright", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", + "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "74ae0313-fe13-4260-9782-5b50cfb05edd", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, + "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", "name": "cli-srv-determined-wright"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-16T09:21:29.629508+00:00", + "modification_date": "2023-05-16T09:21:29.629508+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "607f9310-4c85-4152-a2a6-f0c6272b012d", "address": "163.172.168.201", + "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-16T09:21:29.629508+00:00", + "modification_date": "2023-05-16T09:21:29.629508+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "ac7c7160-8415-425b-8cf0-9976ee15ccd1", + "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "4ed1543a-35ba-46e9-8da1-1534885e8a40", + "private_network_id": "9b219bf2-8175-4873-b130-447fad04084a", "server_id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", + "mac_address": "02:00:00:12:ed:21", "state": "available", "creation_date": "2023-05-16T09:21:30.007345+00:00", + "modification_date": "2023-05-16T09:21:30.007345+00:00", "zone": "fr-par-1", + "tags": []}], "zone": "fr-par-1"}]}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&page=1&private_network=a7389447-5a20-4ac0-af97-a6d354a1d09a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&page=1&private_network=9b219bf2-8175-4873-b130-447fad04084a method: GET response: - body: '{"servers": [{"id": "89040064-4dd1-414d-9f5a-6239a0055847", "name": "cli-srv-epic-goldstine", + body: '{"servers": [{"id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", "name": "cli-srv-determined-wright", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-epic-goldstine", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", + "hostname": "cli-srv-determined-wright", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, - "volumes": {"0": {"boot": false, "id": "7f191bd4-8de7-4041-990f-f4979b127f48", + "volumes": {"0": {"boot": false, "id": "74ae0313-fe13-4260-9782-5b50cfb05edd", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "server": {"id": "89040064-4dd1-414d-9f5a-6239a0055847", "name": "cli-srv-epic-goldstine"}, - "size": 20000000000, "state": "available", "creation_date": "2023-05-12T12:26:39.752113+00:00", - "modification_date": "2023-05-12T12:26:39.752113+00:00", "tags": [], "zone": + "server": {"id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", "name": "cli-srv-determined-wright"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-16T09:21:29.629508+00:00", + "modification_date": "2023-05-16T09:21:29.629508+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": {"id": "0706fbba-ae5d-4613-932f-c72087d703a4", "address": "51.158.125.193", + "", "public_ip": {"id": "607f9310-4c85-4152-a2a6-f0c6272b012d", "address": "163.172.168.201", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-12T12:26:39.752113+00:00", - "modification_date": "2023-05-12T12:26:39.752113+00:00", "bootscript": {"id": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-16T09:21:29.629508+00:00", + "modification_date": "2023-05-16T09:21:29.629508+00:00", "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", + true, "zone": "fr-par-1"}, "security_group": {"id": "ac7c7160-8415-425b-8cf0-9976ee15ccd1", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": - ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8c08dd03-da4d-4e44-8a6a-564d6df9ae13", - "private_network_id": "a7389447-5a20-4ac0-af97-a6d354a1d09a", "server_id": "89040064-4dd1-414d-9f5a-6239a0055847", - "mac_address": "02:00:00:12:e9:f2", "state": "available", "creation_date": "2023-05-12T12:26:40.115208+00:00", - "modification_date": "2023-05-12T12:26:40.115208+00:00", "zone": "fr-par-1", + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "4ed1543a-35ba-46e9-8da1-1534885e8a40", + "private_network_id": "9b219bf2-8175-4873-b130-447fad04084a", "server_id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", + "mac_address": "02:00:00:12:ed:21", "state": "available", "creation_date": "2023-05-16T09:21:30.007345+00:00", + "modification_date": "2023-05-16T09:21:30.007345+00:00", "zone": "fr-par-1", "tags": []}], "zone": "fr-par-1"}]}' headers: Content-Length: - - "2998" + - "3008" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:41 GMT + - Tue, 16 May 2023 09:21:30 GMT Link: - - ; + - ; rel="last" Server: - Scaleway API-Gateway @@ -2206,31 +4116,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69302500-f940-403d-b526-1b9ac8d56637 + - 1d892981-da88-4afe-bf77-7000a6c7f819 X-Total-Count: - "1" status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"server_private_networks":[], "total_count":0}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&page=1&private_network_id=a7389447-5a20-4ac0-af97-a6d354a1d09a + url: https://api.scaleway.com/baremetal/v1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&page=1&private_network_id=9b219bf2-8175-4873-b130-447fad04084a method: GET response: - body: '{"server_private_networks":[],"total_count":0}' + body: '{"server_private_networks":[], "total_count":0}' headers: Content-Length: - - "46" + - "47" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:41 GMT + - Tue, 16 May 2023 09:21:30 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2240,12 +4150,24 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ab3d8e0-ee52-4009-8457-44794dc7e4ed + - aa039ffc-710a-4290-b198-7e7f452853e3 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"lbs":[{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", "name":"test_lb", + "description":"", "status":"ready", "instances":[{"id":"f6ee0815-016b-43d0-a414-962e222755a3", + "status":"ready", "ip_address":"10.76.114.37", "created_at":"2023-05-15T07:30:03.980291Z", + "updated_at":"2023-05-15T07:37:25.750897Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", "ip_address":"51.159.204.2", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", "reverse":"51-159-204-2.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":["network"], "frontend_count":0, + "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-05-15T07:37:25.183150Z", "updated_at":"2023-05-15T07:37:27.141137Z", + "private_network_count":3, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}], + "total_count":1}' form: {} headers: User-Agent: @@ -2253,16 +4175,28 @@ interactions: url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs?order_by=created_at_asc method: GET response: - body: '{"lbs":[],"total_count":0}' + body: '{"lbs":[{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", "name":"test_lb", + "description":"", "status":"ready", "instances":[{"id":"f6ee0815-016b-43d0-a414-962e222755a3", + "status":"ready", "ip_address":"10.76.114.37", "created_at":"2023-05-15T07:30:03.980291Z", + "updated_at":"2023-05-15T07:37:25.750897Z", "region":"fr-par", "zone":"fr-par-1"}], + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", "ip_address":"51.159.204.2", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", "reverse":"51-159-204-2.lb.fr-par.scw.cloud", + "region":"fr-par", "zone":"fr-par-1"}], "tags":["network"], "frontend_count":0, + "backend_count":0, "type":"lb-s", "subscriber":null, "ssl_compatibility_level":"ssl_compatibility_level_intermediate", + "created_at":"2023-05-15T07:37:25.183150Z", "updated_at":"2023-05-15T07:37:27.141137Z", + "private_network_count":3, "route_count":0, "region":"fr-par", "zone":"fr-par-1"}], + "total_count":1}' headers: Content-Length: - - "26" + - "1126" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:41 GMT + - Tue, 16 May 2023 09:21:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2272,12 +4206,123 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be9fd5fc-85ca-4706-9e25-b8a6355fcdfc + - f308b148-a577-4f21-8128-717e596073e1 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"private_network":[{"lb":{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "name":"test_lb", "description":"", "status":"ready", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", + "ip_address":"51.159.204.2", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "reverse":"51-159-204-2.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":["network"], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-15T07:37:25.183150Z", + "updated_at":"2023-05-15T07:37:27.141137Z", "private_network_count":3, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}, "private_network_id":"cde0143a-e7f6-4c43-a9e4-3ac22b8275fa", + "status":"ready", "created_at":"2023-05-15T07:37:55.713330Z", "updated_at":"2023-05-15T07:37:58.925341Z", + "static_config":{"ip_address":["172.16.0.104"]}}, {"lb":{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "name":"test_lb", "description":"", "status":"ready", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", + "ip_address":"51.159.204.2", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "reverse":"51-159-204-2.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":["network"], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-15T07:37:25.183150Z", + "updated_at":"2023-05-15T07:37:27.141137Z", "private_network_count":3, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}, "private_network_id":"2c111777-c253-4ca0-b9f4-1569266fbc8d", + "status":"ready", "created_at":"2023-05-15T07:38:26.190633Z", "updated_at":"2023-05-15T07:38:34.130357Z", + "dhcp_config":{}}, {"lb":{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", "name":"test_lb", + "description":"", "status":"ready", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", + "ip_address":"51.159.204.2", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "reverse":"51-159-204-2.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":["network"], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-15T07:37:25.183150Z", + "updated_at":"2023-05-15T07:37:27.141137Z", "private_network_count":3, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}, "private_network_id":"182524b1-cf72-4376-a481-f4066e4c9f2a", + "status":"ready", "created_at":"2023-05-15T07:38:56.748211Z", "updated_at":"2023-05-15T07:39:04.201532Z", + "dhcp_config":{}}], "total_count":3}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/a38cccee-a702-400f-ba30-f1b2517a0047/private-networks?order_by=created_at_asc&page=1 + method: GET + response: + body: '{"private_network":[{"lb":{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "name":"test_lb", "description":"", "status":"ready", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", + "ip_address":"51.159.204.2", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "reverse":"51-159-204-2.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":["network"], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-15T07:37:25.183150Z", + "updated_at":"2023-05-15T07:37:27.141137Z", "private_network_count":3, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}, "private_network_id":"cde0143a-e7f6-4c43-a9e4-3ac22b8275fa", + "status":"ready", "created_at":"2023-05-15T07:37:55.713330Z", "updated_at":"2023-05-15T07:37:58.925341Z", + "static_config":{"ip_address":["172.16.0.104"]}}, {"lb":{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "name":"test_lb", "description":"", "status":"ready", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", + "ip_address":"51.159.204.2", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "reverse":"51-159-204-2.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":["network"], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-15T07:37:25.183150Z", + "updated_at":"2023-05-15T07:37:27.141137Z", "private_network_count":3, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}, "private_network_id":"2c111777-c253-4ca0-b9f4-1569266fbc8d", + "status":"ready", "created_at":"2023-05-15T07:38:26.190633Z", "updated_at":"2023-05-15T07:38:34.130357Z", + "dhcp_config":{}}, {"lb":{"id":"a38cccee-a702-400f-ba30-f1b2517a0047", "name":"test_lb", + "description":"", "status":"ready", "instances":[], "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "ip":[{"id":"8981df38-e2b6-433e-960d-09c57867398c", + "ip_address":"51.159.204.2", "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "lb_id":"a38cccee-a702-400f-ba30-f1b2517a0047", + "reverse":"51-159-204-2.lb.fr-par.scw.cloud", "region":"fr-par", "zone":"fr-par-1"}], + "tags":["network"], "frontend_count":0, "backend_count":0, "type":"lb-s", "subscriber":null, + "ssl_compatibility_level":"ssl_compatibility_level_intermediate", "created_at":"2023-05-15T07:37:25.183150Z", + "updated_at":"2023-05-15T07:37:27.141137Z", "private_network_count":3, "route_count":0, + "region":"fr-par", "zone":"fr-par-1"}, "private_network_id":"182524b1-cf72-4376-a481-f4066e4c9f2a", + "status":"ready", "created_at":"2023-05-15T07:38:56.748211Z", "updated_at":"2023-05-15T07:39:04.201532Z", + "dhcp_config":{}}], "total_count":3}' + headers: + Content-Length: + - "3293" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 16 May 2023 09:21:31 GMT + Server: + - Scaleway API-Gateway + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7cae688e-3846-4963-9d82-baa6fd8fb1e3 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"instances":[{"id":"df3ce9de-0ef1-4b83-b481-b326645e1c33", "name":"rdb-gifted-volhard", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "status":"ready", "engine":"PostgreSQL-14", "upgradable_version":[], "endpoint":{"ip":"51.159.113.51", + "port":9631, "name":null, "id":"602f2e65-102d-4ca3-8564-1d86df50770f", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":true, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"51.159.113.51", + "port":9631, "name":null, "id":"602f2e65-102d-4ca3-8564-1d86df50770f", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-05-15T19:32:42.739269Z", "region":"fr-par"}], + "total_count":1}' form: {} headers: User-Agent: @@ -2285,16 +4330,29 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances?order_by=created_at_asc&page=1 method: GET response: - body: '{"instances":[],"total_count":0}' + body: '{"instances":[{"id":"df3ce9de-0ef1-4b83-b481-b326645e1c33", "name":"rdb-gifted-volhard", + "organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "status":"ready", "engine":"PostgreSQL-14", "upgradable_version":[], "endpoint":{"ip":"51.159.113.51", + "port":9631, "name":null, "id":"602f2e65-102d-4ca3-8564-1d86df50770f", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false}, + "is_ha_cluster":true, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000}, "init_settings":[], "endpoints":[{"ip":"51.159.113.51", + "port":9631, "name":null, "id":"602f2e65-102d-4ca3-8564-1d86df50770f", "load_balancer":{}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "created_at":"2023-05-15T19:32:42.739269Z", "region":"fr-par"}], + "total_count":1}' headers: Content-Length: - - "32" + - "1222" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:41 GMT + - Tue, 16 May 2023 09:21:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2304,12 +4362,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9f82a36-11d0-4415-8f20-3f2110755bac + - a3722ba3-51f9-49da-8c00-aedc45c70f66 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"clusters":[], "total_count":0}' form: {} headers: User-Agent: @@ -2317,16 +4375,16 @@ interactions: url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters?order_by=created_at_asc&page=1 method: GET response: - body: '{"clusters":[],"total_count":0}' + body: '{"clusters":[], "total_count":0}' headers: Content-Length: - - "31" + - "32" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:41 GMT + - Tue, 16 May 2023 09:21:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2336,12 +4394,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfabcddf-ef99-4e01-ad4a-3d6120bd919e + - 11c4a6b7-8eb6-4dc0-97ea-c260e9944657 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"gateways":[], "total_count":0}' form: {} headers: User-Agent: @@ -2349,16 +4407,16 @@ interactions: url: https://api.scaleway.com/vpc-gw/v1/zones/fr-par-1/gateways?order_by=created_at_asc&page=1&status=unknown method: GET response: - body: '{"gateways":[],"total_count":0}' + body: '{"gateways":[], "total_count":0}' headers: Content-Length: - - "31" + - "32" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:41 GMT + - Tue, 16 May 2023 09:21:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2368,61 +4426,93 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66be2cf2-168c-462a-a1d9-525f3e2d7c0b + - 4186c54e-59bd-4261-a5d9-21c6216edbd3 status: 200 OK code: 200 duration: "" - request: - body: "" + body: '{"server": {"id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", "name": "cli-srv-determined-wright", + "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": + "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "hostname": "cli-srv-determined-wright", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", + "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", + "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, + "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", + "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": + null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, + "volumes": {"0": {"boot": false, "id": "74ae0313-fe13-4260-9782-5b50cfb05edd", + "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, + "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", + "server": {"id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", "name": "cli-srv-determined-wright"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-16T09:21:29.629508+00:00", + "modification_date": "2023-05-16T09:21:29.629508+00:00", "tags": [], "zone": + "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": + "", "public_ip": {"id": "607f9310-4c85-4152-a2a6-f0c6272b012d", "address": "163.172.168.201", + "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-16T09:21:29.629508+00:00", + "modification_date": "2023-05-16T09:21:29.629508+00:00", "bootscript": {"id": + "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline + 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", + "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", + "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", + "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": + true, "zone": "fr-par-1"}, "security_group": {"id": "ac7c7160-8415-425b-8cf0-9976ee15ccd1", + "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "4ed1543a-35ba-46e9-8da1-1534885e8a40", + "private_network_id": "9b219bf2-8175-4873-b130-447fad04084a", "server_id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", + "mac_address": "02:00:00:12:ed:21", "state": "available", "creation_date": "2023-05-16T09:21:30.007345+00:00", + "modification_date": "2023-05-16T09:21:30.007345+00:00", "zone": "fr-par-1", + "tags": []}], "zone": "fr-par-1"}}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89040064-4dd1-414d-9f5a-6239a0055847 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/acd622a2-ad90-4f37-9ddb-e2e5d54b9077 method: GET response: - body: '{"server": {"id": "89040064-4dd1-414d-9f5a-6239a0055847", "name": "cli-srv-epic-goldstine", + body: '{"server": {"id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", "name": "cli-srv-determined-wright", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "hostname": "cli-srv-epic-goldstine", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", + "hostname": "cli-srv-determined-wright", "image": {"id": "68cf470e-6c35-4741-bbff-4ce788616461", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "a6463aae-70b5-4020-a08d-6f4c24caf224", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "unified", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2023-04-13T12:32:02.036379+00:00", "modification_date": "2023-04-13T12:32:02.036379+00:00", "default_bootscript": null, "from_server": null, "state": "available", "tags": [], "zone": "fr-par-1"}, - "volumes": {"0": {"boot": false, "id": "7f191bd4-8de7-4041-990f-f4979b127f48", + "volumes": {"0": {"boot": false, "id": "74ae0313-fe13-4260-9782-5b50cfb05edd", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", - "server": {"id": "89040064-4dd1-414d-9f5a-6239a0055847", "name": "cli-srv-epic-goldstine"}, - "size": 20000000000, "state": "available", "creation_date": "2023-05-12T12:26:39.752113+00:00", - "modification_date": "2023-05-12T12:26:39.752113+00:00", "tags": [], "zone": + "server": {"id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", "name": "cli-srv-determined-wright"}, + "size": 20000000000, "state": "available", "creation_date": "2023-05-16T09:21:29.629508+00:00", + "modification_date": "2023-05-16T09:21:29.629508+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": - "", "public_ip": {"id": "0706fbba-ae5d-4613-932f-c72087d703a4", "address": "51.158.125.193", + "", "public_ip": {"id": "607f9310-4c85-4152-a2a6-f0c6272b012d", "address": "163.172.168.201", "dynamic": false}, "ipv6": null, "extra_networks": [], "dynamic_ip_required": - true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-12T12:26:39.752113+00:00", - "modification_date": "2023-05-12T12:26:39.752113+00:00", "bootscript": {"id": + true, "enable_ipv6": false, "private_ip": null, "creation_date": "2023-05-16T09:21:29.629508+00:00", + "modification_date": "2023-05-16T09:21:29.629508+00:00", "bootscript": {"id": "fdfe150f-a870-4ce4-b432-9f56b5b995c1", "public": true, "title": "x86_64 mainline 4.4.230 rev1", "architecture": "x86_64", "organization": "11111111-1111-4111-8111-111111111111", "project": "11111111-1111-4111-8111-111111111111", "kernel": "http://10.194.3.9/kernel/x86_64-mainline-lts-4.4-4.4.230-rev1/vmlinuz-4.4.230", "dtb": "", "initrd": "http://10.194.3.9/initrd/initrd-Linux-x86_64-v3.14.6.gz", "bootcmdargs": "LINUX_COMMON scaleway boot=local nbd.max_part=16", "default": - true, "zone": "fr-par-1"}, "security_group": {"id": "80658ebd-8846-4781-803c-57307ad3db42", + true, "zone": "fr-par-1"}, "security_group": {"id": "ac7c7160-8415-425b-8cf0-9976ee15ccd1", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": - ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "8c08dd03-da4d-4e44-8a6a-564d6df9ae13", - "private_network_id": "a7389447-5a20-4ac0-af97-a6d354a1d09a", "server_id": "89040064-4dd1-414d-9f5a-6239a0055847", - "mac_address": "02:00:00:12:e9:f2", "state": "available", "creation_date": "2023-05-12T12:26:40.115208+00:00", - "modification_date": "2023-05-12T12:26:41.089815+00:00", "zone": "fr-par-1", + ["poweron", "backup"], "placement_group": null, "private_nics": [{"id": "4ed1543a-35ba-46e9-8da1-1534885e8a40", + "private_network_id": "9b219bf2-8175-4873-b130-447fad04084a", "server_id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", + "mac_address": "02:00:00:12:ed:21", "state": "available", "creation_date": "2023-05-16T09:21:30.007345+00:00", + "modification_date": "2023-05-16T09:21:30.007345+00:00", "zone": "fr-par-1", "tags": []}], "zone": "fr-par-1"}}' headers: Content-Length: - - "2995" + - "3005" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:41 GMT + - Tue, 16 May 2023 09:21:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2432,7 +4522,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e18058f2-e7a9-4d6d-8612-02566493d6a9 + - bd2200c5-765d-41a1-8ecd-f8236e074df8 status: 200 OK code: 200 duration: "" @@ -2442,7 +4532,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89040064-4dd1-414d-9f5a-6239a0055847 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/acd622a2-ad90-4f37-9ddb-e2e5d54b9077 method: DELETE response: body: "" @@ -2450,7 +4540,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 12 May 2023 12:26:42 GMT + - Tue, 16 May 2023 09:21:31 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2460,7 +4550,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99dd6e5b-f06e-406a-9330-8338367f6139 + - 1dc72abc-a2fd-400e-8ecf-58ce0106065f status: 204 No Content code: 204 duration: "" @@ -2470,7 +4560,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f191bd4-8de7-4041-990f-f4979b127f48 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/74ae0313-fe13-4260-9782-5b50cfb05edd method: DELETE response: body: "" @@ -2478,7 +4568,7 @@ interactions: Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Date: - - Fri, 12 May 2023 12:26:42 GMT + - Tue, 16 May 2023 09:21:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2488,7 +4578,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8723832b-2aab-4484-a8e9-f71a16bbf49f + - 9e87d94e-22e3-498b-b0d9-ee320096fa55 status: 204 No Content code: 204 duration: "" @@ -2498,7 +4588,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.19.5; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/a7389447-5a20-4ac0-af97-a6d354a1d09a + url: https://api.scaleway.com/vpc/v1/zones/fr-par-1/private-networks/9b219bf2-8175-4873-b130-447fad04084a method: DELETE response: body: "" @@ -2508,7 +4598,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 12 May 2023 12:26:42 GMT + - Tue, 16 May 2023 09:21:32 GMT Server: - Scaleway API-Gateway Strict-Transport-Security: @@ -2518,7 +4608,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75e898e5-b347-4328-85c3-36b4a768de30 + - ea886f15-b4d8-4e57-9e82-26b6e2ed108f status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.golden b/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.golden index 4397dc22b6..77aa02fe81 100644 --- a/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.golden +++ b/internal/namespaces/vpc/v1/testdata/test-get-private-network-simple.golden @@ -1,37 +1,22 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID a7389447-5a20-4ac0-af97-a6d354a1d09a -Name cli-pn-agitated-ritchie +ID 9b219bf2-8175-4873-b130-447fad04084a +Name cli-pn-mystifying-knuth OrganizationID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 ProjectID 564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 Zone fr-par-1 CreatedAt few seconds ago UpdatedAt few seconds ago -Subnets.0 172.16.8.0/22 -Subnets.1 fd46:78ab:30b8:fa22::/64 +Subnets.0 172.16.40.0/22 +Subnets.1 fd46:78ab:30b8:88c8::/64 Instance Servers: -ID NAME STATE NIC ID MAC ADDRESS -89040064-4dd1-414d-9f5a-6239a0055847 cli-srv-epic-goldstine archived 8c08dd03-da4d-4e44-8a6a-564d6df9ae13 02:00:00:12:e9:f2 - -Baremetal Servers: -ID NAME STATE BAREMETAL NETWORK ID VLAN - -Load-Balancers: -ID NAME STATE - -Rdb Instances: -ID NAME STATE ENDPOINT ID - -Redis Clusters: -ID NAME STATE ENDPOINT ID - -Public Gateways: -ID NAME STATE GATEWAY NETWORK ID +ID NAME STATE NIC ID MAC ADDRESS +acd622a2-ad90-4f37-9ddb-e2e5d54b9077 cli-srv-determined-wright archived 4ed1543a-35ba-46e9-8da1-1534885e8a40 02:00:00:12:ed:21 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "id": "a7389447-5a20-4ac0-af97-a6d354a1d09a", - "name": "cli-pn-agitated-ritchie", + "id": "9b219bf2-8175-4873-b130-447fad04084a", + "name": "cli-pn-mystifying-knuth", "organization_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "project_id": "564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5", "zone": "fr-par-1", @@ -39,21 +24,16 @@ ID NAME STATE GATEWAY NETWORK ID "created_at": "1970-01-01T00:00:00.0Z", "updated_at": "1970-01-01T00:00:00.0Z", "subnets": [ - "172.16.8.0/22", - "fd46:78ab:30b8:fa22::/64" + "172.16.40.0/22", + "fd46:78ab:30b8:88c8::/64" ], "instance_servers": [ { - "id": "89040064-4dd1-414d-9f5a-6239a0055847", - "name": "cli-srv-epic-goldstine", + "id": "acd622a2-ad90-4f37-9ddb-e2e5d54b9077", + "name": "cli-srv-determined-wright", "state": "stopped", - "nic_id": "8c08dd03-da4d-4e44-8a6a-564d6df9ae13", - "mac": "02:00:00:12:e9:f2" + "nic_id": "4ed1543a-35ba-46e9-8da1-1534885e8a40", + "mac": "02:00:00:12:ed:21" } - ], - "baremetal_servers": null, - "lbs": null, - "rdb_instances": null, - "redis_clusters": null, - "gateways": null + ] }