From 659d26b31e5abec931d68a237dc02bc3530f0dde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Fri, 10 Apr 2020 11:27:49 +0200 Subject: [PATCH 01/13] baremetal: add install command with a wait flag --- .../namespaces/baremetal/v1alpha1/custom.go | 1 + .../v1alpha1/custom_server_install.go | 39 + .../v1alpha1/custom_server_install_test.go | 38 + .../baremetal/v1alpha1/custom_server_test.go | 6 +- .../baremetal/v1alpha1/helpers_test.go | 21 +- ...nstall-server-simple-with-id.cassette.yaml | 2389 +++++++++++++++++ ...nstall-server-simple-with-id.stdout.golden | 25 + scripts/run-tests.sh | 2 +- 8 files changed, 2514 insertions(+), 7 deletions(-) create mode 100644 internal/namespaces/baremetal/v1alpha1/custom_server_install.go create mode 100644 internal/namespaces/baremetal/v1alpha1/custom_server_install_test.go create mode 100644 internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.cassette.yaml create mode 100644 internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.stdout.golden diff --git a/internal/namespaces/baremetal/v1alpha1/custom.go b/internal/namespaces/baremetal/v1alpha1/custom.go index 52092154ef..06a08440d6 100644 --- a/internal/namespaces/baremetal/v1alpha1/custom.go +++ b/internal/namespaces/baremetal/v1alpha1/custom.go @@ -10,6 +10,7 @@ func GetCommands() *core.Commands { )) cmds.MustFind("baremetal", "server", "create").Override(serverCreateBuilder) + cmds.MustFind("baremetal", "server", "install").Override(serverInstallBuilder) // Action commands cmds.MustFind("baremetal", "server", "start").Override(serverStartBuilder) diff --git a/internal/namespaces/baremetal/v1alpha1/custom_server_install.go b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go new file mode 100644 index 0000000000..8c4e817b8a --- /dev/null +++ b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go @@ -0,0 +1,39 @@ +package baremetal + +import ( + "context" + + "github.com/scaleway/scaleway-cli/internal/core" + baremetal "github.com/scaleway/scaleway-sdk-go/api/baremetal/v1alpha1" +) + +func serverInstallBuilder(c *core.Command) *core.Command { + c.Examples = []*core.Example{ + { + Short: "Install an os on a given server", + Request: `{"os-id":"11111111-1111-1111-1111-111111111111","server-id":"11111111-1111-1111-1111-111111111111"}`, + }, + } + + c.SeeAlsos = []*core.SeeAlso{ + { + Short: "List os (Useful to get all os-id)", + Command: "scw baremetal os list", + }, + { + Short: "Create a server", + Command: "scw baremetal server create", + }, + } + + c.WaitFunc = func(ctx context.Context, argsI, respI interface{}) (interface{}, error) { + api := baremetal.NewAPI(core.ExtractClient(ctx)) + return api.WaitForServerInstall(&baremetal.WaitForServerInstallRequest{ + Zone: argsI.(*baremetal.InstallServerRequest).Zone, + ServerID: respI.(*baremetal.Server).ID, + Timeout: serverActionTimeout, + }) + } + + return c +} diff --git a/internal/namespaces/baremetal/v1alpha1/custom_server_install_test.go b/internal/namespaces/baremetal/v1alpha1/custom_server_install_test.go new file mode 100644 index 0000000000..8529e7e7c6 --- /dev/null +++ b/internal/namespaces/baremetal/v1alpha1/custom_server_install_test.go @@ -0,0 +1,38 @@ +package baremetal + +import ( + "testing" + + "github.com/scaleway/scaleway-cli/internal/core" + account "github.com/scaleway/scaleway-cli/internal/namespaces/account/v2alpha1" + "github.com/scaleway/scaleway-sdk-go/scw" +) + +func Test_InstallServer(t *testing.T) { + // All test below should succeed to create an instance. + t.Run("Simple", func(t *testing.T) { + // baremetal api requires that the key must be at least 1024 bits long. Regardless of the algorithm + sshKey := `ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCbJuYSOQc01zjHsMyn4OUsW61cqRvttKt3StJgbvt2WBuGpwi1/5RtSoMQpudYlZpdeivFb21S8QRas8zcOc+6WqgWa2nj/8yA+cauRlV6CMWY+hOTkkg39xaekstuQ+WR2/AP7O/9hjVx5735+9ZNIxxHsFjVYdBEuk9gEX+1Rw== foobar@foobar` + osID := `d859aa89-8b4a-4551-af42-ff7c0c27260a` // Ubuntu 18.04 + cmds := GetCommands() + cmds.Merge(account.GetCommands()) + + t.Run("With ID", core.Test(&core.TestConfig{ + BeforeFunc: core.BeforeFuncCombine( + addSSH("key", sshKey), + createServerAndWait("Server"), + ), + Commands: cmds, + Cmd: "scw baremetal server install {{ .Server.ID }} hostname=test-install-server ssh-key-ids.0={{ .key.ID }} os-id=" + osID + " -w", + Check: core.TestCheckCombine( + core.TestCheckGolden(), + core.TestCheckExitCode(0), + ), + AfterFunc: core.AfterFuncCombine( + deleteSSH("key"), + deleteServer("Server"), + ), + DefaultZone: scw.ZoneFrPar2, + })) + }) +} diff --git a/internal/namespaces/baremetal/v1alpha1/custom_server_test.go b/internal/namespaces/baremetal/v1alpha1/custom_server_test.go index e925b69483..ae208fcd5f 100644 --- a/internal/namespaces/baremetal/v1alpha1/custom_server_test.go +++ b/internal/namespaces/baremetal/v1alpha1/custom_server_test.go @@ -9,7 +9,7 @@ import ( func Test_StartServerErrors(t *testing.T) { t.Run("Error: cannot be started while not delivered", core.Test(&core.TestConfig{ - BeforeFunc: createServer("Server"), + BeforeFunc: createServerAndWait("Server"), Commands: GetCommands(), Cmd: "scw baremetal server start {{ .Server.ID }} -w", Check: core.TestCheckExitCode(1), @@ -20,7 +20,7 @@ func Test_StartServerErrors(t *testing.T) { func Test_StopServerErrors(t *testing.T) { t.Run("Error: cannot be stopped while not delivered", core.Test(&core.TestConfig{ - BeforeFunc: createServer("Server"), + BeforeFunc: createServerAndWait("Server"), Commands: GetCommands(), Cmd: "scw baremetal server stop {{ .Server.ID }} -w", Check: core.TestCheckExitCode(1), @@ -31,7 +31,7 @@ func Test_StopServerErrors(t *testing.T) { func Test_RebootServerErrors(t *testing.T) { t.Run("Error: cannot be rebooted while not delivered", core.Test(&core.TestConfig{ - BeforeFunc: createServer("Server"), + BeforeFunc: createServerAndWait("Server"), Commands: GetCommands(), Cmd: "scw baremetal server reboot {{ .Server.ID }} -w", Check: core.TestCheckExitCode(1), diff --git a/internal/namespaces/baremetal/v1alpha1/helpers_test.go b/internal/namespaces/baremetal/v1alpha1/helpers_test.go index 9a8af8925a..9f2de46aac 100644 --- a/internal/namespaces/baremetal/v1alpha1/helpers_test.go +++ b/internal/namespaces/baremetal/v1alpha1/helpers_test.go @@ -4,10 +4,10 @@ import ( "github.com/scaleway/scaleway-cli/internal/core" ) -// createServer creates a baremetal instance +// createServerAndWait creates a baremetal instance // register it in the context Meta at metaKey. -func createServer(metaKey string) core.BeforeFunc { - return core.ExecStoreBeforeCmd(metaKey, "scw baremetal server create") +func createServerAndWait(metaKey string) core.BeforeFunc { + return core.ExecStoreBeforeCmd(metaKey, "scw baremetal server create -w") } // deleteServer deletes a server @@ -15,3 +15,18 @@ func createServer(metaKey string) core.BeforeFunc { func deleteServer(metaKey string) core.AfterFunc { return core.ExecAfterCmd("scw baremetal server delete {{ ." + metaKey + ".ID }}") } + +// add an ssh key with a given meta key +func addSSH(metaKey string, key string) core.BeforeFunc { + return func(ctx *core.BeforeFuncCtx) error { + ctx.Meta[metaKey] = ctx.ExecuteCmd([]string{ + "scw", "account", "ssh-key", "add", "public-key=" + key, + }) + return nil + } +} + +// delete an ssh key with a given meta key +func deleteSSH(metaKey string) core.AfterFunc { + return core.ExecAfterCmd("scw account ssh-key delete {{ ." + metaKey + ".ID }}") +} diff --git a/internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.cassette.yaml b/internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.cassette.yaml new file mode 100644 index 0000000000..929fb7de4b --- /dev/null +++ b/internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.cassette.yaml @@ -0,0 +1,2389 @@ +--- +version: 1 +interactions: +- request: + body: '{"name":"","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCbJuYSOQc01zjHsMyn4OUsW61cqRvttKt3StJgbvt2WBuGpwi1/5RtSoMQpudYlZpdeivFb21S8QRas8zcOc+6WqgWa2nj/8yA+cauRlV6CMWY+hOTkkg39xaekstuQ+WR2/AP7O/9hjVx5735+9ZNIxxHsFjVYdBEuk9gEX+1Rw== + foobar@foobar","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/account/v2alpha1/ssh-keys + method: POST + response: + body: '{"id":"f06d9273-385e-4747-806c-d4673c410f9d","name":"","public_key":"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAAAgQCbJuYSOQc01zjHsMyn4OUsW61cqRvttKt3StJgbvt2WBuGpwi1/5RtSoMQpudYlZpdeivFb21S8QRas8zcOc+6WqgWa2nj/8yA+cauRlV6CMWY+hOTkkg39xaekstuQ+WR2/AP7O/9hjVx5735+9ZNIxxHsFjVYdBEuk9gEX+1Rw== + foobar@foobar","fingerprint":"1024 MD5:da:0f:06:4c:de:fe:a1:c0:6c:e9:bb:78:e1:a4:e8:ce + foobar@foobar (ssh-rsa)","created_at":"2020-04-16T14:47:24.725962Z","updated_at":"2020-04-16T15:50:24.620828Z","creation_info":{"address":"","user_agent":"","country_code":""},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42"}' + headers: + Content-Length: + - "602" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:50:24 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 035fbaba-f1aa-4107-9ad7-b25968d2217d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/offers?page=1 + method: GET + response: + body: '{"total_count":7,"offers":[{"id":"3ab0dc29-2fd4-486e-88bf-d08fbf49214b","name":"HC-BM1-L","stock":"available","bandwidth":1000,"commercial_range":"high_cpu","price_by_minute":{"currency_code":"EUR","units":1,"nanos":499900000},"price_by_month":{"currency_code":"EUR","units":749,"nanos":990000000},"disk":[{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"}],"enable":true,"cpu":[{"name":"Intel + Xeon Gold 5120","cores":14,"threads":28,"frequency":2200},{"name":"Intel Xeon + Gold 5120","cores":14,"threads":28,"frequency":2200}],"memory":[{"capacity":384,"type":"DDR4","frequency":2133,"ecc":true}],"quota_name":"bmaas_high","price_per_sixty_minutes":{"currency_code":"EUR","units":1,"nanos":499900000},"price_per_month":{"currency_code":"EUR","units":749,"nanos":990000000}},{"id":"5363865f-2266-40f9-a43f-4f3aba251524","name":"HM-BM1-XL","stock":"available","bandwidth":1000,"commercial_range":"high_memory","price_by_minute":{"currency_code":"EUR","units":2,"nanos":599900000},"price_by_month":{"currency_code":"EUR","units":1299,"nanos":990000000},"disk":[{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"}],"enable":true,"cpu":[{"name":"Intel + Xeon Gold 6140","cores":18,"threads":36,"frequency":2300},{"name":"Intel Xeon + Gold 6140","cores":18,"threads":36,"frequency":2300}],"memory":[{"capacity":768,"type":"DDR4","frequency":2133,"ecc":true}],"quota_name":"bmaas_high","price_per_sixty_minutes":{"currency_code":"EUR","units":2,"nanos":599900000},"price_per_month":{"currency_code":"EUR","units":1299,"nanos":990000000}},{"id":"737f18c8-febc-4408-b69e-776bca0a3f48","name":"HC-BM1-S","stock":"available","bandwidth":1000,"commercial_range":"high_cpu","price_by_minute":{"currency_code":"EUR","units":0,"nanos":659900000},"price_by_month":{"currency_code":"EUR","units":329,"nanos":990000000},"disk":[{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"}],"enable":true,"cpu":[{"name":"Intel + Xeon Silver 4114","cores":10,"threads":20,"frequency":2200},{"name":"Intel Xeon + Silver 4114","cores":10,"threads":20,"frequency":2200}],"memory":[{"capacity":128,"type":"DDR4","frequency":2400,"ecc":true}],"quota_name":"bmaas_high","price_per_sixty_minutes":{"currency_code":"EUR","units":0,"nanos":659900000},"price_per_month":{"currency_code":"EUR","units":329,"nanos":990000000}},{"id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","name":"GP-BM1-S","stock":"available","bandwidth":500,"commercial_range":"general_purpose","price_by_minute":{"currency_code":"EUR","units":0,"nanos":240000000},"price_by_month":{"currency_code":"EUR","units":119,"nanos":990000000},"disk":[{"capacity":250,"type":"SSD"},{"capacity":250,"type":"SSD"}],"enable":true,"cpu":[{"name":"Intel + Xeon E3 1240v6","cores":4,"threads":8,"frequency":3700}],"memory":[{"capacity":32,"type":"DDR4","frequency":2133,"ecc":true}],"quota_name":"bmaas_gp","price_per_sixty_minutes":{"currency_code":"EUR","units":0,"nanos":240000000},"price_per_month":{"currency_code":"EUR","units":119,"nanos":990000000}},{"id":"8090d302-3545-4905-9cf3-bcb77a299f47","name":"GP-BM1-L","stock":"available","bandwidth":750,"commercial_range":"general_purpose","price_by_minute":{"currency_code":"EUR","units":0,"nanos":499900000},"price_by_month":{"currency_code":"EUR","units":249,"nanos":990000000},"disk":[{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"}],"enable":true,"cpu":[{"name":"AMD + EPYC 7281","cores":16,"threads":32,"frequency":2100}],"memory":[{"capacity":96,"type":"DDR4","frequency":2133,"ecc":true}],"quota_name":"bmaas_gp","price_per_sixty_minutes":{"currency_code":"EUR","units":0,"nanos":499900000},"price_per_month":{"currency_code":"EUR","units":249,"nanos":990000000}},{"id":"964f9b38-577e-470f-a220-7d762f9e8672","name":"GP-BM1-M","stock":"available","bandwidth":500,"commercial_range":"general_purpose","price_by_minute":{"currency_code":"EUR","units":0,"nanos":399900000},"price_by_month":{"currency_code":"EUR","units":199,"nanos":990000000},"disk":[{"capacity":1024,"type":"SSD"},{"capacity":1024,"type":"SSD"},{"capacity":1024,"type":"SSD"}],"enable":true,"cpu":[{"name":"Intel + Xeon E3 1240v6","cores":4,"threads":8,"frequency":3700}],"memory":[{"capacity":64,"type":"DDR4","frequency":2133,"ecc":true}],"quota_name":"bmaas_gp","price_per_sixty_minutes":{"currency_code":"EUR","units":0,"nanos":399900000},"price_per_month":{"currency_code":"EUR","units":199,"nanos":990000000}},{"id":"c452f76a-2cda-4a1b-9658-a16952dc5ff0","name":"HM-BM1-M","stock":"available","bandwidth":1000,"commercial_range":"high_memory","price_by_minute":{"currency_code":"EUR","units":0,"nanos":799900000},"price_by_month":{"currency_code":"EUR","units":399,"nanos":990000000},"disk":[{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"}],"enable":true,"cpu":[{"name":"AMD + EPYC 7401P","cores":24,"threads":48,"frequency":2000}],"memory":[{"capacity":256,"type":"DDR4","frequency":2133,"ecc":true}],"quota_name":"bmaas_high","price_per_sixty_minutes":{"currency_code":"EUR","units":0,"nanos":799900000},"price_per_month":{"currency_code":"EUR","units":399,"nanos":990000000}}]}' + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:50:24 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 61ab7713-a4e4-47b7-b37e-94761097039e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","tags":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers + method: POST + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:24.866581106Z","created_at":"2020-04-16T15:50:24.866581106Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "396" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:50:24 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8f161086-7d6f-49e6-a22a-f6457e4b07d7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:24.866581Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:50:24 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1c4eafd3-216a-4b26-9dd1-0aefaaf13415 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:50:39 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 29dae497-1e2b-4d10-bae0-0e345f3aef9a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:50:54 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ba299b07-5169-4dcf-b734-0006148129bf + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:51:09 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b4b72854-def9-400f-bab9-167a5f1f9c30 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:51:24 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4e3be7b1-4791-4094-969b-4bc2e64ef0f2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:51:39 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d64c9880-f736-4d97-ab31-2333dcc8f52d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:51:54 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c806ba7a-bcda-4ace-ae7b-afe3fff05879 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:52:09 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bc932929-6560-445c-97e3-b7c891308075 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:52:24 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fbe2fe1a-3133-46f5-a7dd-7e15041995c9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:52:40 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 06ca3354-18eb-45aa-b10e-e229edd541a7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:52:55 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1c3a1c61-8386-42c5-85f1-fd8830f2c520 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:53:10 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 786a6170-d461-48c8-88fc-a56f9a9cc7e0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:53:25 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2e9feaef-a861-4e3f-8e0b-7a445a1ba6b1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:53:40 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2656b6b5-b974-4711-99dd-a55f6e6da0fb + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:53:55 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5e267e06-39cc-4acb-a2f2-4d3f6018eff4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:54:10 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e84515e-ecc6-4507-92c4-504930ea163c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:54:25 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ea6c881f-f586-4e46-b646-ef67f8d4c08e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:54:40 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ccfaf7b-676a-49ca-9847-af950efdab5c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "390" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:54:55 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 58050516-eb93-45b7-b9fa-3e8422f9b290 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "921" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:55:10 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0844e2cc-958c-4de0-a8a9-96e30c87615d + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6/install + method: POST + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"to_install"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:55:10 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4b1b3ae9-fcde-43f1-9da5-acff6c045a88 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"to_install"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:55:10 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d5b804c-e08c-4236-ba2a-f68d54062880 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:55:25 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4c6b3346-eee8-4eb8-b6c0-b1bc1e8192e8 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:55:40 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 28d8fb77-d367-4797-9464-13c953f0c72e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:55:56 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 33e7f1be-40b2-464f-a79f-149fa114f293 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:56:11 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 68482332-4f1c-4cce-b823-a7f4d5825e4c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:56:26 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 96680c6c-8516-4c9d-b7e6-0a87a14dbad2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:56:41 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6fde7223-d2bf-4663-a8b8-1b2334cae15f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:56:56 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 653169aa-8356-4d2b-87ff-bc3b5b96795b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:57:11 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3b4bc879-250c-4306-9f23-fa1d2c8ba11c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:57:26 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 616c7b79-2f17-4ab9-afe3-5c687d62fd8d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:57:41 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0e9f4e6-3275-4eb0-ae88-e21cb8313543 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:57:56 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 707b7019-ffd9-4eec-910a-54584c347557 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:58:11 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 291e8d8f-7fbb-4f0f-ba87-81feace6ac53 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:58:26 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 80a046c7-4028-4b9e-ba52-acf7510044bd + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:58:41 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - af17af80-e18f-4b87-91bc-e783b5ae482e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:58:56 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4845d71b-1260-45bd-a17c-14f4f434c643 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:59:11 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - db039d52-c7af-4105-9f19-27481fd9cf6c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:59:26 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 396b4d2f-8d2c-4861-ab9f-c474bc6f4597 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:59:41 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 75a0e629-8369-4490-832a-1fa2286f8e40 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 15:59:56 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 65fd159c-6252-49b1-b0e6-daf31de6ac1c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:00:11 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 01dd637b-2a26-4466-b508-dccb7f016985 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:00:26 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6f0874fd-10be-4c65-9bfa-e25d53fe8c07 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:00:41 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d6b2665a-94dc-4574-945e-f5f3a31afde4 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:00:56 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0c9d6ef6-3915-4c81-af1e-65b7ca6e7fc0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:01:11 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0ffb7687-284d-42f5-b2fb-442539637e47 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:01:26 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3884125a-73ef-4635-8b21-bb783c5794b7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:01:41 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - daf01cf8-18a9-4fe8-bc89-90cba456686a + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:01:56 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 23f4a1c7-0394-432b-95bd-e2f73cf51218 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:02:11 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8d1282a3-046b-4d69-9498-3e0423a912f7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:02:27 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 01f83287-90dd-4d04-8011-9522085a32e2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:02:42 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 742bc197-16d3-43cc-8c8c-c28913454673 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:02:57 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3f65e8e8-6be4-4bb7-a2ac-b798f818e2b9 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:03:12 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b79e4439-70ad-4886-9805-4534464939a0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:03:27 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c26d8df7-3651-4d34-a764-a27c7bf75db2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:03:42 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 81c6d9a1-9e04-43f6-a0b0-47bc7c1d9ad2 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:03:57 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fe9572fc-d6a8-45c1-945f-e92a4399bafc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:04:12 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a8f465ce-55ea-422c-9d9a-ff40fffb3e29 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:04:27 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 585a4554-a80a-46ef-97ac-9c5e174127d1 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:04:42 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 11a31ffc-3a77-487a-bb04-02feea3147a3 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:04:57 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a15055b2-0714-4db6-a8b8-14316612a13c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:05:12 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 907efc16-31cf-4df7-b5f3-e3ac1f4df89c + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:05:27 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - da1950df-4b9f-41f6-b391-0decfd3bcca0 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:05:42 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4e7de06f-1f06-4b08-8300-af9cd90972ac + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:05:57 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c3073b7e-1c72-4de4-9913-642223d0a528 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:06:12 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c858e459-f88e-4686-aa03-617ace6b1289 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:06:27 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e0d36238-21a0-4e62-a6ca-b23a6cfd3654 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:06:42 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b1a87d2b-5cb0-4e28-9ff5-4fd4f722ac2d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1073" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:06:57 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc3d6f63-20fe-4b72-a489-49cb1da4dfc7 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: GET + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"completed"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1072" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:07:12 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa3a327e-3f9a-4091-a9c0-06cdbe733f0b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + method: DELETE + response: + body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T16:07:13.237739Z","created_at":"2020-04-16T15:50:24.866581Z","status":"deleting","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"completed"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + headers: + Content-Length: + - "1075" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 16 Apr 2020 16:07:12 GMT + Server: + - scaleway_api + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb4fb47d-1384-48fd-befe-a565513ef7dd + status: 200 OK + code: 200 + duration: "" diff --git a/internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.stdout.golden b/internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.stdout.golden new file mode 100644 index 0000000000..3648b3d87d --- /dev/null +++ b/internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.stdout.golden @@ -0,0 +1,25 @@ +id 2cf740a1-07c7-46a3-ab6d-68918fa962c6 +organization-id 951df375-e094-4d26-97c1-ba548eeb9c42 +name cli-bm-busy-gauss +description - +updated-at few seconds ago +created-at few seconds ago +status ready +offer-id 7fde3890-9787-488c-ac89-c4e00a4e5f83 +install.os-id d859aa89-8b4a-4551-af42-ff7c0c27260a +install.hostname test-install-server +install.ssh-key-ids.0 f06d9273-385e-4747-806c-d4673c410f9d +install.status completed +ips.0.id 4aa0ab37-cf13-4ada-b5be-b4dd2edaa227 +ips.0.address 2001:bc8:6005:1b:dac4:97ff:fe2a:3540 +ips.0.reverse 2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud +ips.0.version Ipv6 +ips.0.reverse-status active +ips.1.id cbbb8d5b-d91f-4314-8a93-38e5aae566af +ips.1.address 51.159.31.16 +ips.1.reverse 2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud +ips.1.version Ipv4 +ips.1.reverse-status active +domain 2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud +boot-type normal +zone fr-par-2 diff --git a/scripts/run-tests.sh b/scripts/run-tests.sh index 20860be74e..91d2419103 100755 --- a/scripts/run-tests.sh +++ b/scripts/run-tests.sh @@ -93,4 +93,4 @@ if [[ ${OPT_UPDATE_GOLDENS} ]] && [[ -z ${OPT_RUN_SCOPE} ]]; then find . -type f -name "*.golden" -exec rm -f {} \; fi -SCW_DEBUG=$SCW_DEBUG CLI_UPDATE_GOLDENS=$OPT_UPDATE_GOLDENS CLI_UPDATE_CASSETTES=$OPT_UPDATE_CASSETTES go test -v $ROOT_DIR/... -run=$OPT_RUN_SCOPE +SCW_DEBUG=$SCW_DEBUG CLI_UPDATE_GOLDENS=$OPT_UPDATE_GOLDENS CLI_UPDATE_CASSETTES=$OPT_UPDATE_CASSETTES go test -v $ROOT_DIR/... -timeout 20m -run=$OPT_RUN_SCOPE From 05d3cc210adc5c131286ae3f8f950a5074519cbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Thu, 16 Apr 2020 18:24:00 +0200 Subject: [PATCH 02/13] Fix --- ...sage-baremetal-server-install-usage.stderr.golden | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden index 8cf7b0a285..9ed72d16e0 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden @@ -3,6 +3,10 @@ Install an OS on the server associated with the given ID. USAGE: scw baremetal server install [arg=value ...] +EXAMPLES: + Install an os on a given server + scw baremetal server install + ARGS: server-id Server ID to install os-id ID of the OS to install on the server @@ -12,8 +16,16 @@ ARGS: FLAGS: -h, --help help for install + -w, --wait wait until the server is ready GLOBAL FLAGS: -D, --debug Enable debug mode -o, --output string Output format: json or human -p, --profile string The config profile to use + +SEE ALSO: + # List os (Useful to get all os-id) + scw baremetal os list + + # Create a server + scw baremetal server create From 8d0d620320b4bb5264f39952ffb4c1b304422a70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Fri, 17 Apr 2020 12:04:45 +0200 Subject: [PATCH 03/13] Fix --- internal/namespaces/baremetal/v1alpha1/custom_server_install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/namespaces/baremetal/v1alpha1/custom_server_install.go b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go index 8c4e817b8a..1bd313b182 100644 --- a/internal/namespaces/baremetal/v1alpha1/custom_server_install.go +++ b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go @@ -29,7 +29,7 @@ func serverInstallBuilder(c *core.Command) *core.Command { c.WaitFunc = func(ctx context.Context, argsI, respI interface{}) (interface{}, error) { api := baremetal.NewAPI(core.ExtractClient(ctx)) return api.WaitForServerInstall(&baremetal.WaitForServerInstallRequest{ - Zone: argsI.(*baremetal.InstallServerRequest).Zone, + Zone: argsI.(*baremetal.Server).Zone, ServerID: respI.(*baremetal.Server).ID, Timeout: serverActionTimeout, }) From 456173b961a0403a38f62435e8f30a0b10a13cdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Fri, 17 Apr 2020 11:49:08 +0200 Subject: [PATCH 04/13] Update internal/namespaces/baremetal/v1alpha1/custom_server_install.go Co-Authored-By: Olivier Cano --- internal/namespaces/baremetal/v1alpha1/custom_server_install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/namespaces/baremetal/v1alpha1/custom_server_install.go b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go index 1bd313b182..88840ccdd6 100644 --- a/internal/namespaces/baremetal/v1alpha1/custom_server_install.go +++ b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go @@ -10,7 +10,7 @@ import ( func serverInstallBuilder(c *core.Command) *core.Command { c.Examples = []*core.Example{ { - Short: "Install an os on a given server", + Short: "Install an OS on a given server", Request: `{"os-id":"11111111-1111-1111-1111-111111111111","server-id":"11111111-1111-1111-1111-111111111111"}`, }, } From 1a5d09bcaf2223d1c36cd4c574bfe7979fcfa0e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Fri, 17 Apr 2020 11:49:21 +0200 Subject: [PATCH 05/13] Update internal/namespaces/baremetal/v1alpha1/custom_server_install.go Co-Authored-By: Olivier Cano --- internal/namespaces/baremetal/v1alpha1/custom_server_install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/namespaces/baremetal/v1alpha1/custom_server_install.go b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go index 88840ccdd6..c07775afa3 100644 --- a/internal/namespaces/baremetal/v1alpha1/custom_server_install.go +++ b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go @@ -17,7 +17,7 @@ func serverInstallBuilder(c *core.Command) *core.Command { c.SeeAlsos = []*core.SeeAlso{ { - Short: "List os (Useful to get all os-id)", + Short: "List OS (useful to get all OS IDs)", Command: "scw baremetal os list", }, { From 1111abfc2eee4d1c9b53ec6ac935b2d709d162f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Wed, 22 Apr 2020 19:44:11 +0200 Subject: [PATCH 06/13] Fix --- ...est-all-usage-baremetal-server-install-usage.stderr.golden | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden index 9ed72d16e0..7fd0386ecb 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden @@ -4,7 +4,7 @@ USAGE: scw baremetal server install [arg=value ...] EXAMPLES: - Install an os on a given server + Install an OS on a given server scw baremetal server install ARGS: @@ -24,7 +24,7 @@ GLOBAL FLAGS: -p, --profile string The config profile to use SEE ALSO: - # List os (Useful to get all os-id) + # List OS (useful to get all OS IDs) scw baremetal os list # Create a server From ba038cc9cbd0f553e7dcfb50817fdd043d49acdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Fri, 24 Apr 2020 11:18:07 +0200 Subject: [PATCH 07/13] Fix --- internal/namespaces/baremetal/v1alpha1/custom_server_install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/namespaces/baremetal/v1alpha1/custom_server_install.go b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go index c07775afa3..7af83f57eb 100644 --- a/internal/namespaces/baremetal/v1alpha1/custom_server_install.go +++ b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go @@ -29,7 +29,7 @@ func serverInstallBuilder(c *core.Command) *core.Command { c.WaitFunc = func(ctx context.Context, argsI, respI interface{}) (interface{}, error) { api := baremetal.NewAPI(core.ExtractClient(ctx)) return api.WaitForServerInstall(&baremetal.WaitForServerInstallRequest{ - Zone: argsI.(*baremetal.Server).Zone, + Zone: argsI.(*baremetal.WaitForServerInstallRequest).Zone, ServerID: respI.(*baremetal.Server).ID, Timeout: serverActionTimeout, }) From f10740de5d7d5aba08060f90a45add4e2bc2a950 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Fri, 24 Apr 2020 11:31:58 +0200 Subject: [PATCH 08/13] Fix --- internal/namespaces/baremetal/v1alpha1/custom_server_install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/namespaces/baremetal/v1alpha1/custom_server_install.go b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go index 7af83f57eb..eb1fbdfd33 100644 --- a/internal/namespaces/baremetal/v1alpha1/custom_server_install.go +++ b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go @@ -29,7 +29,7 @@ func serverInstallBuilder(c *core.Command) *core.Command { c.WaitFunc = func(ctx context.Context, argsI, respI interface{}) (interface{}, error) { api := baremetal.NewAPI(core.ExtractClient(ctx)) return api.WaitForServerInstall(&baremetal.WaitForServerInstallRequest{ - Zone: argsI.(*baremetal.WaitForServerInstallRequest).Zone, + Zone: argsI.(*baremetal.InstallServerRequest).Zone, ServerID: respI.(*baremetal.Server).ID, Timeout: serverActionTimeout, }) From 191c5c6001d1a24973e078aeb77844664e38f4e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Fri, 24 Apr 2020 12:01:34 +0200 Subject: [PATCH 09/13] FIx --- ...nstall-server-simple-with-id.cassette.yaml | 1046 +++++------------ ...nstall-server-simple-with-id.stdout.golden | 19 +- 2 files changed, 309 insertions(+), 756 deletions(-) diff --git a/internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.cassette.yaml b/internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.cassette.yaml index 929fb7de4b..a881309a2d 100644 --- a/internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.cassette.yaml +++ b/internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.cassette.yaml @@ -16,7 +16,7 @@ interactions: body: '{"id":"f06d9273-385e-4747-806c-d4673c410f9d","name":"","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCbJuYSOQc01zjHsMyn4OUsW61cqRvttKt3StJgbvt2WBuGpwi1/5RtSoMQpudYlZpdeivFb21S8QRas8zcOc+6WqgWa2nj/8yA+cauRlV6CMWY+hOTkkg39xaekstuQ+WR2/AP7O/9hjVx5735+9ZNIxxHsFjVYdBEuk9gEX+1Rw== foobar@foobar","fingerprint":"1024 MD5:da:0f:06:4c:de:fe:a1:c0:6c:e9:bb:78:e1:a4:e8:ce - foobar@foobar (ssh-rsa)","created_at":"2020-04-16T14:47:24.725962Z","updated_at":"2020-04-16T15:50:24.620828Z","creation_info":{"address":"","user_agent":"","country_code":""},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42"}' + foobar@foobar (ssh-rsa)","created_at":"2020-04-16T14:47:24.725962Z","updated_at":"2020-04-24T09:44:31.766345Z","creation_info":{"address":"","user_agent":"","country_code":""},"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42"}' headers: Content-Length: - "602" @@ -25,7 +25,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:50:24 GMT + - Fri, 24 Apr 2020 09:44:31 GMT Server: - scaleway_api Strict-Transport-Security: @@ -35,7 +35,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 035fbaba-f1aa-4107-9ad7-b25968d2217d + - 5529cb3e-8160-42c5-8b33-043e26107d9c status: 200 OK code: 200 duration: "" @@ -50,12 +50,12 @@ interactions: response: body: '{"total_count":7,"offers":[{"id":"3ab0dc29-2fd4-486e-88bf-d08fbf49214b","name":"HC-BM1-L","stock":"available","bandwidth":1000,"commercial_range":"high_cpu","price_by_minute":{"currency_code":"EUR","units":1,"nanos":499900000},"price_by_month":{"currency_code":"EUR","units":749,"nanos":990000000},"disk":[{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"}],"enable":true,"cpu":[{"name":"Intel Xeon Gold 5120","cores":14,"threads":28,"frequency":2200},{"name":"Intel Xeon - Gold 5120","cores":14,"threads":28,"frequency":2200}],"memory":[{"capacity":384,"type":"DDR4","frequency":2133,"ecc":true}],"quota_name":"bmaas_high","price_per_sixty_minutes":{"currency_code":"EUR","units":1,"nanos":499900000},"price_per_month":{"currency_code":"EUR","units":749,"nanos":990000000}},{"id":"5363865f-2266-40f9-a43f-4f3aba251524","name":"HM-BM1-XL","stock":"available","bandwidth":1000,"commercial_range":"high_memory","price_by_minute":{"currency_code":"EUR","units":2,"nanos":599900000},"price_by_month":{"currency_code":"EUR","units":1299,"nanos":990000000},"disk":[{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"}],"enable":true,"cpu":[{"name":"Intel + Gold 5120","cores":14,"threads":28,"frequency":2200}],"memory":[{"capacity":384,"type":"DDR4","frequency":2133,"ecc":true}],"quota_name":"bmaas_high","price_per_sixty_minutes":{"currency_code":"EUR","units":1,"nanos":499900000},"price_per_month":{"currency_code":"EUR","units":749,"nanos":990000000}},{"id":"5363865f-2266-40f9-a43f-4f3aba251524","name":"HM-BM1-XL","stock":"empty","bandwidth":1000,"commercial_range":"high_memory","price_by_minute":{"currency_code":"EUR","units":2,"nanos":599900000},"price_by_month":{"currency_code":"EUR","units":1299,"nanos":990000000},"disk":[{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"}],"enable":true,"cpu":[{"name":"Intel Xeon Gold 6140","cores":18,"threads":36,"frequency":2300},{"name":"Intel Xeon Gold 6140","cores":18,"threads":36,"frequency":2300}],"memory":[{"capacity":768,"type":"DDR4","frequency":2133,"ecc":true}],"quota_name":"bmaas_high","price_per_sixty_minutes":{"currency_code":"EUR","units":2,"nanos":599900000},"price_per_month":{"currency_code":"EUR","units":1299,"nanos":990000000}},{"id":"737f18c8-febc-4408-b69e-776bca0a3f48","name":"HC-BM1-S","stock":"available","bandwidth":1000,"commercial_range":"high_cpu","price_by_minute":{"currency_code":"EUR","units":0,"nanos":659900000},"price_by_month":{"currency_code":"EUR","units":329,"nanos":990000000},"disk":[{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"}],"enable":true,"cpu":[{"name":"Intel Xeon Silver 4114","cores":10,"threads":20,"frequency":2200},{"name":"Intel Xeon Silver 4114","cores":10,"threads":20,"frequency":2200}],"memory":[{"capacity":128,"type":"DDR4","frequency":2400,"ecc":true}],"quota_name":"bmaas_high","price_per_sixty_minutes":{"currency_code":"EUR","units":0,"nanos":659900000},"price_per_month":{"currency_code":"EUR","units":329,"nanos":990000000}},{"id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","name":"GP-BM1-S","stock":"available","bandwidth":500,"commercial_range":"general_purpose","price_by_minute":{"currency_code":"EUR","units":0,"nanos":240000000},"price_by_month":{"currency_code":"EUR","units":119,"nanos":990000000},"disk":[{"capacity":250,"type":"SSD"},{"capacity":250,"type":"SSD"}],"enable":true,"cpu":[{"name":"Intel - Xeon E3 1240v6","cores":4,"threads":8,"frequency":3700}],"memory":[{"capacity":32,"type":"DDR4","frequency":2133,"ecc":true}],"quota_name":"bmaas_gp","price_per_sixty_minutes":{"currency_code":"EUR","units":0,"nanos":240000000},"price_per_month":{"currency_code":"EUR","units":119,"nanos":990000000}},{"id":"8090d302-3545-4905-9cf3-bcb77a299f47","name":"GP-BM1-L","stock":"available","bandwidth":750,"commercial_range":"general_purpose","price_by_minute":{"currency_code":"EUR","units":0,"nanos":499900000},"price_by_month":{"currency_code":"EUR","units":249,"nanos":990000000},"disk":[{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"}],"enable":true,"cpu":[{"name":"AMD + Xeon E3 1240v6","cores":4,"threads":8,"frequency":3700}],"memory":[{"capacity":32,"type":"DDR4","frequency":2133,"ecc":true}],"quota_name":"bmaas_gp","price_per_sixty_minutes":{"currency_code":"EUR","units":0,"nanos":240000000},"price_per_month":{"currency_code":"EUR","units":119,"nanos":990000000}},{"id":"8090d302-3545-4905-9cf3-bcb77a299f47","name":"GP-BM1-L","stock":"empty","bandwidth":750,"commercial_range":"general_purpose","price_by_minute":{"currency_code":"EUR","units":0,"nanos":499900000},"price_by_month":{"currency_code":"EUR","units":249,"nanos":990000000},"disk":[{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"}],"enable":true,"cpu":[{"name":"AMD EPYC 7281","cores":16,"threads":32,"frequency":2100}],"memory":[{"capacity":96,"type":"DDR4","frequency":2133,"ecc":true}],"quota_name":"bmaas_gp","price_per_sixty_minutes":{"currency_code":"EUR","units":0,"nanos":499900000},"price_per_month":{"currency_code":"EUR","units":249,"nanos":990000000}},{"id":"964f9b38-577e-470f-a220-7d762f9e8672","name":"GP-BM1-M","stock":"available","bandwidth":500,"commercial_range":"general_purpose","price_by_minute":{"currency_code":"EUR","units":0,"nanos":399900000},"price_by_month":{"currency_code":"EUR","units":199,"nanos":990000000},"disk":[{"capacity":1024,"type":"SSD"},{"capacity":1024,"type":"SSD"},{"capacity":1024,"type":"SSD"}],"enable":true,"cpu":[{"name":"Intel Xeon E3 1240v6","cores":4,"threads":8,"frequency":3700}],"memory":[{"capacity":64,"type":"DDR4","frequency":2133,"ecc":true}],"quota_name":"bmaas_gp","price_per_sixty_minutes":{"currency_code":"EUR","units":0,"nanos":399900000},"price_per_month":{"currency_code":"EUR","units":199,"nanos":990000000}},{"id":"c452f76a-2cda-4a1b-9658-a16952dc5ff0","name":"HM-BM1-M","stock":"available","bandwidth":1000,"commercial_range":"high_memory","price_by_minute":{"currency_code":"EUR","units":0,"nanos":799900000},"price_by_month":{"currency_code":"EUR","units":399,"nanos":990000000},"disk":[{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"},{"capacity":1024,"type":"NVMe"}],"enable":true,"cpu":[{"name":"AMD EPYC 7401P","cores":24,"threads":48,"frequency":2000}],"memory":[{"capacity":256,"type":"DDR4","frequency":2133,"ecc":true}],"quota_name":"bmaas_high","price_per_sixty_minutes":{"currency_code":"EUR","units":0,"nanos":799900000},"price_per_month":{"currency_code":"EUR","units":399,"nanos":990000000}}]}' @@ -65,7 +65,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:50:24 GMT + - Fri, 24 Apr 2020 09:44:31 GMT Server: - scaleway_api Strict-Transport-Security: @@ -75,12 +75,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61ab7713-a4e4-47b7-b37e-94761097039e + - 39738c78-0a2f-4999-87cd-50d519c8cf40 status: 200 OK code: 200 duration: "" - request: - body: '{"offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","tags":null}' + body: '{"offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","tags":null}' form: {} headers: Content-Type: @@ -90,16 +90,16 @@ interactions: url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers method: POST response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:24.866581106Z","created_at":"2020-04-16T15:50:24.866581106Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:44:32.812410426Z","created_at":"2020-04-24T09:44:32.812410426Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "396" + - "437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:50:24 GMT + - Fri, 24 Apr 2020 09:44:32 GMT Server: - scaleway_api Strict-Transport-Security: @@ -109,7 +109,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f161086-7d6f-49e6-a22a-f6457e4b07d7 + - 001fbf4d-262c-4fa1-932a-7d30a0f1c3bc status: 200 OK code: 200 duration: "" @@ -119,19 +119,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:24.866581Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:44:32.812410Z","created_at":"2020-04-24T09:44:32.812410Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "390" + - "431" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:50:24 GMT + - Fri, 24 Apr 2020 09:44:32 GMT Server: - scaleway_api Strict-Transport-Security: @@ -141,7 +141,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c4eafd3-216a-4b26-9dd1-0aefaaf13415 + - c90e87d7-4e73-4522-8a7b-589b4c37b5cb status: 200 OK code: 200 duration: "" @@ -151,19 +151,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:44:36.638911Z","created_at":"2020-04-24T09:44:32.812410Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "390" + - "431" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:50:39 GMT + - Fri, 24 Apr 2020 09:44:47 GMT Server: - scaleway_api Strict-Transport-Security: @@ -173,7 +173,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29dae497-1e2b-4d10-bae0-0e345f3aef9a + - 8b692966-00d9-4266-af07-5b843d185821 status: 200 OK code: 200 duration: "" @@ -183,19 +183,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:44:36.638911Z","created_at":"2020-04-24T09:44:32.812410Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "390" + - "431" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:50:54 GMT + - Fri, 24 Apr 2020 09:45:02 GMT Server: - scaleway_api Strict-Transport-Security: @@ -205,7 +205,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba299b07-5169-4dcf-b734-0006148129bf + - 0350bb48-3248-4af6-b8b5-1340394fe5ef status: 200 OK code: 200 duration: "" @@ -215,19 +215,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:44:36.638911Z","created_at":"2020-04-24T09:44:32.812410Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "390" + - "431" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:51:09 GMT + - Fri, 24 Apr 2020 09:45:17 GMT Server: - scaleway_api Strict-Transport-Security: @@ -237,7 +237,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4b72854-def9-400f-bab9-167a5f1f9c30 + - 20581124-ae33-4a40-95d2-31174868221b status: 200 OK code: 200 duration: "" @@ -247,19 +247,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "390" + - "962" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:51:24 GMT + - Fri, 24 Apr 2020 09:45:32 GMT Server: - scaleway_api Strict-Transport-Security: @@ -269,445 +269,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e3be7b1-4791-4094-969b-4bc2e64ef0f2 + - c564e012-d2e8-4c93-b60b-54718abb186c status: 200 OK code: 200 duration: "" - request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 - method: GET - response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' - headers: - Content-Length: - - "390" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Apr 2020 15:51:39 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d64c9880-f736-4d97-ab31-2333dcc8f52d - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 - method: GET - response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' - headers: - Content-Length: - - "390" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Apr 2020 15:51:54 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c806ba7a-bcda-4ace-ae7b-afe3fff05879 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 - method: GET - response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' - headers: - Content-Length: - - "390" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Apr 2020 15:52:09 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bc932929-6560-445c-97e3-b7c891308075 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 - method: GET - response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' - headers: - Content-Length: - - "390" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Apr 2020 15:52:24 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fbe2fe1a-3133-46f5-a7dd-7e15041995c9 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 - method: GET - response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' - headers: - Content-Length: - - "390" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Apr 2020 15:52:40 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 06ca3354-18eb-45aa-b10e-e229edd541a7 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 - method: GET - response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' - headers: - Content-Length: - - "390" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Apr 2020 15:52:55 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1c3a1c61-8386-42c5-85f1-fd8830f2c520 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 - method: GET - response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' - headers: - Content-Length: - - "390" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Apr 2020 15:53:10 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 786a6170-d461-48c8-88fc-a56f9a9cc7e0 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 - method: GET - response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' - headers: - Content-Length: - - "390" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Apr 2020 15:53:25 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2e9feaef-a861-4e3f-8e0b-7a445a1ba6b1 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 - method: GET - response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' - headers: - Content-Length: - - "390" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Apr 2020 15:53:40 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2656b6b5-b974-4711-99dd-a55f6e6da0fb - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 - method: GET - response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' - headers: - Content-Length: - - "390" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Apr 2020 15:53:55 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5e267e06-39cc-4acb-a2f2-4d3f6018eff4 - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 - method: GET - response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' - headers: - Content-Length: - - "390" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Apr 2020 15:54:10 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9e84515e-ecc6-4507-92c4-504930ea163c - status: 200 OK - code: 200 - duration: "" -- request: - body: "" + body: '{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"]}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 - method: GET - response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' - headers: - Content-Length: - - "390" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Thu, 16 Apr 2020 15:54:25 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ea6c881f-f586-4e46-b646-ef67f8d4c08e - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 - method: GET - response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' - headers: - Content-Length: - - "390" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Apr 2020 15:54:40 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6ccfaf7b-676a-49ca-9847-af950efdab5c - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 - method: GET + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1/install + method: POST response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:50:25.431967Z","created_at":"2020-04-16T15:50:24.866581Z","status":"undelivered","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[],"domain":"","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"to_install"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "390" + - "1116" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:54:55 GMT + - Fri, 24 Apr 2020 09:45:32 GMT Server: - scaleway_api Strict-Transport-Security: @@ -717,7 +303,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58050516-eb93-45b7-b9fa-3e8422f9b290 + - 8d67f5ca-d83a-496c-8e76-b14b127a79d9 status: 200 OK code: 200 duration: "" @@ -727,53 +313,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":null,"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' - headers: - Content-Length: - - "921" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 16 Apr 2020 15:55:10 GMT - Server: - - scaleway_api - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0844e2cc-958c-4de0-a8a9-96e30c87615d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6/install - method: POST - response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"to_install"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"to_install"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "1075" + - "1116" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:55:10 GMT + - Fri, 24 Apr 2020 09:45:32 GMT Server: - scaleway_api Strict-Transport-Security: @@ -783,7 +335,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b1b3ae9-fcde-43f1-9da5-acff6c045a88 + - 7ea766a9-4c6c-469a-ad91-18942435c23a status: 200 OK code: 200 duration: "" @@ -793,19 +345,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"to_install"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "1075" + - "1116" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:55:10 GMT + - Fri, 24 Apr 2020 09:45:47 GMT Server: - scaleway_api Strict-Transport-Security: @@ -815,7 +367,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d5b804c-e08c-4236-ba2a-f68d54062880 + - bd88c392-acf6-420a-8395-98de86abceab status: 200 OK code: 200 duration: "" @@ -825,19 +377,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "1075" + - "1116" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:55:25 GMT + - Fri, 24 Apr 2020 09:46:03 GMT Server: - scaleway_api Strict-Transport-Security: @@ -847,7 +399,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c6b3346-eee8-4eb8-b6c0-b1bc1e8192e8 + - f8b324d4-6c4e-4270-90f9-ba875ecc75c5 status: 200 OK code: 200 duration: "" @@ -857,19 +409,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "1075" + - "1116" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:55:40 GMT + - Fri, 24 Apr 2020 09:46:18 GMT Server: - scaleway_api Strict-Transport-Security: @@ -879,7 +431,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28d8fb77-d367-4797-9464-13c953f0c72e + - 1d0d45da-2198-4be5-afce-4fc7dc8d7ac8 status: 200 OK code: 200 duration: "" @@ -889,19 +441,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "1075" + - "1116" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:55:56 GMT + - Fri, 24 Apr 2020 09:46:33 GMT Server: - scaleway_api Strict-Transport-Security: @@ -911,7 +463,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33e7f1be-40b2-464f-a79f-149fa114f293 + - 09d22e68-7275-4fa8-9e2d-274d5b82351a status: 200 OK code: 200 duration: "" @@ -921,19 +473,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "1075" + - "1116" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:56:11 GMT + - Fri, 24 Apr 2020 09:46:48 GMT Server: - scaleway_api Strict-Transport-Security: @@ -943,7 +495,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68482332-4f1c-4cce-b823-a7f4d5825e4c + - 3f1c4a25-737b-4cd0-988f-b7007bce0f6c status: 200 OK code: 200 duration: "" @@ -953,19 +505,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "1075" + - "1116" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:56:26 GMT + - Fri, 24 Apr 2020 09:47:03 GMT Server: - scaleway_api Strict-Transport-Security: @@ -975,7 +527,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96680c6c-8516-4c9d-b7e6-0a87a14dbad2 + - e478d095-aba7-49fb-b625-f5e302ff8629 status: 200 OK code: 200 duration: "" @@ -985,19 +537,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "1075" + - "1116" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:56:41 GMT + - Fri, 24 Apr 2020 09:47:18 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1007,7 +559,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fde7223-d2bf-4663-a8b8-1b2334cae15f + - 902f31c1-2e4a-4216-a1ef-4384347e572d status: 200 OK code: 200 duration: "" @@ -1017,19 +569,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "1075" + - "1116" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:56:56 GMT + - Fri, 24 Apr 2020 09:47:33 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1039,7 +591,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 653169aa-8356-4d2b-87ff-bc3b5b96795b + - a3475f49-9979-48c4-9a1b-9dea6058a69c status: 200 OK code: 200 duration: "" @@ -1049,19 +601,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "1075" + - "1116" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:57:11 GMT + - Fri, 24 Apr 2020 09:47:48 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1071,7 +623,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b4bc879-250c-4306-9f23-fa1d2c8ba11c + - 8490ff6c-6530-42cb-b30a-1c1a21ab6e71 status: 200 OK code: 200 duration: "" @@ -1081,19 +633,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_unknown","zone":"fr-par-2"}' headers: Content-Length: - - "1075" + - "1114" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:57:26 GMT + - Fri, 24 Apr 2020 09:48:03 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1103,7 +655,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 616c7b79-2f17-4ab9-afe3-5c687d62fd8d + - bba00db2-c490-46a0-bf55-2d47bce29ee1 status: 200 OK code: 200 duration: "" @@ -1113,19 +665,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_down","zone":"fr-par-2"}' headers: Content-Length: - - "1075" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:57:41 GMT + - Fri, 24 Apr 2020 09:48:18 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1135,7 +687,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0e9f4e6-3275-4eb0-ae88-e21cb8313543 + - c8bede48-3125-484d-9f57-462e0ccc3727 status: 200 OK code: 200 duration: "" @@ -1145,19 +697,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"pending","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"pending","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_down","zone":"fr-par-2"}' headers: Content-Length: - - "1075" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:57:56 GMT + - Fri, 24 Apr 2020 09:48:33 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1167,7 +719,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 707b7019-ffd9-4eec-910a-54584c347557 + - 9a31f87f-4746-4045-9e80-9b65ca62083e status: 200 OK code: 200 duration: "" @@ -1177,19 +729,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_down","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:58:11 GMT + - Fri, 24 Apr 2020 09:48:48 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1199,7 +751,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 291e8d8f-7fbb-4f0f-ba87-81feace6ac53 + - 05518c87-5aa6-4fe3-b921-92371cc71944 status: 200 OK code: 200 duration: "" @@ -1209,19 +761,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_down","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:58:26 GMT + - Fri, 24 Apr 2020 09:49:03 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1231,7 +783,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80a046c7-4028-4b9e-ba52-acf7510044bd + - d6452d79-09dd-49b4-9941-3138d7b28130 status: 200 OK code: 200 duration: "" @@ -1241,19 +793,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_down","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:58:41 GMT + - Fri, 24 Apr 2020 09:49:18 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1263,7 +815,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af17af80-e18f-4b87-91bc-e783b5ae482e + - cbefd82c-af8c-4f7e-8d00-45bb5e0a3b60 status: 200 OK code: 200 duration: "" @@ -1273,19 +825,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_down","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:58:56 GMT + - Fri, 24 Apr 2020 09:49:33 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1295,7 +847,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4845d71b-1260-45bd-a17c-14f4f434c643 + - 7e76cb5e-f8c1-4bf4-b51c-41798e841f6c status: 200 OK code: 200 duration: "" @@ -1305,19 +857,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_down","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:59:11 GMT + - Fri, 24 Apr 2020 09:49:48 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1327,7 +879,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db039d52-c7af-4105-9f19-27481fd9cf6c + - 33b34112-cdd7-461b-9e3d-bc940cd15ba3 status: 200 OK code: 200 duration: "" @@ -1337,19 +889,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_down","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:59:26 GMT + - Fri, 24 Apr 2020 09:50:03 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1359,7 +911,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 396b4d2f-8d2c-4861-ab9f-c474bc6f4597 + - f80e0eac-37a0-494e-978f-90139b1c900f status: 200 OK code: 200 duration: "" @@ -1369,19 +921,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_down","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:59:41 GMT + - Fri, 24 Apr 2020 09:50:18 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1391,7 +943,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75a0e629-8369-4490-832a-1fa2286f8e40 + - a9297605-eff3-471a-80be-d0f4d9971d87 status: 200 OK code: 200 duration: "" @@ -1401,19 +953,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_down","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 15:59:56 GMT + - Fri, 24 Apr 2020 09:50:33 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1423,7 +975,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65fd159c-6252-49b1-b0e6-daf31de6ac1c + - 143b6add-fb4b-4abc-8f96-fa7bf2af6a08 status: 200 OK code: 200 duration: "" @@ -1433,19 +985,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_down","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:00:11 GMT + - Fri, 24 Apr 2020 09:50:49 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1455,7 +1007,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01dd637b-2a26-4466-b508-dccb7f016985 + - d588c4f8-d785-4025-86df-94ce7b683a19 status: 200 OK code: 200 duration: "" @@ -1465,19 +1017,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_down","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:00:26 GMT + - Fri, 24 Apr 2020 09:51:04 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1487,7 +1039,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f0874fd-10be-4c65-9bfa-e25d53fe8c07 + - 407593f8-f1f4-43fa-82fa-ee5b53763da4 status: 200 OK code: 200 duration: "" @@ -1497,19 +1049,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:00:41 GMT + - Fri, 24 Apr 2020 09:51:19 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1519,7 +1071,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6b2665a-94dc-4574-945e-f5f3a31afde4 + - c7f62f7c-dd42-42fb-8698-9651699e6b6f status: 200 OK code: 200 duration: "" @@ -1529,19 +1081,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:00:56 GMT + - Fri, 24 Apr 2020 09:51:34 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1551,7 +1103,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c9d6ef6-3915-4c81-af1e-65b7ca6e7fc0 + - 7b816b3d-248f-4e36-b8db-dd6245d21f62 status: 200 OK code: 200 duration: "" @@ -1561,19 +1113,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:01:11 GMT + - Fri, 24 Apr 2020 09:51:49 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1583,7 +1135,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ffb7687-284d-42f5-b2fb-442539637e47 + - 952f3040-ab5f-48fb-bf13-b27fe545f1c8 status: 200 OK code: 200 duration: "" @@ -1593,19 +1145,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:01:26 GMT + - Fri, 24 Apr 2020 09:52:04 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1615,7 +1167,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3884125a-73ef-4635-8b21-bb783c5794b7 + - 8aade976-5574-43a5-b4b6-8b20413f98cd status: 200 OK code: 200 duration: "" @@ -1625,19 +1177,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:01:41 GMT + - Fri, 24 Apr 2020 09:52:19 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1647,7 +1199,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - daf01cf8-18a9-4fe8-bc89-90cba456686a + - a00ea7ba-8928-467e-9c1f-9f7bcd992811 status: 200 OK code: 200 duration: "" @@ -1657,19 +1209,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:01:56 GMT + - Fri, 24 Apr 2020 09:52:34 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1679,7 +1231,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23f4a1c7-0394-432b-95bd-e2f73cf51218 + - b961435c-f430-4585-b267-41bcf13cd066 status: 200 OK code: 200 duration: "" @@ -1689,19 +1241,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:02:11 GMT + - Fri, 24 Apr 2020 09:52:49 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1711,7 +1263,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d1282a3-046b-4d69-9498-3e0423a912f7 + - 905b7c37-d0a8-451f-bbcd-bc4d0b155017 status: 200 OK code: 200 duration: "" @@ -1721,19 +1273,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:02:27 GMT + - Fri, 24 Apr 2020 09:53:04 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1743,7 +1295,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01f83287-90dd-4d04-8011-9522085a32e2 + - 93a6dbd3-3864-4db0-9631-ba637e229835 status: 200 OK code: 200 duration: "" @@ -1753,19 +1305,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:02:42 GMT + - Fri, 24 Apr 2020 09:53:19 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1775,7 +1327,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 742bc197-16d3-43cc-8c8c-c28913454673 + - 3561acdd-482d-44f0-aa1d-b660f5cca7ef status: 200 OK code: 200 duration: "" @@ -1785,19 +1337,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:02:57 GMT + - Fri, 24 Apr 2020 09:53:34 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1807,7 +1359,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f65e8e8-6be4-4bb7-a2ac-b798f818e2b9 + - 2eb19829-1e6c-48c8-87dc-a4fa4453c1c4 status: 200 OK code: 200 duration: "" @@ -1817,19 +1369,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:03:12 GMT + - Fri, 24 Apr 2020 09:53:49 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1839,7 +1391,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b79e4439-70ad-4886-9805-4534464939a0 + - 9ec74cd8-72d5-402a-88ec-2291852b1062 status: 200 OK code: 200 duration: "" @@ -1849,19 +1401,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:03:27 GMT + - Fri, 24 Apr 2020 09:54:05 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1871,7 +1423,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c26d8df7-3651-4d34-a764-a27c7bf75db2 + - b45b6d7d-436b-4405-8afc-1b6d12e1941d status: 200 OK code: 200 duration: "" @@ -1881,19 +1433,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:03:42 GMT + - Fri, 24 Apr 2020 09:54:20 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1903,7 +1455,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81c6d9a1-9e04-43f6-a0b0-47bc7c1d9ad2 + - 3be00fb9-fcb4-41ae-8baa-9823d8d4a769 status: 200 OK code: 200 duration: "" @@ -1913,19 +1465,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:03:57 GMT + - Fri, 24 Apr 2020 09:54:35 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1935,7 +1487,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe9572fc-d6a8-45c1-945f-e92a4399bafc + - 19aa2607-d517-4483-a0b9-47a97efc2565 status: 200 OK code: 200 duration: "" @@ -1945,19 +1497,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:04:12 GMT + - Fri, 24 Apr 2020 09:54:50 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1967,7 +1519,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8f465ce-55ea-422c-9d9a-ff40fffb3e29 + - 178c8e27-c4dc-49d1-94e9-1f2f4ecf1849 status: 200 OK code: 200 duration: "" @@ -1977,19 +1529,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:04:27 GMT + - Fri, 24 Apr 2020 09:55:05 GMT Server: - scaleway_api Strict-Transport-Security: @@ -1999,7 +1551,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 585a4554-a80a-46ef-97ac-9c5e174127d1 + - e73965c7-033d-47f7-8323-e723de708275 status: 200 OK code: 200 duration: "" @@ -2009,19 +1561,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:04:42 GMT + - Fri, 24 Apr 2020 09:55:20 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2031,7 +1583,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11a31ffc-3a77-487a-bb04-02feea3147a3 + - c3851c7e-5bbc-46fe-a8d9-0b6885d348d0 status: 200 OK code: 200 duration: "" @@ -2041,19 +1593,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:04:57 GMT + - Fri, 24 Apr 2020 09:55:35 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2063,7 +1615,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a15055b2-0714-4db6-a8b8-14316612a13c + - b62c5a47-a33d-40da-ab76-dd6b2f548f50 status: 200 OK code: 200 duration: "" @@ -2073,19 +1625,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:05:12 GMT + - Fri, 24 Apr 2020 09:55:50 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2095,7 +1647,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 907efc16-31cf-4df7-b5f3-e3ac1f4df89c + - 7e3e2d9b-d7ff-4f03-aa6f-875dfa0bbcb8 status: 200 OK code: 200 duration: "" @@ -2105,19 +1657,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:05:27 GMT + - Fri, 24 Apr 2020 09:56:05 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2127,7 +1679,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da1950df-4b9f-41f6-b391-0decfd3bcca0 + - c0b2a1fa-0533-4f42-b7a1-93838afd11f0 status: 200 OK code: 200 duration: "" @@ -2137,19 +1689,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:05:42 GMT + - Fri, 24 Apr 2020 09:56:20 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2159,7 +1711,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e7de06f-1f06-4b08-8300-af9cd90972ac + - 76f96e9f-66ae-46f5-b4b1-4cbea5502be3 status: 200 OK code: 200 duration: "" @@ -2169,19 +1721,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:05:57 GMT + - Fri, 24 Apr 2020 09:56:35 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2191,7 +1743,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3073b7e-1c72-4de4-9913-642223d0a528 + - dc6dcb93-6d7c-42d2-ae27-3d464cce8c4a status: 200 OK code: 200 duration: "" @@ -2201,19 +1753,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:06:12 GMT + - Fri, 24 Apr 2020 09:56:50 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2223,7 +1775,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c858e459-f88e-4686-aa03-617ace6b1289 + - de1742c2-52ae-462e-9335-a7f6842b50e5 status: 200 OK code: 200 duration: "" @@ -2233,19 +1785,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:06:27 GMT + - Fri, 24 Apr 2020 09:57:05 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2255,7 +1807,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0d36238-21a0-4e62-a6ca-b23a6cfd3654 + - 851fd90a-5a27-47d4-a5cf-62ccb95efec5 status: 200 OK code: 200 duration: "" @@ -2265,19 +1817,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:06:42 GMT + - Fri, 24 Apr 2020 09:57:20 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2287,7 +1839,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1a87d2b-5cb0-4e28-9ff5-4fd4f722ac2d + - bfdb7f6b-9046-43af-9ddc-3ea1a6e055b0 status: 200 OK code: 200 duration: "" @@ -2297,19 +1849,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"installing"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1073" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:06:57 GMT + - Fri, 24 Apr 2020 09:57:35 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2319,7 +1871,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc3d6f63-20fe-4b72-a489-49cb1da4dfc7 + - ad513d63-cd38-4f52-9e74-bca5dcc7752b status: 200 OK code: 200 duration: "" @@ -2329,19 +1881,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: GET response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T15:55:10.320473Z","created_at":"2020-04-16T15:50:24.866581Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"completed"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:45:21.148343Z","created_at":"2020-04-24T09:44:32.812410Z","status":"ready","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"completed"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1072" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:07:12 GMT + - Fri, 24 Apr 2020 09:57:50 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2351,7 +1903,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa3a327e-3f9a-4091-a9c0-06cdbe733f0b + - ec992596-1411-445e-8d79-55eca3c2b74f status: 200 OK code: 200 duration: "" @@ -2361,19 +1913,19 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.6+dev (go1.14.2; darwin; amd64) cli-e2e-test - url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/2cf740a1-07c7-46a3-ab6d-68918fa962c6 + url: https://api.scaleway.com/baremetal/v1alpha1/zones/fr-par-2/servers/acc9e2cf-8828-48a7-bf3a-11744e2a33c1 method: DELETE response: - body: '{"id":"2cf740a1-07c7-46a3-ab6d-68918fa962c6","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-busy-gauss","description":"","updated_at":"2020-04-16T16:07:13.237739Z","created_at":"2020-04-16T15:50:24.866581Z","status":"deleting","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"completed"},"tags":[],"ips":[{"id":"4aa0ab37-cf13-4ada-b5be-b4dd2edaa227","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:3540","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"cbbb8d5b-d91f-4314-8a93-38e5aae566af","address":"51.159.31.16","reverse":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud","boot_type":"normal","zone":"fr-par-2"}' + body: '{"id":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","name":"cli-bm-suspicious-cerf","description":"","updated_at":"2020-04-24T09:57:51.222740Z","created_at":"2020-04-24T09:44:32.812410Z","status":"deleting","offer_id":"7fde3890-9787-488c-ac89-c4e00a4e5f83","install":{"os_id":"d859aa89-8b4a-4551-af42-ff7c0c27260a","hostname":"test-install-server","ssh_key_ids":["f06d9273-385e-4747-806c-d4673c410f9d"],"status":"completed"},"tags":[],"ips":[{"id":"7182d927-3fff-4805-95a5-578ffd35e452","address":"2001:0bc8:6005:001b:dac4:97ff:fe2a:2f10","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv6","reverse_status":"active","reverse_status_message":null},{"id":"a36f0c0a-9c0d-4e8a-b7c5-490477c6457a","address":"51.159.31.34","reverse":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","version":"Ipv4","reverse_status":"active","reverse_status_message":null}],"domain":"acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud","boot_type":"normal","ping_status":"ping_status_up","zone":"fr-par-2"}' headers: Content-Length: - - "1075" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 16 Apr 2020 16:07:12 GMT + - Fri, 24 Apr 2020 09:57:50 GMT Server: - scaleway_api Strict-Transport-Security: @@ -2383,7 +1935,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb4fb47d-1384-48fd-befe-a565513ef7dd + - 28c0551a-851f-41a0-8fea-1d726abd0b0f status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.stdout.golden b/internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.stdout.golden index 3648b3d87d..a8e17c60ea 100644 --- a/internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.stdout.golden +++ b/internal/namespaces/baremetal/v1alpha1/testdata/test-install-server-simple-with-id.stdout.golden @@ -1,6 +1,6 @@ -id 2cf740a1-07c7-46a3-ab6d-68918fa962c6 +id acc9e2cf-8828-48a7-bf3a-11744e2a33c1 organization-id 951df375-e094-4d26-97c1-ba548eeb9c42 -name cli-bm-busy-gauss +name cli-bm-suspicious-cerf description - updated-at few seconds ago created-at few seconds ago @@ -10,16 +10,17 @@ install.os-id d859aa89-8b4a-4551-af42-ff7c0c27260a install.hostname test-install-server install.ssh-key-ids.0 f06d9273-385e-4747-806c-d4673c410f9d install.status completed -ips.0.id 4aa0ab37-cf13-4ada-b5be-b4dd2edaa227 -ips.0.address 2001:bc8:6005:1b:dac4:97ff:fe2a:3540 -ips.0.reverse 2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud +ips.0.id 7182d927-3fff-4805-95a5-578ffd35e452 +ips.0.address 2001:bc8:6005:1b:dac4:97ff:fe2a:2f10 +ips.0.reverse acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud ips.0.version Ipv6 ips.0.reverse-status active -ips.1.id cbbb8d5b-d91f-4314-8a93-38e5aae566af -ips.1.address 51.159.31.16 -ips.1.reverse 2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud +ips.1.id a36f0c0a-9c0d-4e8a-b7c5-490477c6457a +ips.1.address 51.159.31.34 +ips.1.reverse acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud ips.1.version Ipv4 ips.1.reverse-status active -domain 2cf740a1-07c7-46a3-ab6d-68918fa962c6.fr-par-2.baremetal.scw.cloud +domain acc9e2cf-8828-48a7-bf3a-11744e2a33c1.fr-par-2.baremetal.scw.cloud boot-type normal zone fr-par-2 +ping-status ping_status_up From bcb1995f559be9fc2edd162bd4c0712b1a751fe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Fri, 24 Apr 2020 12:59:56 +0200 Subject: [PATCH 10/13] Update internal/namespaces/baremetal/v1alpha1/custom_server_install.go Co-Authored-By: Patrik --- internal/namespaces/baremetal/v1alpha1/custom_server_install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/namespaces/baremetal/v1alpha1/custom_server_install.go b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go index eb1fbdfd33..e3188c58de 100644 --- a/internal/namespaces/baremetal/v1alpha1/custom_server_install.go +++ b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go @@ -11,7 +11,7 @@ func serverInstallBuilder(c *core.Command) *core.Command { c.Examples = []*core.Example{ { Short: "Install an OS on a given server", - Request: `{"os-id":"11111111-1111-1111-1111-111111111111","server-id":"11111111-1111-1111-1111-111111111111"}`, + Request: `{"os_id":"11111111-1111-1111-1111-111111111111","server_id":"11111111-1111-1111-1111-111111111111"}`, }, } From a33d5995ffcde60e4da3cda6378829920bcf7076 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Fri, 24 Apr 2020 13:09:08 +0200 Subject: [PATCH 11/13] FIx --- .../test-all-usage-baremetal-server-install-usage.stderr.golden | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden index 7fd0386ecb..59d03deec6 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden @@ -5,7 +5,7 @@ USAGE: EXAMPLES: Install an OS on a given server - scw baremetal server install + scw baremetal server install 11111111-1111-1111-1111-111111111111 os-id=11111111-1111-1111-1111-111111111111 ARGS: server-id Server ID to install From 247c2f7281a0c841a3db5f547ba7c0ca824fd074 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Fri, 24 Apr 2020 13:36:25 +0200 Subject: [PATCH 12/13] Fix --- .../baremetal/v1alpha1/custom_server_install.go | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/internal/namespaces/baremetal/v1alpha1/custom_server_install.go b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go index e3188c58de..a04bb0e914 100644 --- a/internal/namespaces/baremetal/v1alpha1/custom_server_install.go +++ b/internal/namespaces/baremetal/v1alpha1/custom_server_install.go @@ -8,23 +8,6 @@ import ( ) func serverInstallBuilder(c *core.Command) *core.Command { - c.Examples = []*core.Example{ - { - Short: "Install an OS on a given server", - Request: `{"os_id":"11111111-1111-1111-1111-111111111111","server_id":"11111111-1111-1111-1111-111111111111"}`, - }, - } - - c.SeeAlsos = []*core.SeeAlso{ - { - Short: "List OS (useful to get all OS IDs)", - Command: "scw baremetal os list", - }, - { - Short: "Create a server", - Command: "scw baremetal server create", - }, - } c.WaitFunc = func(ctx context.Context, argsI, respI interface{}) (interface{}, error) { api := baremetal.NewAPI(core.ExtractClient(ctx)) From 1ffd1ee3bda23e8c9a47d34d7cbf5e71c70b4c60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Fri, 24 Apr 2020 13:37:37 +0200 Subject: [PATCH 13/13] Fix --- ...usage-baremetal-server-install-usage.stderr.golden | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden b/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden index 59d03deec6..5539762c89 100644 --- a/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden +++ b/cmd/scw/testdata/test-all-usage-baremetal-server-install-usage.stderr.golden @@ -3,10 +3,6 @@ Install an OS on the server associated with the given ID. USAGE: scw baremetal server install [arg=value ...] -EXAMPLES: - Install an OS on a given server - scw baremetal server install 11111111-1111-1111-1111-111111111111 os-id=11111111-1111-1111-1111-111111111111 - ARGS: server-id Server ID to install os-id ID of the OS to install on the server @@ -22,10 +18,3 @@ GLOBAL FLAGS: -D, --debug Enable debug mode -o, --output string Output format: json or human -p, --profile string The config profile to use - -SEE ALSO: - # List OS (useful to get all OS IDs) - scw baremetal os list - - # Create a server - scw baremetal server create