{"id":13983778,"url":"https://github.com/scaleway/scaleway-sdk-go","last_synced_at":"2025-12-29T23:38:12.883Z","repository":{"id":37773956,"uuid":"183247201","full_name":"scaleway/scaleway-sdk-go","owner":"scaleway","description":"Integrate Scaleway with your Go application","archived":false,"fork":false,"pushed_at":"2024-11-22T08:43:53.000Z","size":6001,"stargazers_count":111,"open_issues_count":18,"forks_count":44,"subscribers_count":10,"default_branch":"master","last_synced_at":"2024-11-22T09:28:35.374Z","etag":null,"topics":["scaleway","sdk-go"],"latest_commit_sha":null,"homepage":"https://pkg.go.dev/github.com/scaleway/scaleway-sdk-go","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/scaleway.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-04-24T14:35:32.000Z","updated_at":"2024-11-22T08:43:56.000Z","dependencies_parsed_at":"2023-09-27T14:12:09.375Z","dependency_job_id":"e644a839-e971-40b3-a5f8-af6a4b9957a3","html_url":"https://github.com/scaleway/scaleway-sdk-go","commit_stats":null,"previous_names":[],"tags_count":30,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scaleway%2Fscaleway-sdk-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scaleway%2Fscaleway-sdk-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scaleway%2Fscaleway-sdk-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scaleway%2Fscaleway-sdk-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scaleway","download_url":"https://codeload.github.com/scaleway/scaleway-sdk-go/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226998846,"owners_count":17715399,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["scaleway","sdk-go"],"created_at":"2024-08-09T05:01:55.125Z","updated_at":"2025-12-29T23:38:12.850Z","avatar_url":"https://github.com/scaleway.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003cimg width=\"50%\" src=\"docs/static_files/sdk-artwork.png\" /\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://pkg.go.dev/github.com/scaleway/scaleway-sdk-go?tab=doc\"\u003e\u003cimg src=\"https://pkg.go.dev/badge/github.com/scaleway/scaleway-sdk-go/\" alt=\"PkgGoDev\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/scaleway/scaleway-sdk-go/actions?query=workflow%3Apull-request\"\u003e\u003cimg src=\"https://github.com/scaleway/scaleway-sdk-go/workflows/pull-request/badge.svg\" alt=\"GitHub Actions\" /\u003e\u003c/a\u003e\n  \u003ca href=\"https://goreportcard.com/report/github.com/scaleway/scaleway-sdk-go\"\u003e\u003cimg src=\"https://goreportcard.com/badge/scaleway/scaleway-sdk-go\" alt=\"GoReportCard\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n# Scaleway GO SDK\n\n**:warning: This is an early release, keep in mind that the API can break**\n\nScaleway is a single way to create, deploy and scale your infrastructure in the cloud. We help thousands of businesses to run their infrastructures easily.\n\n## Documentation\n\n- [Godoc](https://pkg.go.dev/github.com/scaleway/scaleway-sdk-go?tab=doc)\n- [Developers website](https://www.scaleway.com/en/developers/) (API documentation)\n- [Products availability guide](https://www.scaleway.com/en/docs/console/my-account/reference-content/products-availability/)\n- [The community tools](https://www.scaleway.com/en/developers/#official-repos)\n\n## Installation\n\n```bash\ngo get github.com/scaleway/scaleway-sdk-go\n```\n\n## Getting Started\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/scaleway/scaleway-sdk-go/api/instance/v1\"\n\t\"github.com/scaleway/scaleway-sdk-go/scw\"\n\t\"github.com/scaleway/scaleway-sdk-go/utils\"\n)\n\nfunc main() {\n\n\t// Create a Scaleway client\n\tclient, err := scw.NewClient(\n\t\t// Get your organization ID at https://console.scaleway.com/organization/settings\n\t\tscw.WithDefaultOrganizationID(\"SCW_DEFAULT_ORGANIZATION_ID\"),\n\t\t// Get your credentials at https://console.scaleway.com/iam/api-keys\n\t\tscw.WithAuth(\"SCW_ACCESS_KEY\", \"SCW_SECRET_KEY\"),\n\t\t// Get more about our availability zones at https://www.scaleway.com/en/docs/console/my-account/reference-content/products-availability/\n\t\tscw.WithDefaultRegion(\"SCW_REGION\"),\n\t)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\t// Create SDK objects for Scaleway Instance product\n\tinstanceApi := instance.NewAPI(client)\n\n\t// Call the ListServers method on the Instance SDK\n\tresponse, err := instanceApi.ListServers(\u0026instance.ListServersRequest{\n\t\tZone: scw.ZoneFrPar1,\n\t})\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\t// Do something with the response...\n\tfor _, server := range response.Servers {\n\t\tfmt.Println(\"Server\", server.ID, server.Name)\n\t}\n\n}\n```\n\n## Examples\n\nYou can find additional examples in the [GoDoc](https://pkg.go.dev/github.com/scaleway/scaleway-sdk-go?tab=doc).\n\n## Development\n\nThis repository is at its early stage and is still in active development.\nIf you are looking for a way to contribute please read [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## Reach us\n\nWe love feedback.\nFeel free to reach us on [Scaleway Slack community](https://slack.scaleway.com/), we are waiting for you on [#opensource](https://scaleway-community.slack.com/app_redirect?channel=opensource).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscaleway%2Fscaleway-sdk-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscaleway%2Fscaleway-sdk-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscaleway%2Fscaleway-sdk-go/lists"}