{"id":19411517,"url":"https://github.com/volcengine/volcengine-go-sdk","last_synced_at":"2026-02-05T14:11:07.532Z","repository":{"id":41312336,"uuid":"509019087","full_name":"volcengine/volcengine-go-sdk","owner":"volcengine","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-23T06:52:29.000Z","size":15357,"stargazers_count":121,"open_issues_count":3,"forks_count":33,"subscribers_count":3,"default_branch":"master","last_synced_at":"2026-01-24T00:23:03.274Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/volcengine.png","metadata":{"files":{"readme":"README.EN.MD","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE.txt","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-06-30T09:39:01.000Z","updated_at":"2026-01-23T06:52:34.000Z","dependencies_parsed_at":"2026-01-15T14:08:41.235Z","dependency_job_id":null,"html_url":"https://github.com/volcengine/volcengine-go-sdk","commit_stats":null,"previous_names":[],"tags_count":248,"template":false,"template_full_name":null,"purl":"pkg:github/volcengine/volcengine-go-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/volcengine%2Fvolcengine-go-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/volcengine%2Fvolcengine-go-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/volcengine%2Fvolcengine-go-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/volcengine%2Fvolcengine-go-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/volcengine","download_url":"https://codeload.github.com/volcengine/volcengine-go-sdk/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/volcengine%2Fvolcengine-go-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28879149,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T10:31:27.438Z","status":"ssl_error","status_checked_at":"2026-01-29T10:31:01.017Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-11-10T12:21:50.633Z","updated_at":"2026-01-29T14:14:37.748Z","avatar_url":"https://github.com/volcengine.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"English | [中文](README.MD)\n\n### Volcengine SDK for Go\n\n#### Overview\n\n1. Volcengine Cloud Go SDK.\n2. Minimum Go version: **1.14+**. If using Ark service (`service/arkruntime`), **1.18+** is required.\n3. Files in the `service` directory are auto-generated; do not modify them.\n4. It is recommended to use `go mod` for dependency management.\n\n#### Endpoint Configuration\n\nIf you want to customize the SDK endpoint, use the following code:\n\n```go\nconfig = volcengine.NewConfig().\n        WithCredentials(credentials.NewStaticCredentials(ak, sk, \"\")).\n        WithRegion(region).WithEndpoint(\"ecs.cn-beijing-autodriving.volcengineapi.com\")\n```\n\nStandard endpoint rules:\n\n| Regional Service | Global Service |\n|---|---|\n| `{service}.{region}.volcengineapi.com` \u003cbr\u003e Example: `ecs.cn-beijing-autodriving.volcengineapi.com` | `{service}.volcengineapi.com` \u003cbr\u003e Example: `iam.volcengineapi.com` |\n\nNote:\n\n- If the service name contains `_`, it should be converted to `-` in the endpoint. Use lowercase for all characters.\n\n#### Code Example\n\nExamples are available in the `example` directory.\n\n```go\npackage main\n\nimport (\n    \"fmt\"\n\n    \"github.com/volcengine/volcengine-go-sdk/service/vpc\"\n    \"github.com/volcengine/volcengine-go-sdk/volcengine\"\n    \"github.com/volcengine/volcengine-go-sdk/volcengine/credentials\"\n    \"github.com/volcengine/volcengine-go-sdk/volcengine/session\"\n)\n\nfunc main() {\n    var (\n        ak     string\n        sk     string\n        region string\n        config *volcengine.Config\n        sess   *session.Session\n        client *vpc.VPC\n        resp   *vpc.DescribeVpcsOutput\n        err    error\n    )\n    ak = \"your ak\"\n    sk = \"your sk\"\n    region = \"cn-beijing\"\n    config = volcengine.NewConfig().\n        WithCredentials(credentials.NewStaticCredentials(ak, sk, \"\")).\n        WithRegion(region)\n\n    sess, err = session.NewSession(config)\n    if err != nil {\n        panic(err)\n    }\n\n    client = vpc.New(sess)\n\n    resp, err = client.DescribeVpcs(\u0026vpc.DescribeVpcsInput{\n        PageNumber: volcengine.Int64(1),\n        PageSize:   volcengine.Int64(10),\n    })\n\n    if err != nil {\n        panic(err)\n    }\n\n    fmt.Println(\u0026resp)\n}\n```\n\nFor more examples, see: [SDK Integration Guide](./SDK_Integration.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvolcengine%2Fvolcengine-go-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvolcengine%2Fvolcengine-go-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvolcengine%2Fvolcengine-go-sdk/lists"}