diff --git a/internal/acctest/acctest.go b/internal/acctest/acctest.go index bbd230a41..88b4c06e3 100644 --- a/internal/acctest/acctest.go +++ b/internal/acctest/acctest.go @@ -32,6 +32,7 @@ type TestTools struct { } var foldersUsingVCRv4 = []string{ + "account", "container", "instance", "k8s", diff --git a/internal/services/account/project_data_source_test.go b/internal/services/account/project_data_source_test.go index add352b70..cd5153b2a 100644 --- a/internal/services/account/project_data_source_test.go +++ b/internal/services/account/project_data_source_test.go @@ -2,6 +2,7 @@ package account_test import ( "fmt" + "strconv" "testing" "github.com/hashicorp/terraform-plugin-testing/helper/resource" @@ -125,6 +126,11 @@ func TestAccDataSourceProject_List(t *testing.T) { orgID = dummyOrgID } + projectID, projectIDExists := tt.Meta.ScwClient().GetDefaultProjectID() + if !projectIDExists { + t.Skip("no default project ID") + } + resource.ParallelTest(t, resource.TestCase{ ProtoV6ProviderFactories: tt.ProviderFactories, CheckDestroy: resource.ComposeTestCheckFunc( @@ -137,11 +143,21 @@ func TestAccDataSourceProject_List(t *testing.T) { organization_id = "%s" }`, orgID), Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttr("data.scaleway_account_projects.projects", "projects.#", "8"), - resource.TestCheckResourceAttr("data.scaleway_account_projects.projects", "projects.0.id", "6867048b-fe12-4e96-835e-41c79a39604b"), - resource.TestCheckResourceAttr("data.scaleway_account_projects.projects", "projects.1.id", "8cc8dd4d-a094-407a-89a3-9d004674e936"), + resource.TestCheckResourceAttrSet("data.scaleway_account_projects.projects", "projects.#"), + resource.TestCheckResourceAttrWith("data.scaleway_account_projects.projects", "projects.#", func(value string) error { + count, err := strconv.Atoi(value) + if err != nil { + return err + } + + if count < 1 { + return fmt.Errorf("expected at least one project, got %d", count) + } + + return nil + }), + resource.TestCheckResourceAttr("data.scaleway_account_projects.projects", "projects.0.id", projectID), resource.TestCheckResourceAttr("data.scaleway_account_projects.projects", "projects.0.name", "default"), - resource.TestCheckResourceAttr("data.scaleway_account_projects.projects", "projects.1.name", "tf_tests_container_trigger_sqs"), ), }, }, diff --git a/internal/services/account/testdata/data-source-project-basic.cassette.yaml b/internal/services/account/testdata/data-source-project-basic.cassette.yaml index 684fba30f..3e5ea2135 100644 --- a/internal/services/account/testdata/data-source-project-basic.cassette.yaml +++ b/internal/services/account/testdata/data-source-project-basic.cassette.yaml @@ -1,787 +1,537 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 119 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-tests-terraform-account-project","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 270 - uncompressed: false - body: '{"created_at":"2025-09-05T13:45:48.808194Z","description":"","id":"3ed6e127-b176-49b8-8c79-e26a62ed727f","name":"tf-tests-terraform-account-project","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","qualification":null,"updated_at":"2025-09-05T13:45:48.808194Z"}' - headers: - Content-Length: - - "270" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - de4b4fe7-9c4c-4598-aeed-f49509a6950e - status: 200 OK - code: 200 - duration: 537.570417ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/3ed6e127-b176-49b8-8c79-e26a62ed727f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 315 - uncompressed: false - body: '{"created_at":"2025-09-05T13:45:48.808194Z","description":"","id":"3ed6e127-b176-49b8-8c79-e26a62ed727f","name":"tf-tests-terraform-account-project","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-09-05T13:45:48.808194Z"}' - headers: - Content-Length: - - "315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 569d84bf-8ea1-4548-952d-cefba3e4fc97 - status: 200 OK - code: 200 - duration: 86.175ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/3ed6e127-b176-49b8-8c79-e26a62ed727f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 315 - uncompressed: false - body: '{"created_at":"2025-09-05T13:45:48.808194Z","description":"","id":"3ed6e127-b176-49b8-8c79-e26a62ed727f","name":"tf-tests-terraform-account-project","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-09-05T13:45:48.808194Z"}' - headers: - Content-Length: - - "315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 61fdb29c-10d1-4ebb-977b-f710dfa865fb - status: 200 OK - code: 200 - duration: 81.78025ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=tf-tests-terraform-account-project&order_by=created_at_asc&organization_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 346 - uncompressed: false - body: '{"projects":[{"created_at":"2025-09-05T13:45:48.808194Z","description":"","id":"3ed6e127-b176-49b8-8c79-e26a62ed727f","name":"tf-tests-terraform-account-project","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-09-05T13:45:48.808194Z"}],"total_count":1}' - headers: - Content-Length: - - "346" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e0bc46fb-8356-4b4a-9bb8-e60296944e98 - status: 200 OK - code: 200 - duration: 88.579125ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/3ed6e127-b176-49b8-8c79-e26a62ed727f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 315 - uncompressed: false - body: '{"created_at":"2025-09-05T13:45:48.808194Z","description":"","id":"3ed6e127-b176-49b8-8c79-e26a62ed727f","name":"tf-tests-terraform-account-project","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-09-05T13:45:48.808194Z"}' - headers: - Content-Length: - - "315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4ebf7130-6c4f-4cf3-a0cd-440f94769b9b - status: 200 OK - code: 200 - duration: 81.561625ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=tf-tests-terraform-account-project&order_by=created_at_asc&organization_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 346 - uncompressed: false - body: '{"projects":[{"created_at":"2025-09-05T13:45:48.808194Z","description":"","id":"3ed6e127-b176-49b8-8c79-e26a62ed727f","name":"tf-tests-terraform-account-project","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-09-05T13:45:48.808194Z"}],"total_count":1}' - headers: - Content-Length: - - "346" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3438b087-d932-4b80-b049-87c15608f42f - status: 200 OK - code: 200 - duration: 74.470875ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/3ed6e127-b176-49b8-8c79-e26a62ed727f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 315 - uncompressed: false - body: '{"created_at":"2025-09-05T13:45:48.808194Z","description":"","id":"3ed6e127-b176-49b8-8c79-e26a62ed727f","name":"tf-tests-terraform-account-project","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-09-05T13:45:48.808194Z"}' - headers: - Content-Length: - - "315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 437e701f-381f-4d78-ab28-4e186c6d47e2 - status: 200 OK - code: 200 - duration: 76.248166ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/3ed6e127-b176-49b8-8c79-e26a62ed727f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 315 - uncompressed: false - body: '{"created_at":"2025-09-05T13:45:48.808194Z","description":"","id":"3ed6e127-b176-49b8-8c79-e26a62ed727f","name":"tf-tests-terraform-account-project","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-09-05T13:45:48.808194Z"}' - headers: - Content-Length: - - "315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bcc37677-36ce-49d1-bc1b-2a78ae5691d5 - status: 200 OK - code: 200 - duration: 71.692625ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/3ed6e127-b176-49b8-8c79-e26a62ed727f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 315 - uncompressed: false - body: '{"created_at":"2025-09-05T13:45:48.808194Z","description":"","id":"3ed6e127-b176-49b8-8c79-e26a62ed727f","name":"tf-tests-terraform-account-project","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-09-05T13:45:48.808194Z"}' - headers: - Content-Length: - - "315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 11364f73-ee1c-4d54-a63f-ac06c84ae3be - status: 200 OK - code: 200 - duration: 84.399875ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/3ed6e127-b176-49b8-8c79-e26a62ed727f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 315 - uncompressed: false - body: '{"created_at":"2025-09-05T13:45:48.808194Z","description":"","id":"3ed6e127-b176-49b8-8c79-e26a62ed727f","name":"tf-tests-terraform-account-project","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-09-05T13:45:48.808194Z"}' - headers: - Content-Length: - - "315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cd7074f9-9f0b-4732-8801-da44e7922162 - status: 200 OK - code: 200 - duration: 75.140583ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=tf-tests-terraform-account-project&order_by=created_at_asc&organization_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 346 - uncompressed: false - body: '{"projects":[{"created_at":"2025-09-05T13:45:48.808194Z","description":"","id":"3ed6e127-b176-49b8-8c79-e26a62ed727f","name":"tf-tests-terraform-account-project","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-09-05T13:45:48.808194Z"}],"total_count":1}' - headers: - Content-Length: - - "346" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 93150bd6-67a8-474b-83ad-db2e21f416f9 - status: 200 OK - code: 200 - duration: 79.834834ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/3ed6e127-b176-49b8-8c79-e26a62ed727f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 315 - uncompressed: false - body: '{"created_at":"2025-09-05T13:45:48.808194Z","description":"","id":"3ed6e127-b176-49b8-8c79-e26a62ed727f","name":"tf-tests-terraform-account-project","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-09-05T13:45:48.808194Z"}' - headers: - Content-Length: - - "315" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7375c28a-b8c6-4cec-b2b1-89aa7bf4e423 - status: 200 OK - code: 200 - duration: 79.94875ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/3ed6e127-b176-49b8-8c79-e26a62ed727f - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6e0214ae-280a-4a9b-b6c8-8d615611d7fe - status: 204 No Content - code: 204 - duration: 1.34286625s - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/3ed6e127-b176-49b8-8c79-e26a62ed727f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 131 - uncompressed: false - body: '{"message":"resource is not found","resource":"project_id","resource_id":"3ed6e127-b176-49b8-8c79-e26a62ed727f","type":"not_found"}' - headers: - Content-Length: - - "131" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - abe32176-1c64-4131-a784-44f4cc4265db - status: 404 Not Found - code: 404 - duration: 66.987166ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/3ed6e127-b176-49b8-8c79-e26a62ed727f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 131 - uncompressed: false - body: '{"message":"resource is not found","resource":"project_id","resource_id":"3ed6e127-b176-49b8-8c79-e26a62ed727f","type":"not_found"}' - headers: - Content-Length: - - "131" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e55300e2-ac4f-4161-9724-3a0e9c6f7d55 - status: 404 Not Found - code: 404 - duration: 53.951542ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/3ed6e127-b176-49b8-8c79-e26a62ed727f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 131 - uncompressed: false - body: '{"message":"resource is not found","resource":"project_id","resource_id":"3ed6e127-b176-49b8-8c79-e26a62ed727f","type":"not_found"}' - headers: - Content-Length: - - "131" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 05 Sep 2025 13:45:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0bc549dd-b813-4a44-abac-20c3a1f6dde2 - status: 404 Not Found - code: 404 - duration: 57.995209ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 119 + host: api.scaleway.com + body: "{\"name\":\"tf-tests-terraform-account-project\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 276 + body: "{\"id\":\"d660e627-2bff-4618-b736-922141374ad2\", \"name\":\"tf-tests-terraform-account-project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.395793Z\", \"updated_at\":\"2025-11-17T10:06:39.395793Z\", \"description\":\"\", \"qualification\":null}" + headers: + Content-Length: + - "276" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - b0ffeddb-0e27-413b-959d-f9247308f997 + status: 200 OK + code: 200 + duration: 519.182285ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/d660e627-2bff-4618-b736-922141374ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 321 + body: "{\"id\":\"d660e627-2bff-4618-b736-922141374ad2\", \"name\":\"tf-tests-terraform-account-project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.395793Z\", \"updated_at\":\"2025-11-17T10:06:39.395793Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "321" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 4a624076-1e5e-42c6-859f-05ea458fd648 + status: 200 OK + code: 200 + duration: 260.769008ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/d660e627-2bff-4618-b736-922141374ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 321 + body: "{\"id\":\"d660e627-2bff-4618-b736-922141374ad2\", \"name\":\"tf-tests-terraform-account-project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.395793Z\", \"updated_at\":\"2025-11-17T10:06:39.395793Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "321" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 9d26d989-7273-4491-84eb-cb8ae3d36830 + status: 200 OK + code: 200 + duration: 239.939377ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf-tests-terraform-account-project + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=tf-tests-terraform-account-project&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"total_count\":1, \"projects\":[{\"id\":\"d660e627-2bff-4618-b736-922141374ad2\", \"name\":\"tf-tests-terraform-account-project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.395793Z\", \"updated_at\":\"2025-11-17T10:06:39.395793Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}]}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 07bb8098-1d08-4bd3-87d5-1df42b42601e + status: 200 OK + code: 200 + duration: 270.296562ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/d660e627-2bff-4618-b736-922141374ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 321 + body: "{\"id\":\"d660e627-2bff-4618-b736-922141374ad2\", \"name\":\"tf-tests-terraform-account-project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.395793Z\", \"updated_at\":\"2025-11-17T10:06:39.395793Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "321" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 63a1d341-5d60-4ef3-867f-00cc67b80dc0 + status: 200 OK + code: 200 + duration: 289.3716ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf-tests-terraform-account-project + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=tf-tests-terraform-account-project&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"total_count\":1, \"projects\":[{\"id\":\"d660e627-2bff-4618-b736-922141374ad2\", \"name\":\"tf-tests-terraform-account-project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.395793Z\", \"updated_at\":\"2025-11-17T10:06:39.395793Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}]}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 4ff2cfb1-e048-4954-a4aa-20fe8ab96b9a + status: 200 OK + code: 200 + duration: 142.478913ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/d660e627-2bff-4618-b736-922141374ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 321 + body: "{\"id\":\"d660e627-2bff-4618-b736-922141374ad2\", \"name\":\"tf-tests-terraform-account-project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.395793Z\", \"updated_at\":\"2025-11-17T10:06:39.395793Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "321" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - fb5ee6ba-9b72-40b0-be34-5b9a575bca6f + status: 200 OK + code: 200 + duration: 249.74491ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/d660e627-2bff-4618-b736-922141374ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 321 + body: "{\"id\":\"d660e627-2bff-4618-b736-922141374ad2\", \"name\":\"tf-tests-terraform-account-project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.395793Z\", \"updated_at\":\"2025-11-17T10:06:39.395793Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "321" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - b11a65c9-ef72-40c4-98b6-22b601268dd4 + status: 200 OK + code: 200 + duration: 222.149607ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/d660e627-2bff-4618-b736-922141374ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 321 + body: "{\"id\":\"d660e627-2bff-4618-b736-922141374ad2\", \"name\":\"tf-tests-terraform-account-project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.395793Z\", \"updated_at\":\"2025-11-17T10:06:39.395793Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "321" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - dd8dffc4-e458-49d3-b69d-dd09d8f56bee + status: 200 OK + code: 200 + duration: 330.753832ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf-tests-terraform-account-project + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=tf-tests-terraform-account-project&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"total_count\":1, \"projects\":[{\"id\":\"d660e627-2bff-4618-b736-922141374ad2\", \"name\":\"tf-tests-terraform-account-project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.395793Z\", \"updated_at\":\"2025-11-17T10:06:39.395793Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}]}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 9d04bf82-44c1-43b1-9185-c7e4ee37606a + status: 200 OK + code: 200 + duration: 121.319084ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/d660e627-2bff-4618-b736-922141374ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 321 + body: "{\"id\":\"d660e627-2bff-4618-b736-922141374ad2\", \"name\":\"tf-tests-terraform-account-project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.395793Z\", \"updated_at\":\"2025-11-17T10:06:39.395793Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "321" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - a703cafa-038f-4e7d-be66-58514920a0cc + status: 200 OK + code: 200 + duration: 252.942537ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/d660e627-2bff-4618-b736-922141374ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 321 + body: "{\"id\":\"d660e627-2bff-4618-b736-922141374ad2\", \"name\":\"tf-tests-terraform-account-project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.395793Z\", \"updated_at\":\"2025-11-17T10:06:39.395793Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "321" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 6d05f929-e639-48d9-a485-566c6190b1a7 + status: 200 OK + code: 200 + duration: 209.766821ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/d660e627-2bff-4618-b736-922141374ad2 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 3bbcce64-4fd7-444d-9def-9527312f5edb + status: 204 No Content + code: 204 + duration: 1.659162206s +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/d660e627-2bff-4618-b736-922141374ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 131 + body: "{\"message\":\"resource is not found\",\"resource\":\"project_id\",\"resource_id\":\"d660e627-2bff-4618-b736-922141374ad2\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "131" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 811f5394-fac1-4fbe-a9e9-0ba632a4e4f1 + status: 404 Not Found + code: 404 + duration: 408.440833ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/d660e627-2bff-4618-b736-922141374ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 131 + body: "{\"message\":\"resource is not found\",\"resource\":\"project_id\",\"resource_id\":\"d660e627-2bff-4618-b736-922141374ad2\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "131" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 6b1a85ce-a182-42ab-8815-fcc8428c81e6 + status: 404 Not Found + code: 404 + duration: 77.559076ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/d660e627-2bff-4618-b736-922141374ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 131 + body: "{\"message\":\"resource is not found\",\"resource\":\"project_id\",\"resource_id\":\"d660e627-2bff-4618-b736-922141374ad2\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "131" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - ac7c5fc1-b2a3-441e-8f33-db2a9a552b52 + status: 404 Not Found + code: 404 + duration: 111.296896ms diff --git a/internal/services/account/testdata/data-source-project-default.cassette.yaml b/internal/services/account/testdata/data-source-project-default.cassette.yaml index 72f2123ca..20e74c1b6 100644 --- a/internal/services/account/testdata/data-source-project-default.cassette.yaml +++ b/internal/services/account/testdata/data-source-project-default.cassette.yaml @@ -1,1473 +1,642 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 253 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4c12ed06-c032-48e3-b568-2a363300a2e1 - status: 200 OK - code: 200 - duration: 1.552026209s - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 984e63ac-3276-4c42-a043-c3817331a306 - status: 200 OK - code: 200 - duration: 107.393417ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 253 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1846ea9f-b220-4bbe-b6f4-7c59328f1bcd - status: 200 OK - code: 200 - duration: 950.746792ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f38cdde6-bac4-4460-a278-9bc5c2ee1e4d - status: 200 OK - code: 200 - duration: 119.983458ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 253 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 69f02347-9265-48ca-9f4a-e93dfdce7e68 - status: 200 OK - code: 200 - duration: 800.811708ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8a3de50d-a419-4d45-8a81-5c26e63fa186 - status: 200 OK - code: 200 - duration: 116.302375ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 253 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cf18b623-4149-46a2-92e1-97f687ba762a - status: 200 OK - code: 200 - duration: 920.50825ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8217d1fa-fbde-424e-addf-38d98ef241de - status: 200 OK - code: 200 - duration: 100.589458ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 253 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6bcdf9dd-d953-46ec-b891-37e83151abb2 - status: 200 OK - code: 200 - duration: 1.030591458s - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 70240bae-8974-4395-9668-a5ad20af0bec - status: 200 OK - code: 200 - duration: 129.7325ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 253 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8348054f-14d3-4f82-8a54-8d66b7eac1c8 - status: 200 OK - code: 200 - duration: 798.630625ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - da951d00-c571-42f3-9bc6-14af71283e35 - status: 200 OK - code: 200 - duration: 111.129417ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 253 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0ec25ae3-4ef4-4d5c-9007-d0f26a8ee0c0 - status: 200 OK - code: 200 - duration: 974.506209ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bb2ade94-a952-428f-89f7-0d5aacae24e2 - status: 200 OK - code: 200 - duration: 107.592667ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 253 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6b9770dd-dc20-4726-b36f-c07f35b00f9f - status: 200 OK - code: 200 - duration: 968.661583ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5cb9fae2-0f92-484b-9af6-6a94aa5e57f7 - status: 200 OK - code: 200 - duration: 141.424959ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 253 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d59dcdb0-7d57-44d0-b1e1-6c8de9ea0c1e - status: 200 OK - code: 200 - duration: 823.466625ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dea0d704-09fd-47de-9727-afe93c65d5cd - status: 200 OK - code: 200 - duration: 107.5875ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 253 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 61d46348-ca8c-4fe2-8398-e4694ca30a56 - status: 200 OK - code: 200 - duration: 785.41225ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 952f5872-9cb7-403f-b548-67a087159031 - status: 200 OK - code: 200 - duration: 112.208167ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 253 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:24 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1b6688a4-bbc9-41f5-80b1-9b873e18daaf - status: 200 OK - code: 200 - duration: 827.083334ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:24 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 309e2a3a-b29d-4645-a249-1a07f776efa4 - status: 200 OK - code: 200 - duration: 120.312125ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 253 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 468ecf47-bf10-4e84-9f0b-6b27f4ba3281 - status: 200 OK - code: 200 - duration: 781.700542ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 76ac9ebe-e091-47d5-96d9-bd368a08ea3d - status: 200 OK - code: 200 - duration: 126.250292ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 253 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a9c22e13-9569-40ef-925d-92545dbf199a - status: 200 OK - code: 200 - duration: 839.434458ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c9ea7232-0cdf-4c6b-8ac0-aafa494797a4 - status: 200 OK - code: 200 - duration: 115.606875ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 253 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2710d3c6-5734-4009-aa50-6dab560d16fc - status: 200 OK - code: 200 - duration: 888.841375ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5bbfe031-65c8-41e2-bdd5-0b27e9b474f3 - status: 200 OK - code: 200 - duration: 110.589125ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 253 - uncompressed: false - body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}' - headers: - Content-Length: - - "253" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 476fa5d1-cf8b-47a5-b5ac-6c1e8cd79f1b - status: 200 OK - code: 200 - duration: 681.331458ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 222 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "222" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 29 Jan 2025 08:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - da628f79-0c3d-405a-9ef1-8b75c01b42b3 - status: 200 OK - code: 200 - duration: 104.787583ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - default + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"total_count\":1, \"projects\":[{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 9dceb051-33f3-400e-9081-c8db7f0dc8a9 + status: 200 OK + code: 200 + duration: 1.361023933s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 294 + body: "{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "294" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 9e4f5d07-86a4-4660-a378-5ad56ce717a2 + status: 200 OK + code: 200 + duration: 341.089305ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - default + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"total_count\":1, \"projects\":[{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - b295aefe-011d-4068-9887-0498659c6f97 + status: 200 OK + code: 200 + duration: 1.113008367s +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 294 + body: "{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "294" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - c1009b0b-9e93-4034-bed3-df56020c7654 + status: 200 OK + code: 200 + duration: 584.309027ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - default + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"total_count\":1, \"projects\":[{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 5e375174-df7b-428d-9c6e-4a700fe42cad + status: 200 OK + code: 200 + duration: 1.552478786s +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 294 + body: "{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "294" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 96f98f8a-7fb5-48a8-9c38-c0bc960d9895 + status: 200 OK + code: 200 + duration: 173.179565ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - default + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"total_count\":1, \"projects\":[{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 7b2ed1c8-e79e-4217-a197-76c7a0b04530 + status: 200 OK + code: 200 + duration: 1.078908462s +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 294 + body: "{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "294" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - c76ee9c2-dc2e-4abb-ab70-50c45dddbd06 + status: 200 OK + code: 200 + duration: 223.058533ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - default + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"total_count\":1, \"projects\":[{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - d80c0c12-00a6-4c84-b1e2-3195dea0cac4 + status: 200 OK + code: 200 + duration: 963.457112ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 294 + body: "{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "294" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - e01d39c6-e0f2-4635-9295-46cfbde511aa + status: 200 OK + code: 200 + duration: 80.934088ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - default + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"total_count\":1, \"projects\":[{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 1414d5cf-b8bd-4dc4-80bd-d365176411c3 + status: 200 OK + code: 200 + duration: 923.162667ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 294 + body: "{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "294" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - def1f732-9986-478c-8c08-d290b90afcba + status: 200 OK + code: 200 + duration: 80.996587ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - default + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"total_count\":1, \"projects\":[{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - fdffc8db-6c41-44e2-b3fa-3a54f518677c + status: 200 OK + code: 200 + duration: 995.05763ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 294 + body: "{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "294" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - f8e179fa-cba3-4415-b314-19f7f6cf1554 + status: 200 OK + code: 200 + duration: 58.229373ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - default + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"total_count\":1, \"projects\":[{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - e1947246-c7f5-4e51-ada6-6bfa617f755d + status: 200 OK + code: 200 + duration: 955.921554ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 294 + body: "{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "294" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 7fefea5f-2883-413c-9e0f-17f49b83baa6 + status: 200 OK + code: 200 + duration: 139.905358ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - default + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"total_count\":1, \"projects\":[{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}]}" + headers: + Content-Length: + - "326" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 5b0cccff-c686-4ecd-a664-8a5cb1b86d81 + status: 200 OK + code: 200 + duration: 769.015524ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 294 + body: "{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "294" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - fd86e4e3-a4bb-4772-8d7c-aaa1ecbd7c25 + status: 200 OK + code: 200 + duration: 50.88249ms diff --git a/internal/services/account/testdata/data-source-project-extract.cassette.yaml b/internal/services/account/testdata/data-source-project-extract.cassette.yaml index 9fadca9b5..d3cadf922 100644 --- a/internal/services/account/testdata/data-source-project-extract.cassette.yaml +++ b/internal/services/account/testdata/data-source-project-extract.cassette.yaml @@ -1,248 +1,99 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 227 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "227" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:20 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fadadaaa-73ba-4245-8da6-22bdd9140ce6 - status: 200 OK - code: 200 - duration: 333.792834ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 227 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "227" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:21 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 43c9316f-39f8-4205-8546-b4e1351dae9d - status: 200 OK - code: 200 - duration: 112.53875ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 227 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "227" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:22 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5083d17e-b8a5-41a7-b6a6-fbe604ac6ae3 - status: 200 OK - code: 200 - duration: 99.310792ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 227 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "227" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:22 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7370cca0-2fbf-4018-a4f7-8172cf084e16 - status: 200 OK - code: 200 - duration: 106.0935ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 227 - uncompressed: false - body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}' - headers: - Content-Length: - - "227" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:23 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 83b98a80-5426-4404-b112-0e4007fa658d - status: 200 OK - code: 200 - duration: 123.102041ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 294 + body: "{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "294" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - df9dde0d-5797-4433-a444-e8cc83d133ea + status: 200 OK + code: 200 + duration: 471.062077ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 294 + body: "{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "294" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - c0e0f50a-599c-40b4-85e1-da813af35069 + status: 200 OK + code: 200 + duration: 234.233928ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 294 + body: "{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "294" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 6d480ef8-ac27-41b0-83fd-36bbca0c5e2b + status: 200 OK + code: 200 + duration: 228.724314ms diff --git a/internal/services/account/testdata/data-source-project-list.cassette.yaml b/internal/services/account/testdata/data-source-project-list.cassette.yaml index 4b410bdfd..5129942d5 100644 --- a/internal/services/account/testdata/data-source-project-list.cassette.yaml +++ b/internal/services/account/testdata/data-source-project-list.cassette.yaml @@ -1,248 +1,114 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?order_by=created_at_asc&organization_id=6867048b-fe12-4e96-835e-41c79a39604b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2506 - uncompressed: false - body: '{"projects":[{"created_at":"2025-03-28T10:50:07.046652Z","description":"","id":"6867048b-fe12-4e96-835e-41c79a39604b","name":"default","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-03-28T10:50:07.046652Z"},{"created_at":"2025-04-17T07:56:01.332697Z","description":"","id":"8cc8dd4d-a094-407a-89a3-9d004674e936","name":"tf_tests_container_trigger_sqs","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-04-17T07:56:01.332697Z"},{"created_at":"2025-04-17T07:56:07.275342Z","description":"","id":"c6dd3456-da8b-4aa0-9c34-16d7d9803aca","name":"tf_tests_container_trigger_sqs","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-04-17T07:56:07.275342Z"},{"created_at":"2025-04-28T08:36:29.372348Z","description":"","id":"c836593f-d01f-47e7-afef-2acd8dd12e4a","name":"tf_tests_function_trigger_sqs","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-04-28T08:36:29.372348Z"},{"created_at":"2025-05-05T08:35:05.993942Z","description":"","id":"c13349ad-dfcb-4df1-a3c5-7125b987d3fa","name":"onboarding","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-05T08:35:05.993942Z"},{"created_at":"2025-05-07T19:51:42.450139Z","description":"","id":"9c373336-7015-4ad6-995b-8153a8923c72","name":"my_test_project","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-07T19:51:42.450139Z"},{"created_at":"2025-05-13T08:56:14.908932Z","description":"","id":"0b9a80f3-29db-4ec2-ac2e-8845c00299e3","name":"cli-proj-inspiring-boyd","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-13T08:56:14.908932Z"},{"created_at":"2025-05-13T08:57:03.383382Z","description":"","id":"0f575b9b-cf87-49b5-a0cc-aed1842aad88","name":"cli-proj-busy-darwin","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-13T08:57:03.383382Z"}],"total_count":8}' - headers: - Content-Length: - - "2506" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 14 May 2025 16:32:17 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0bb6255e-acec-44bf-b5bd-c4a12011b358 - status: 200 OK - code: 200 - duration: 169.356542ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?order_by=created_at_asc&organization_id=6867048b-fe12-4e96-835e-41c79a39604b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2506 - uncompressed: false - body: '{"projects":[{"created_at":"2025-03-28T10:50:07.046652Z","description":"","id":"6867048b-fe12-4e96-835e-41c79a39604b","name":"default","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-03-28T10:50:07.046652Z"},{"created_at":"2025-04-17T07:56:01.332697Z","description":"","id":"8cc8dd4d-a094-407a-89a3-9d004674e936","name":"tf_tests_container_trigger_sqs","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-04-17T07:56:01.332697Z"},{"created_at":"2025-04-17T07:56:07.275342Z","description":"","id":"c6dd3456-da8b-4aa0-9c34-16d7d9803aca","name":"tf_tests_container_trigger_sqs","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-04-17T07:56:07.275342Z"},{"created_at":"2025-04-28T08:36:29.372348Z","description":"","id":"c836593f-d01f-47e7-afef-2acd8dd12e4a","name":"tf_tests_function_trigger_sqs","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-04-28T08:36:29.372348Z"},{"created_at":"2025-05-05T08:35:05.993942Z","description":"","id":"c13349ad-dfcb-4df1-a3c5-7125b987d3fa","name":"onboarding","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-05T08:35:05.993942Z"},{"created_at":"2025-05-07T19:51:42.450139Z","description":"","id":"9c373336-7015-4ad6-995b-8153a8923c72","name":"my_test_project","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-07T19:51:42.450139Z"},{"created_at":"2025-05-13T08:56:14.908932Z","description":"","id":"0b9a80f3-29db-4ec2-ac2e-8845c00299e3","name":"cli-proj-inspiring-boyd","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-13T08:56:14.908932Z"},{"created_at":"2025-05-13T08:57:03.383382Z","description":"","id":"0f575b9b-cf87-49b5-a0cc-aed1842aad88","name":"cli-proj-busy-darwin","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-13T08:57:03.383382Z"}],"total_count":8}' - headers: - Content-Length: - - "2506" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 14 May 2025 16:32:17 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 84593443-c44e-4270-b0aa-491a594dd095 - status: 200 OK - code: 200 - duration: 64.1495ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?order_by=created_at_asc&organization_id=6867048b-fe12-4e96-835e-41c79a39604b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2506 - uncompressed: false - body: '{"projects":[{"created_at":"2025-03-28T10:50:07.046652Z","description":"","id":"6867048b-fe12-4e96-835e-41c79a39604b","name":"default","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-03-28T10:50:07.046652Z"},{"created_at":"2025-04-17T07:56:01.332697Z","description":"","id":"8cc8dd4d-a094-407a-89a3-9d004674e936","name":"tf_tests_container_trigger_sqs","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-04-17T07:56:01.332697Z"},{"created_at":"2025-04-17T07:56:07.275342Z","description":"","id":"c6dd3456-da8b-4aa0-9c34-16d7d9803aca","name":"tf_tests_container_trigger_sqs","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-04-17T07:56:07.275342Z"},{"created_at":"2025-04-28T08:36:29.372348Z","description":"","id":"c836593f-d01f-47e7-afef-2acd8dd12e4a","name":"tf_tests_function_trigger_sqs","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-04-28T08:36:29.372348Z"},{"created_at":"2025-05-05T08:35:05.993942Z","description":"","id":"c13349ad-dfcb-4df1-a3c5-7125b987d3fa","name":"onboarding","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-05T08:35:05.993942Z"},{"created_at":"2025-05-07T19:51:42.450139Z","description":"","id":"9c373336-7015-4ad6-995b-8153a8923c72","name":"my_test_project","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-07T19:51:42.450139Z"},{"created_at":"2025-05-13T08:56:14.908932Z","description":"","id":"0b9a80f3-29db-4ec2-ac2e-8845c00299e3","name":"cli-proj-inspiring-boyd","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-13T08:56:14.908932Z"},{"created_at":"2025-05-13T08:57:03.383382Z","description":"","id":"0f575b9b-cf87-49b5-a0cc-aed1842aad88","name":"cli-proj-busy-darwin","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-13T08:57:03.383382Z"}],"total_count":8}' - headers: - Content-Length: - - "2506" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 14 May 2025 16:32:17 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f813addd-96c4-44de-87c4-ed7ff05e0c47 - status: 200 OK - code: 200 - duration: 37.444709ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?order_by=created_at_asc&organization_id=6867048b-fe12-4e96-835e-41c79a39604b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2506 - uncompressed: false - body: '{"projects":[{"created_at":"2025-03-28T10:50:07.046652Z","description":"","id":"6867048b-fe12-4e96-835e-41c79a39604b","name":"default","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-03-28T10:50:07.046652Z"},{"created_at":"2025-04-17T07:56:01.332697Z","description":"","id":"8cc8dd4d-a094-407a-89a3-9d004674e936","name":"tf_tests_container_trigger_sqs","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-04-17T07:56:01.332697Z"},{"created_at":"2025-04-17T07:56:07.275342Z","description":"","id":"c6dd3456-da8b-4aa0-9c34-16d7d9803aca","name":"tf_tests_container_trigger_sqs","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-04-17T07:56:07.275342Z"},{"created_at":"2025-04-28T08:36:29.372348Z","description":"","id":"c836593f-d01f-47e7-afef-2acd8dd12e4a","name":"tf_tests_function_trigger_sqs","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-04-28T08:36:29.372348Z"},{"created_at":"2025-05-05T08:35:05.993942Z","description":"","id":"c13349ad-dfcb-4df1-a3c5-7125b987d3fa","name":"onboarding","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-05T08:35:05.993942Z"},{"created_at":"2025-05-07T19:51:42.450139Z","description":"","id":"9c373336-7015-4ad6-995b-8153a8923c72","name":"my_test_project","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-07T19:51:42.450139Z"},{"created_at":"2025-05-13T08:56:14.908932Z","description":"","id":"0b9a80f3-29db-4ec2-ac2e-8845c00299e3","name":"cli-proj-inspiring-boyd","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-13T08:56:14.908932Z"},{"created_at":"2025-05-13T08:57:03.383382Z","description":"","id":"0f575b9b-cf87-49b5-a0cc-aed1842aad88","name":"cli-proj-busy-darwin","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-13T08:57:03.383382Z"}],"total_count":8}' - headers: - Content-Length: - - "2506" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 14 May 2025 16:32:17 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9ff7703c-90d8-4982-9d3d-46e13396a706 - status: 200 OK - code: 200 - duration: 46.165958ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects?order_by=created_at_asc&organization_id=6867048b-fe12-4e96-835e-41c79a39604b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2506 - uncompressed: false - body: '{"projects":[{"created_at":"2025-03-28T10:50:07.046652Z","description":"","id":"6867048b-fe12-4e96-835e-41c79a39604b","name":"default","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-03-28T10:50:07.046652Z"},{"created_at":"2025-04-17T07:56:01.332697Z","description":"","id":"8cc8dd4d-a094-407a-89a3-9d004674e936","name":"tf_tests_container_trigger_sqs","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-04-17T07:56:01.332697Z"},{"created_at":"2025-04-17T07:56:07.275342Z","description":"","id":"c6dd3456-da8b-4aa0-9c34-16d7d9803aca","name":"tf_tests_container_trigger_sqs","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-04-17T07:56:07.275342Z"},{"created_at":"2025-04-28T08:36:29.372348Z","description":"","id":"c836593f-d01f-47e7-afef-2acd8dd12e4a","name":"tf_tests_function_trigger_sqs","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-04-28T08:36:29.372348Z"},{"created_at":"2025-05-05T08:35:05.993942Z","description":"","id":"c13349ad-dfcb-4df1-a3c5-7125b987d3fa","name":"onboarding","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-05T08:35:05.993942Z"},{"created_at":"2025-05-07T19:51:42.450139Z","description":"","id":"9c373336-7015-4ad6-995b-8153a8923c72","name":"my_test_project","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-07T19:51:42.450139Z"},{"created_at":"2025-05-13T08:56:14.908932Z","description":"","id":"0b9a80f3-29db-4ec2-ac2e-8845c00299e3","name":"cli-proj-inspiring-boyd","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-13T08:56:14.908932Z"},{"created_at":"2025-05-13T08:57:03.383382Z","description":"","id":"0f575b9b-cf87-49b5-a0cc-aed1842aad88","name":"cli-proj-busy-darwin","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","qualification":{"architecture_type":"unknown_architecture_type"},"updated_at":"2025-05-13T08:57:03.383382Z"}],"total_count":8}' - headers: - Content-Length: - - "2506" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 14 May 2025 16:32:17 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3c0cff7d-bce7-4bf5-bd4d-51544016b981 - status: 200 OK - code: 200 - duration: 56.302958ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 12567 + body: "{\"total_count\":39, \"projects\":[{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"c567f266-af4f-4da0-a35b-98c34086f991\", \"name\":\"Packer Plugin Scaleway\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2022-08-03T12:38:30.535676Z\", \"updated_at\":\"2022-08-03T12:38:30.535676Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"fe479fbe-6cae-44c5-bb7a-7fc9f04acad5\", \"name\":\"SDK Python\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2022-11-25T09:24:16.967251Z\", \"updated_at\":\"2022-11-25T09:24:16.967251Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"f5375b18-7efc-4416-ab13-c42af955602c\", \"name\":\"ansible\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2024-10-10T15:51:51.949252Z\", \"updated_at\":\"2024-10-10T15:51:51.949252Z\", \"description\":\"ansible-test\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"b9f1748e-1fbd-427f-93f2-82b5ee6be4df\", \"name\":\"test-acc-scaleway-project-2382005454563223317\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:40.818415Z\", \"updated_at\":\"2025-10-02T01:06:40.818415Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"107e6beb-8c9a-443f-aced-99d1199809bd\", \"name\":\"test-acc-scaleway-project-4138615873491131758\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:42.348730Z\", \"updated_at\":\"2025-10-02T01:06:42.348730Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"52433373-9434-4703-8d83-c7d3e6893ed8\", \"name\":\"test-acc-scaleway-project-125828316746158520\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:43.822532Z\", \"updated_at\":\"2025-10-02T01:06:43.822532Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"d86d7411-f87a-4d90-85a4-59ad60953714\", \"name\":\"test-acc-scaleway-project-4889032628251055045\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:45.233655Z\", \"updated_at\":\"2025-10-02T01:06:45.233655Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"423cefdd-c495-443d-a6fa-18a7856e4c62\", \"name\":\"test-acc-scaleway-project-8635203759153374432\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:46.696573Z\", \"updated_at\":\"2025-10-02T01:06:46.696573Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"2b92be89-a91a-437a-af09-cecbe4c02bc4\", \"name\":\"test-acc-scaleway-project-5813508154660424719\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:48.136708Z\", \"updated_at\":\"2025-10-02T01:06:48.136708Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"434baf8b-89a1-4d5a-a440-ea750db9e65a\", \"name\":\"test-acc-scaleway-project-996693526684721783\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:07:30.238681Z\", \"updated_at\":\"2025-10-02T01:07:30.238681Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"58f622d7-d198-4ad4-a676-20857a4aaab9\", \"name\":\"test-acc-scaleway-project-694863613780854987\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:07:31.868493Z\", \"updated_at\":\"2025-10-02T01:07:31.868493Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"d0641bf1-879f-4351-83a0-dba7cd119b25\", \"name\":\"test-acc-scaleway-project-646784994312797478\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-09T17:18:11.956151Z\", \"updated_at\":\"2025-10-09T17:18:11.956151Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"f167fc39-5e5b-4bc0-b095-7ca93397a146\", \"name\":\"test-acc-scaleway-project-8366484665957242373\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-15T16:55:24.911859Z\", \"updated_at\":\"2025-10-15T16:55:24.911859Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"8ee1504c-5f79-4c33-9cac-d4bf7d3cccd2\", \"name\":\"tf_tests_mnq_sqs_queue_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:12:48.059069Z\", \"updated_at\":\"2025-11-15T01:12:48.059069Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"5d372be7-12d1-4119-b309-4ebdb69a6569\", \"name\":\"tf_tests_cockpit_datasource_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:12:54.773345Z\", \"updated_at\":\"2025-11-15T01:12:54.773345Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"12109581-cfd3-489b-97f6-b008a6d93bdc\", \"name\":\"tf_tests_mnq_nats_credential_update\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:13:02.146811Z\", \"updated_at\":\"2025-11-15T01:13:02.146811Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"5f8e89b9-981f-4b14-9b0e-3ee3ebdc742f\", \"name\":\"tf_tests_mnq_sqs_credentials_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:13:03.211365Z\", \"updated_at\":\"2025-11-15T01:13:03.211365Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"e1581125-f3a1-4041-9804-d4adfddc757c\", \"name\":\"tf_tests_mnq_sqs_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:13:04.684871Z\", \"updated_at\":\"2025-11-15T01:13:04.684871Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"ed3b7263-1962-46c7-84b5-7d98e2ecc739\", \"name\":\"test-acc-scaleway-project-868626081988611060\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:16:34.433505Z\", \"updated_at\":\"2025-11-15T01:16:34.433505Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"55f3420c-798a-44bf-a6f6-054522fc0101\", \"name\":\"tf_test_project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:18:04.783661Z\", \"updated_at\":\"2025-11-16T01:18:04.783661Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"254f379e-319d-460c-a034-85ae40a668cd\", \"name\":\"tf_tests_cockpit_grafana_user_update\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:18:16.978422Z\", \"updated_at\":\"2025-11-16T01:18:16.978422Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"6964979a-38c8-4d35-8561-a15053ea919b\", \"name\":\"tf_tests_cockpit_token_no_scopes\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:18:21.584777Z\", \"updated_at\":\"2025-11-16T01:18:21.584777Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"46cbd104-ba35-4ed3-906e-0c06ea002bd4\", \"name\":\"tf_tests_mnq_sqs_credentials_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:21:07.939634Z\", \"updated_at\":\"2025-11-16T01:21:07.939634Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"e10e5732-fab3-41cb-9f6d-ed5368c09426\", \"name\":\"tf_tests_mnq_nats_credential_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:21:10.229456Z\", \"updated_at\":\"2025-11-16T01:21:10.229456Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"8dd8cf42-a63f-4bff-b9d2-156a4dd0ddb0\", \"name\":\"tf_tests_mnq_sqs_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:21:17.234654Z\", \"updated_at\":\"2025-11-16T01:21:17.234654Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"5e382d5a-f906-4e49-8943-15a27939ec8f\", \"name\":\"tf_tests_mnq_sns_topic_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:21:20.561284Z\", \"updated_at\":\"2025-11-16T01:21:20.561284Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"be5d3f36-4ccf-4f6d-b152-2907241eac6a\", \"name\":\"tf-tests-secret-ds-path\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:13.401175Z\", \"updated_at\":\"2025-11-17T01:14:13.401175Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"45d223a3-e58b-45b5-befa-caf13b693b57\", \"name\":\"tf-tests-secret-version-ds-by-name\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:13.565025Z\", \"updated_at\":\"2025-11-17T01:14:13.565025Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"7f19fa2a-9360-42b2-ba14-323f8eb5610d\", \"name\":\"tf_tests_cockpit_datasource_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:26.748038Z\", \"updated_at\":\"2025-11-17T01:14:26.748038Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"fa728407-2cac-41d5-acca-fbe3b047699b\", \"name\":\"tf_tests_cockpit_token_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:27.176930Z\", \"updated_at\":\"2025-11-17T01:14:27.176930Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"d9b1f510-3f50-4f46-898f-f1bd088a52aa\", \"name\":\"tf_tests_cockpit_token_no_scopes\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:28.700285Z\", \"updated_at\":\"2025-11-17T01:14:28.700285Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"8a9e5175-89e6-4e2a-8d5b-46bed5ec28e2\", \"name\":\"tf_tests_cockpit_grafana_user_update\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:34.971812Z\", \"updated_at\":\"2025-11-17T01:14:34.971812Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"e677dfbc-90b9-47e8-8ccc-63d24e129de1\", \"name\":\"tf_test_project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:37.194990Z\", \"updated_at\":\"2025-11-17T01:14:37.194990Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"dedc5b6f-594a-4b7b-b49c-bec16b497668\", \"name\":\"tf_tests_cockpit_project_premium\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:39.491124Z\", \"updated_at\":\"2025-11-17T01:14:39.491124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"ecd42d4e-99f2-4081-9ee0-d7d5ac0a8ff3\", \"name\":\"tf_tests_mnq_nats_credential_update\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:18:05.908517Z\", \"updated_at\":\"2025-11-17T01:18:05.908517Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"c6a7544d-e9c8-4002-95e6-94a3f3767132\", \"name\":\"tf_tests_mnq_sqs_credentials_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:18:08.186440Z\", \"updated_at\":\"2025-11-17T01:18:08.186440Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"0f056d1b-88d2-45ab-8bd9-949853fbda4c\", \"name\":\"tf_tests_mnq_sns_topic_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:18:14.693429Z\", \"updated_at\":\"2025-11-17T01:18:14.693429Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"a3d60585-f933-438d-9df2-4f83a8aae325\", \"name\":\"tf_tests_mnq_nats_credential_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:18:15.358573Z\", \"updated_at\":\"2025-11-17T01:18:15.358573Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}]}" + headers: + Content-Length: + - "12567" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 582be588-394e-406e-8f5c-c9a9269d59bc + status: 200 OK + code: 200 + duration: 1.30748185s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 13528 + body: "{\"total_count\":42, \"projects\":[{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"c567f266-af4f-4da0-a35b-98c34086f991\", \"name\":\"Packer Plugin Scaleway\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2022-08-03T12:38:30.535676Z\", \"updated_at\":\"2022-08-03T12:38:30.535676Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"fe479fbe-6cae-44c5-bb7a-7fc9f04acad5\", \"name\":\"SDK Python\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2022-11-25T09:24:16.967251Z\", \"updated_at\":\"2022-11-25T09:24:16.967251Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"f5375b18-7efc-4416-ab13-c42af955602c\", \"name\":\"ansible\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2024-10-10T15:51:51.949252Z\", \"updated_at\":\"2024-10-10T15:51:51.949252Z\", \"description\":\"ansible-test\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"b9f1748e-1fbd-427f-93f2-82b5ee6be4df\", \"name\":\"test-acc-scaleway-project-2382005454563223317\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:40.818415Z\", \"updated_at\":\"2025-10-02T01:06:40.818415Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"107e6beb-8c9a-443f-aced-99d1199809bd\", \"name\":\"test-acc-scaleway-project-4138615873491131758\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:42.348730Z\", \"updated_at\":\"2025-10-02T01:06:42.348730Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"52433373-9434-4703-8d83-c7d3e6893ed8\", \"name\":\"test-acc-scaleway-project-125828316746158520\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:43.822532Z\", \"updated_at\":\"2025-10-02T01:06:43.822532Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"d86d7411-f87a-4d90-85a4-59ad60953714\", \"name\":\"test-acc-scaleway-project-4889032628251055045\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:45.233655Z\", \"updated_at\":\"2025-10-02T01:06:45.233655Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"423cefdd-c495-443d-a6fa-18a7856e4c62\", \"name\":\"test-acc-scaleway-project-8635203759153374432\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:46.696573Z\", \"updated_at\":\"2025-10-02T01:06:46.696573Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"2b92be89-a91a-437a-af09-cecbe4c02bc4\", \"name\":\"test-acc-scaleway-project-5813508154660424719\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:48.136708Z\", \"updated_at\":\"2025-10-02T01:06:48.136708Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"434baf8b-89a1-4d5a-a440-ea750db9e65a\", \"name\":\"test-acc-scaleway-project-996693526684721783\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:07:30.238681Z\", \"updated_at\":\"2025-10-02T01:07:30.238681Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"58f622d7-d198-4ad4-a676-20857a4aaab9\", \"name\":\"test-acc-scaleway-project-694863613780854987\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:07:31.868493Z\", \"updated_at\":\"2025-10-02T01:07:31.868493Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"d0641bf1-879f-4351-83a0-dba7cd119b25\", \"name\":\"test-acc-scaleway-project-646784994312797478\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-09T17:18:11.956151Z\", \"updated_at\":\"2025-10-09T17:18:11.956151Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"f167fc39-5e5b-4bc0-b095-7ca93397a146\", \"name\":\"test-acc-scaleway-project-8366484665957242373\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-15T16:55:24.911859Z\", \"updated_at\":\"2025-10-15T16:55:24.911859Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"8ee1504c-5f79-4c33-9cac-d4bf7d3cccd2\", \"name\":\"tf_tests_mnq_sqs_queue_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:12:48.059069Z\", \"updated_at\":\"2025-11-15T01:12:48.059069Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"5d372be7-12d1-4119-b309-4ebdb69a6569\", \"name\":\"tf_tests_cockpit_datasource_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:12:54.773345Z\", \"updated_at\":\"2025-11-15T01:12:54.773345Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"12109581-cfd3-489b-97f6-b008a6d93bdc\", \"name\":\"tf_tests_mnq_nats_credential_update\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:13:02.146811Z\", \"updated_at\":\"2025-11-15T01:13:02.146811Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"5f8e89b9-981f-4b14-9b0e-3ee3ebdc742f\", \"name\":\"tf_tests_mnq_sqs_credentials_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:13:03.211365Z\", \"updated_at\":\"2025-11-15T01:13:03.211365Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"e1581125-f3a1-4041-9804-d4adfddc757c\", \"name\":\"tf_tests_mnq_sqs_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:13:04.684871Z\", \"updated_at\":\"2025-11-15T01:13:04.684871Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"ed3b7263-1962-46c7-84b5-7d98e2ecc739\", \"name\":\"test-acc-scaleway-project-868626081988611060\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:16:34.433505Z\", \"updated_at\":\"2025-11-15T01:16:34.433505Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"55f3420c-798a-44bf-a6f6-054522fc0101\", \"name\":\"tf_test_project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:18:04.783661Z\", \"updated_at\":\"2025-11-16T01:18:04.783661Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"254f379e-319d-460c-a034-85ae40a668cd\", \"name\":\"tf_tests_cockpit_grafana_user_update\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:18:16.978422Z\", \"updated_at\":\"2025-11-16T01:18:16.978422Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"6964979a-38c8-4d35-8561-a15053ea919b\", \"name\":\"tf_tests_cockpit_token_no_scopes\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:18:21.584777Z\", \"updated_at\":\"2025-11-16T01:18:21.584777Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"46cbd104-ba35-4ed3-906e-0c06ea002bd4\", \"name\":\"tf_tests_mnq_sqs_credentials_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:21:07.939634Z\", \"updated_at\":\"2025-11-16T01:21:07.939634Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"e10e5732-fab3-41cb-9f6d-ed5368c09426\", \"name\":\"tf_tests_mnq_nats_credential_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:21:10.229456Z\", \"updated_at\":\"2025-11-16T01:21:10.229456Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"8dd8cf42-a63f-4bff-b9d2-156a4dd0ddb0\", \"name\":\"tf_tests_mnq_sqs_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:21:17.234654Z\", \"updated_at\":\"2025-11-16T01:21:17.234654Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"5e382d5a-f906-4e49-8943-15a27939ec8f\", \"name\":\"tf_tests_mnq_sns_topic_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:21:20.561284Z\", \"updated_at\":\"2025-11-16T01:21:20.561284Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"be5d3f36-4ccf-4f6d-b152-2907241eac6a\", \"name\":\"tf-tests-secret-ds-path\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:13.401175Z\", \"updated_at\":\"2025-11-17T01:14:13.401175Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"45d223a3-e58b-45b5-befa-caf13b693b57\", \"name\":\"tf-tests-secret-version-ds-by-name\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:13.565025Z\", \"updated_at\":\"2025-11-17T01:14:13.565025Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"7f19fa2a-9360-42b2-ba14-323f8eb5610d\", \"name\":\"tf_tests_cockpit_datasource_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:26.748038Z\", \"updated_at\":\"2025-11-17T01:14:26.748038Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"fa728407-2cac-41d5-acca-fbe3b047699b\", \"name\":\"tf_tests_cockpit_token_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:27.176930Z\", \"updated_at\":\"2025-11-17T01:14:27.176930Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"d9b1f510-3f50-4f46-898f-f1bd088a52aa\", \"name\":\"tf_tests_cockpit_token_no_scopes\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:28.700285Z\", \"updated_at\":\"2025-11-17T01:14:28.700285Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"8a9e5175-89e6-4e2a-8d5b-46bed5ec28e2\", \"name\":\"tf_tests_cockpit_grafana_user_update\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:34.971812Z\", \"updated_at\":\"2025-11-17T01:14:34.971812Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"e677dfbc-90b9-47e8-8ccc-63d24e129de1\", \"name\":\"tf_test_project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:37.194990Z\", \"updated_at\":\"2025-11-17T01:14:37.194990Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"dedc5b6f-594a-4b7b-b49c-bec16b497668\", \"name\":\"tf_tests_cockpit_project_premium\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:39.491124Z\", \"updated_at\":\"2025-11-17T01:14:39.491124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"ecd42d4e-99f2-4081-9ee0-d7d5ac0a8ff3\", \"name\":\"tf_tests_mnq_nats_credential_update\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:18:05.908517Z\", \"updated_at\":\"2025-11-17T01:18:05.908517Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"c6a7544d-e9c8-4002-95e6-94a3f3767132\", \"name\":\"tf_tests_mnq_sqs_credentials_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:18:08.186440Z\", \"updated_at\":\"2025-11-17T01:18:08.186440Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"0f056d1b-88d2-45ab-8bd9-949853fbda4c\", \"name\":\"tf_tests_mnq_sns_topic_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:18:14.693429Z\", \"updated_at\":\"2025-11-17T01:18:14.693429Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"a3d60585-f933-438d-9df2-4f83a8aae325\", \"name\":\"tf_tests_mnq_nats_credential_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:18:15.358573Z\", \"updated_at\":\"2025-11-17T01:18:15.358573Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"d660e627-2bff-4618-b736-922141374ad2\", \"name\":\"tf-tests-terraform-account-project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.395793Z\", \"updated_at\":\"2025-11-17T10:06:39.395793Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"2a654f58-e576-4b85-9a75-9c9bb25885ca\", \"name\":\"tf_tests_project_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.398305Z\", \"updated_at\":\"2025-11-17T10:06:39.398305Z\", \"description\":\"a description\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"669fc77e-afdc-4404-bf3c-504346bf39e9\", \"name\":\"tf_tests_project_noupdate\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.463191Z\", \"updated_at\":\"2025-11-17T10:06:39.463191Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}]}" + headers: + Content-Length: + - "13528" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - def59590-4313-4e4e-8079-3a66a38e78d2 + status: 200 OK + code: 200 + duration: 984.280275ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + organization_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects?order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 13541 + body: "{\"total_count\":42, \"projects\":[{\"id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"name\":\"default\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2019-09-30T07:52:49.358300Z\", \"updated_at\":\"2020-05-03T19:41:17.997124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"c567f266-af4f-4da0-a35b-98c34086f991\", \"name\":\"Packer Plugin Scaleway\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2022-08-03T12:38:30.535676Z\", \"updated_at\":\"2022-08-03T12:38:30.535676Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"fe479fbe-6cae-44c5-bb7a-7fc9f04acad5\", \"name\":\"SDK Python\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2022-11-25T09:24:16.967251Z\", \"updated_at\":\"2022-11-25T09:24:16.967251Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"f5375b18-7efc-4416-ab13-c42af955602c\", \"name\":\"ansible\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2024-10-10T15:51:51.949252Z\", \"updated_at\":\"2024-10-10T15:51:51.949252Z\", \"description\":\"ansible-test\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"b9f1748e-1fbd-427f-93f2-82b5ee6be4df\", \"name\":\"test-acc-scaleway-project-2382005454563223317\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:40.818415Z\", \"updated_at\":\"2025-10-02T01:06:40.818415Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"107e6beb-8c9a-443f-aced-99d1199809bd\", \"name\":\"test-acc-scaleway-project-4138615873491131758\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:42.348730Z\", \"updated_at\":\"2025-10-02T01:06:42.348730Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"52433373-9434-4703-8d83-c7d3e6893ed8\", \"name\":\"test-acc-scaleway-project-125828316746158520\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:43.822532Z\", \"updated_at\":\"2025-10-02T01:06:43.822532Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"d86d7411-f87a-4d90-85a4-59ad60953714\", \"name\":\"test-acc-scaleway-project-4889032628251055045\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:45.233655Z\", \"updated_at\":\"2025-10-02T01:06:45.233655Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"423cefdd-c495-443d-a6fa-18a7856e4c62\", \"name\":\"test-acc-scaleway-project-8635203759153374432\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:46.696573Z\", \"updated_at\":\"2025-10-02T01:06:46.696573Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"2b92be89-a91a-437a-af09-cecbe4c02bc4\", \"name\":\"test-acc-scaleway-project-5813508154660424719\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:06:48.136708Z\", \"updated_at\":\"2025-10-02T01:06:48.136708Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"434baf8b-89a1-4d5a-a440-ea750db9e65a\", \"name\":\"test-acc-scaleway-project-996693526684721783\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:07:30.238681Z\", \"updated_at\":\"2025-10-02T01:07:30.238681Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"58f622d7-d198-4ad4-a676-20857a4aaab9\", \"name\":\"test-acc-scaleway-project-694863613780854987\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-02T01:07:31.868493Z\", \"updated_at\":\"2025-10-02T01:07:31.868493Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"d0641bf1-879f-4351-83a0-dba7cd119b25\", \"name\":\"test-acc-scaleway-project-646784994312797478\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-09T17:18:11.956151Z\", \"updated_at\":\"2025-10-09T17:18:11.956151Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"f167fc39-5e5b-4bc0-b095-7ca93397a146\", \"name\":\"test-acc-scaleway-project-8366484665957242373\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-15T16:55:24.911859Z\", \"updated_at\":\"2025-10-15T16:55:24.911859Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"8ee1504c-5f79-4c33-9cac-d4bf7d3cccd2\", \"name\":\"tf_tests_mnq_sqs_queue_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:12:48.059069Z\", \"updated_at\":\"2025-11-15T01:12:48.059069Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"5d372be7-12d1-4119-b309-4ebdb69a6569\", \"name\":\"tf_tests_cockpit_datasource_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:12:54.773345Z\", \"updated_at\":\"2025-11-15T01:12:54.773345Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"12109581-cfd3-489b-97f6-b008a6d93bdc\", \"name\":\"tf_tests_mnq_nats_credential_update\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:13:02.146811Z\", \"updated_at\":\"2025-11-15T01:13:02.146811Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"5f8e89b9-981f-4b14-9b0e-3ee3ebdc742f\", \"name\":\"tf_tests_mnq_sqs_credentials_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:13:03.211365Z\", \"updated_at\":\"2025-11-15T01:13:03.211365Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"e1581125-f3a1-4041-9804-d4adfddc757c\", \"name\":\"tf_tests_mnq_sqs_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:13:04.684871Z\", \"updated_at\":\"2025-11-15T01:13:04.684871Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"ed3b7263-1962-46c7-84b5-7d98e2ecc739\", \"name\":\"test-acc-scaleway-project-868626081988611060\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-15T01:16:34.433505Z\", \"updated_at\":\"2025-11-15T01:16:34.433505Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"55f3420c-798a-44bf-a6f6-054522fc0101\", \"name\":\"tf_test_project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:18:04.783661Z\", \"updated_at\":\"2025-11-16T01:18:04.783661Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"254f379e-319d-460c-a034-85ae40a668cd\", \"name\":\"tf_tests_cockpit_grafana_user_update\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:18:16.978422Z\", \"updated_at\":\"2025-11-16T01:18:16.978422Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"6964979a-38c8-4d35-8561-a15053ea919b\", \"name\":\"tf_tests_cockpit_token_no_scopes\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:18:21.584777Z\", \"updated_at\":\"2025-11-16T01:18:21.584777Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"46cbd104-ba35-4ed3-906e-0c06ea002bd4\", \"name\":\"tf_tests_mnq_sqs_credentials_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:21:07.939634Z\", \"updated_at\":\"2025-11-16T01:21:07.939634Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"e10e5732-fab3-41cb-9f6d-ed5368c09426\", \"name\":\"tf_tests_mnq_nats_credential_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:21:10.229456Z\", \"updated_at\":\"2025-11-16T01:21:10.229456Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"8dd8cf42-a63f-4bff-b9d2-156a4dd0ddb0\", \"name\":\"tf_tests_mnq_sqs_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:21:17.234654Z\", \"updated_at\":\"2025-11-16T01:21:17.234654Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"5e382d5a-f906-4e49-8943-15a27939ec8f\", \"name\":\"tf_tests_mnq_sns_topic_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-16T01:21:20.561284Z\", \"updated_at\":\"2025-11-16T01:21:20.561284Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"be5d3f36-4ccf-4f6d-b152-2907241eac6a\", \"name\":\"tf-tests-secret-ds-path\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:13.401175Z\", \"updated_at\":\"2025-11-17T01:14:13.401175Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"45d223a3-e58b-45b5-befa-caf13b693b57\", \"name\":\"tf-tests-secret-version-ds-by-name\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:13.565025Z\", \"updated_at\":\"2025-11-17T01:14:13.565025Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"7f19fa2a-9360-42b2-ba14-323f8eb5610d\", \"name\":\"tf_tests_cockpit_datasource_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:26.748038Z\", \"updated_at\":\"2025-11-17T01:14:26.748038Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"fa728407-2cac-41d5-acca-fbe3b047699b\", \"name\":\"tf_tests_cockpit_token_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:27.176930Z\", \"updated_at\":\"2025-11-17T01:14:27.176930Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"d9b1f510-3f50-4f46-898f-f1bd088a52aa\", \"name\":\"tf_tests_cockpit_token_no_scopes\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:28.700285Z\", \"updated_at\":\"2025-11-17T01:14:28.700285Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"8a9e5175-89e6-4e2a-8d5b-46bed5ec28e2\", \"name\":\"tf_tests_cockpit_grafana_user_update\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:34.971812Z\", \"updated_at\":\"2025-11-17T01:14:34.971812Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"e677dfbc-90b9-47e8-8ccc-63d24e129de1\", \"name\":\"tf_test_project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:37.194990Z\", \"updated_at\":\"2025-11-17T01:14:37.194990Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"dedc5b6f-594a-4b7b-b49c-bec16b497668\", \"name\":\"tf_tests_cockpit_project_premium\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:14:39.491124Z\", \"updated_at\":\"2025-11-17T01:14:39.491124Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"ecd42d4e-99f2-4081-9ee0-d7d5ac0a8ff3\", \"name\":\"tf_tests_mnq_nats_credential_update\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:18:05.908517Z\", \"updated_at\":\"2025-11-17T01:18:05.908517Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"c6a7544d-e9c8-4002-95e6-94a3f3767132\", \"name\":\"tf_tests_mnq_sqs_credentials_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:18:08.186440Z\", \"updated_at\":\"2025-11-17T01:18:08.186440Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"0f056d1b-88d2-45ab-8bd9-949853fbda4c\", \"name\":\"tf_tests_mnq_sns_topic_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:18:14.693429Z\", \"updated_at\":\"2025-11-17T01:18:14.693429Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"a3d60585-f933-438d-9df2-4f83a8aae325\", \"name\":\"tf_tests_mnq_nats_credential_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T01:18:15.358573Z\", \"updated_at\":\"2025-11-17T01:18:15.358573Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"d660e627-2bff-4618-b736-922141374ad2\", \"name\":\"tf-tests-terraform-account-project\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.395793Z\", \"updated_at\":\"2025-11-17T10:06:39.395793Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"2a654f58-e576-4b85-9a75-9c9bb25885ca\", \"name\":\"tf_tests_project_basic_rename\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.398305Z\", \"updated_at\":\"2025-11-17T10:06:41.785609Z\", \"description\":\"another description\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}, {\"id\":\"669fc77e-afdc-4404-bf3c-504346bf39e9\", \"name\":\"tf_tests_project_noupdate\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.463191Z\", \"updated_at\":\"2025-11-17T10:06:39.463191Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}]}" + headers: + Content-Length: + - "13541" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 8a042bd9-8be3-442d-98b1-38157664a660 + status: 200 OK + code: 200 + duration: 1.02703751s diff --git a/internal/services/account/testdata/project-basic.cassette.yaml b/internal/services/account/testdata/project-basic.cassette.yaml index 65bb4b9e3..8b470532f 100644 --- a/internal/services/account/testdata/project-basic.cassette.yaml +++ b/internal/services/account/testdata/project-basic.cassette.yaml @@ -1,544 +1,359 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 120 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_project_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":"a description"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 255 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.591594Z","description":"a description","id":"6f4b3d78-118e-4f58-b50b-af932ba490a6","name":"tf_tests_project_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:21.591594Z"}' - headers: - Content-Length: - - "255" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:22 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f8c10a85-63c3-41a3-9519-3dd30211bf3d - status: 200 OK - code: 200 - duration: 544.036416ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/6f4b3d78-118e-4f58-b50b-af932ba490a6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 255 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.591594Z","description":"a description","id":"6f4b3d78-118e-4f58-b50b-af932ba490a6","name":"tf_tests_project_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:21.591594Z"}' - headers: - Content-Length: - - "255" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:22 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fe945cfa-5f9f-4c18-93da-f298fac43eca - status: 200 OK - code: 200 - duration: 132.082958ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/6f4b3d78-118e-4f58-b50b-af932ba490a6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 255 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.591594Z","description":"a description","id":"6f4b3d78-118e-4f58-b50b-af932ba490a6","name":"tf_tests_project_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:21.591594Z"}' - headers: - Content-Length: - - "255" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:22 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d8f046ef-c72a-4bbc-b1e0-0cc567e784b8 - status: 200 OK - code: 200 - duration: 142.815375ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/6f4b3d78-118e-4f58-b50b-af932ba490a6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 255 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.591594Z","description":"a description","id":"6f4b3d78-118e-4f58-b50b-af932ba490a6","name":"tf_tests_project_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:21.591594Z"}' - headers: - Content-Length: - - "255" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:23 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5b9720b0-6169-43fb-9e0d-71cc366f11aa - status: 200 OK - code: 200 - duration: 134.32775ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/6f4b3d78-118e-4f58-b50b-af932ba490a6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 255 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.591594Z","description":"a description","id":"6f4b3d78-118e-4f58-b50b-af932ba490a6","name":"tf_tests_project_basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:21.591594Z"}' - headers: - Content-Length: - - "255" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:24 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 21fc5e44-f473-4e68-925c-9e4e5693da3e - status: 200 OK - code: 200 - duration: 120.710875ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 76 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_project_basic_rename","description":"another description"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/6f4b3d78-118e-4f58-b50b-af932ba490a6 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 268 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.591594Z","description":"another description","id":"6f4b3d78-118e-4f58-b50b-af932ba490a6","name":"tf_tests_project_basic_rename","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:25.088260Z"}' - headers: - Content-Length: - - "268" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ec1e657d-cd81-4fb0-bfe0-10ae8750d1ea - status: 200 OK - code: 200 - duration: 177.650792ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/6f4b3d78-118e-4f58-b50b-af932ba490a6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 268 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.591594Z","description":"another description","id":"6f4b3d78-118e-4f58-b50b-af932ba490a6","name":"tf_tests_project_basic_rename","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:25.088260Z"}' - headers: - Content-Length: - - "268" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5d658730-a70b-4617-9ec2-194cfbab9e2a - status: 200 OK - code: 200 - duration: 118.610958ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/6f4b3d78-118e-4f58-b50b-af932ba490a6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 268 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.591594Z","description":"another description","id":"6f4b3d78-118e-4f58-b50b-af932ba490a6","name":"tf_tests_project_basic_rename","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:25.088260Z"}' - headers: - Content-Length: - - "268" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e7b3fdcf-082a-4aa6-8498-8b3e2b5fb293 - status: 200 OK - code: 200 - duration: 111.471708ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/6f4b3d78-118e-4f58-b50b-af932ba490a6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 268 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.591594Z","description":"another description","id":"6f4b3d78-118e-4f58-b50b-af932ba490a6","name":"tf_tests_project_basic_rename","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:25.088260Z"}' - headers: - Content-Length: - - "268" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:26 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c943f871-4959-42fd-9e66-06646a6d82a5 - status: 200 OK - code: 200 - duration: 157.05475ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/6f4b3d78-118e-4f58-b50b-af932ba490a6 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:28 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c9c420e4-5433-4d50-b19d-bd83b4bce7b2 - status: 204 No Content - code: 204 - duration: 1.3194985s - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/6f4b3d78-118e-4f58-b50b-af932ba490a6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 131 - uncompressed: false - body: '{"message":"resource is not found","resource":"project_id","resource_id":"6f4b3d78-118e-4f58-b50b-af932ba490a6","type":"not_found"}' - headers: - Content-Length: - - "131" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:28 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dc09d55c-4e2d-468a-9f87-ea616e52307c - status: 404 Not Found - code: 404 - duration: 23.223583ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 120 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_project_basic\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"a description\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 277 + body: "{\"id\":\"2a654f58-e576-4b85-9a75-9c9bb25885ca\", \"name\":\"tf_tests_project_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.398305Z\", \"updated_at\":\"2025-11-17T10:06:39.398305Z\", \"description\":\"a description\", \"qualification\":null}" + headers: + Content-Length: + - "277" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 0cfe6cb0-a1d2-4a52-b0b7-f7f1173670f3 + status: 200 OK + code: 200 + duration: 592.656834ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/2a654f58-e576-4b85-9a75-9c9bb25885ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"2a654f58-e576-4b85-9a75-9c9bb25885ca\", \"name\":\"tf_tests_project_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.398305Z\", \"updated_at\":\"2025-11-17T10:06:39.398305Z\", \"description\":\"a description\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - e808758f-c524-4a67-ad51-ab0151239fb3 + status: 200 OK + code: 200 + duration: 313.201634ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/2a654f58-e576-4b85-9a75-9c9bb25885ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"2a654f58-e576-4b85-9a75-9c9bb25885ca\", \"name\":\"tf_tests_project_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.398305Z\", \"updated_at\":\"2025-11-17T10:06:39.398305Z\", \"description\":\"a description\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 1e03526c-136e-4e13-afcd-e965263d9a13 + status: 200 OK + code: 200 + duration: 227.100702ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/2a654f58-e576-4b85-9a75-9c9bb25885ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"2a654f58-e576-4b85-9a75-9c9bb25885ca\", \"name\":\"tf_tests_project_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.398305Z\", \"updated_at\":\"2025-11-17T10:06:39.398305Z\", \"description\":\"a description\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - d35a0fc0-b6cf-4e4f-a8f9-c8d9a2921a0b + status: 200 OK + code: 200 + duration: 287.788632ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/2a654f58-e576-4b85-9a75-9c9bb25885ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 322 + body: "{\"id\":\"2a654f58-e576-4b85-9a75-9c9bb25885ca\", \"name\":\"tf_tests_project_basic\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.398305Z\", \"updated_at\":\"2025-11-17T10:06:39.398305Z\", \"description\":\"a description\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "322" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - ee7ec949-43bb-4120-9d88-39ff15cf9acb + status: 200 OK + code: 200 + duration: 270.815202ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 76 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_project_basic_rename\",\"description\":\"another description\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/2a654f58-e576-4b85-9a75-9c9bb25885ca + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 290 + body: "{\"id\":\"2a654f58-e576-4b85-9a75-9c9bb25885ca\", \"name\":\"tf_tests_project_basic_rename\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.398305Z\", \"updated_at\":\"2025-11-17T10:06:41.785609Z\", \"description\":\"another description\", \"qualification\":null}" + headers: + Content-Length: + - "290" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - a3326fac-3e15-4ce9-8a6e-2f8773e94513 + status: 200 OK + code: 200 + duration: 234.930172ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/2a654f58-e576-4b85-9a75-9c9bb25885ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 335 + body: "{\"id\":\"2a654f58-e576-4b85-9a75-9c9bb25885ca\", \"name\":\"tf_tests_project_basic_rename\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.398305Z\", \"updated_at\":\"2025-11-17T10:06:41.785609Z\", \"description\":\"another description\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "335" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 3b678f1b-65a5-4f4d-9b3a-308863a92dae + status: 200 OK + code: 200 + duration: 282.078522ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/2a654f58-e576-4b85-9a75-9c9bb25885ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 335 + body: "{\"id\":\"2a654f58-e576-4b85-9a75-9c9bb25885ca\", \"name\":\"tf_tests_project_basic_rename\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.398305Z\", \"updated_at\":\"2025-11-17T10:06:41.785609Z\", \"description\":\"another description\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "335" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - bd15bf36-b32e-4d83-992c-cc9c17a477e8 + status: 200 OK + code: 200 + duration: 1.073140395s +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/2a654f58-e576-4b85-9a75-9c9bb25885ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 335 + body: "{\"id\":\"2a654f58-e576-4b85-9a75-9c9bb25885ca\", \"name\":\"tf_tests_project_basic_rename\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.398305Z\", \"updated_at\":\"2025-11-17T10:06:41.785609Z\", \"description\":\"another description\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "335" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 5e6062de-2fe5-4a6c-8fda-ef9d71ecf435 + status: 200 OK + code: 200 + duration: 250.650199ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/2a654f58-e576-4b85-9a75-9c9bb25885ca + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 5a91b2bd-22f6-4b17-a6f8-414723071088 + status: 204 No Content + code: 204 + duration: 1.913259079s +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/2a654f58-e576-4b85-9a75-9c9bb25885ca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 131 + body: "{\"message\":\"resource is not found\",\"resource\":\"project_id\",\"resource_id\":\"2a654f58-e576-4b85-9a75-9c9bb25885ca\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "131" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 8d606d2e-a711-4e89-a586-5c44531d2b63 + status: 404 Not Found + code: 404 + duration: 40.241491ms diff --git a/internal/services/account/testdata/project-no-update.cassette.yaml b/internal/services/account/testdata/project-no-update.cassette.yaml index 546725ec7..e3e5b64a7 100644 --- a/internal/services/account/testdata/project-no-update.cassette.yaml +++ b/internal/services/account/testdata/project-no-update.cassette.yaml @@ -1,444 +1,292 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 110 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf_tests_project_noupdate","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","description":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 245 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.668650Z","description":"","id":"a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3","name":"tf_tests_project_noupdate","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:21.668650Z"}' - headers: - Content-Length: - - "245" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:22 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - de50816c-ef7b-48f3-9937-7f58af2897df - status: 200 OK - code: 200 - duration: 590.661458ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 245 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.668650Z","description":"","id":"a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3","name":"tf_tests_project_noupdate","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:21.668650Z"}' - headers: - Content-Length: - - "245" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:22 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 38641abb-8a7c-4b83-81f6-92ef0b0c2020 - status: 200 OK - code: 200 - duration: 127.909458ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 245 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.668650Z","description":"","id":"a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3","name":"tf_tests_project_noupdate","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:21.668650Z"}' - headers: - Content-Length: - - "245" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:22 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 81a62cd2-2810-4e83-a9c1-51d49101e2a6 - status: 200 OK - code: 200 - duration: 105.052333ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 245 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.668650Z","description":"","id":"a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3","name":"tf_tests_project_noupdate","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:21.668650Z"}' - headers: - Content-Length: - - "245" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:23 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0003e2c8-c17b-4076-b4b1-252713bedd53 - status: 200 OK - code: 200 - duration: 109.272459ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 245 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.668650Z","description":"","id":"a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3","name":"tf_tests_project_noupdate","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:21.668650Z"}' - headers: - Content-Length: - - "245" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:24 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 52c54348-02b4-4619-a100-8956b68bdaf3 - status: 200 OK - code: 200 - duration: 110.503292ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 245 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.668650Z","description":"","id":"a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3","name":"tf_tests_project_noupdate","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:21.668650Z"}' - headers: - Content-Length: - - "245" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 030ed1c4-704a-46ca-8ac1-7d0a9a0e9031 - status: 200 OK - code: 200 - duration: 135.748833ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 245 - uncompressed: false - body: '{"created_at":"2025-01-22T13:14:21.668650Z","description":"","id":"a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3","name":"tf_tests_project_noupdate","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2025-01-22T13:14:21.668650Z"}' - headers: - Content-Length: - - "245" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0968cd36-a06d-4dbf-8bbf-f32eb284d902 - status: 200 OK - code: 200 - duration: 112.981792ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:27 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4b5523b5-1128-4042-98a7-a069fa2103c0 - status: 204 No Content - code: 204 - duration: 1.2172265s - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/account/v3/projects/a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 131 - uncompressed: false - body: '{"message":"resource is not found","resource":"project_id","resource_id":"a65cb25f-416d-4ef8-be1e-ce19bc0ef2d3","type":"not_found"}' - headers: - Content-Length: - - "131" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 22 Jan 2025 13:14:27 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7793c03a-c14d-47f4-a699-c397314ca4e2 - status: 404 Not Found - code: 404 - duration: 25.033333ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 110 + host: api.scaleway.com + body: "{\"name\":\"tf_tests_project_noupdate\",\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"description\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 267 + body: "{\"id\":\"669fc77e-afdc-4404-bf3c-504346bf39e9\", \"name\":\"tf_tests_project_noupdate\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.463191Z\", \"updated_at\":\"2025-11-17T10:06:39.463191Z\", \"description\":\"\", \"qualification\":null}" + headers: + Content-Length: + - "267" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 0cdc1883-d4ed-45ea-8b36-e963973f448d + status: 200 OK + code: 200 + duration: 651.492129ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/669fc77e-afdc-4404-bf3c-504346bf39e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 312 + body: "{\"id\":\"669fc77e-afdc-4404-bf3c-504346bf39e9\", \"name\":\"tf_tests_project_noupdate\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.463191Z\", \"updated_at\":\"2025-11-17T10:06:39.463191Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "312" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 0248cd21-724d-489a-9c4a-d28c0c81d88b + status: 200 OK + code: 200 + duration: 276.059204ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/669fc77e-afdc-4404-bf3c-504346bf39e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 312 + body: "{\"id\":\"669fc77e-afdc-4404-bf3c-504346bf39e9\", \"name\":\"tf_tests_project_noupdate\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.463191Z\", \"updated_at\":\"2025-11-17T10:06:39.463191Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "312" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 15584ebc-2e45-4338-859c-354eb86f568f + status: 200 OK + code: 200 + duration: 246.850131ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/669fc77e-afdc-4404-bf3c-504346bf39e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 312 + body: "{\"id\":\"669fc77e-afdc-4404-bf3c-504346bf39e9\", \"name\":\"tf_tests_project_noupdate\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.463191Z\", \"updated_at\":\"2025-11-17T10:06:39.463191Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "312" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 26130530-f668-48e3-8347-ca27cf5ddabc + status: 200 OK + code: 200 + duration: 221.554079ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/669fc77e-afdc-4404-bf3c-504346bf39e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 312 + body: "{\"id\":\"669fc77e-afdc-4404-bf3c-504346bf39e9\", \"name\":\"tf_tests_project_noupdate\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.463191Z\", \"updated_at\":\"2025-11-17T10:06:39.463191Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "312" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - d7879f2a-ec9e-469b-9087-33b6e2843dc5 + status: 200 OK + code: 200 + duration: 91.51464ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/669fc77e-afdc-4404-bf3c-504346bf39e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 312 + body: "{\"id\":\"669fc77e-afdc-4404-bf3c-504346bf39e9\", \"name\":\"tf_tests_project_noupdate\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.463191Z\", \"updated_at\":\"2025-11-17T10:06:39.463191Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "312" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - bb7c0411-d4c3-427e-963b-3f39c104e686 + status: 200 OK + code: 200 + duration: 210.395401ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/669fc77e-afdc-4404-bf3c-504346bf39e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 312 + body: "{\"id\":\"669fc77e-afdc-4404-bf3c-504346bf39e9\", \"name\":\"tf_tests_project_noupdate\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-17T10:06:39.463191Z\", \"updated_at\":\"2025-11-17T10:06:39.463191Z\", \"description\":\"\", \"qualification\":{\"architecture_type\":\"unknown_architecture_type\"}}" + headers: + Content-Length: + - "312" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - bcc2f1f5-6b32-4c6a-ab38-f9642b11d098 + status: 200 OK + code: 200 + duration: 143.218825ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/669fc77e-afdc-4404-bf3c-504346bf39e9 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - c5378dd8-2822-40f3-94e4-c408747a7784 + status: 204 No Content + code: 204 + duration: 2.639179563s +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.3; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/account/v3/projects/669fc77e-afdc-4404-bf3c-504346bf39e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 131 + body: "{\"message\":\"resource is not found\",\"resource\":\"project_id\",\"resource_id\":\"669fc77e-afdc-4404-bf3c-504346bf39e9\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "131" + Content-Type: + - application/json + Date: + - Mon, 17 Nov 2025 10:06:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 62d36171-9009-4432-b191-8239bafcf0ce + status: 404 Not Found + code: 404 + duration: 39.62823ms