https://github.com/equinix/equinix-sdk-go
Golang client for Equinix APIs
https://github.com/equinix/equinix-sdk-go
baremetal equinix equinix-metal equinix-metal-api go golang
Last synced: 3 months ago
JSON representation
Golang client for Equinix APIs
- Host: GitHub
- URL: https://github.com/equinix/equinix-sdk-go
- Owner: equinix
- License: mit
- Created: 2023-11-14T16:16:25.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-01T14:55:35.000Z (11 months ago)
- Last Synced: 2024-11-01T15:33:50.225Z (11 months ago)
- Topics: baremetal, equinix, equinix-metal, equinix-metal-api, go, golang
- Language: Mustache
- Homepage: https://deploy.equinix.com/labs/equinix-sdk-go
- Size: 39.3 MB
- Stars: 2
- Watchers: 5
- Forks: 5
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Equinix Go SDK
[](https://github.com/equinix/equinix-sdk-go/releases/latest)
[](https://godoc.org/github.com/equinix/equinix-sdk-go)This is the official Go SDK for Equinix services. This SDK is currently provided with a major version of [v0](https://blog.golang.org/v2-go-modules). We aim to avoid breaking changes to this library, but they will certainly happen as we work towards a stable v1 library.
Each Equinix service supported by this SDK is maintained as a separate package that is generated from the OpenAPI specification for that service. If any Equinix service is not supported by this SDK and you would like to see it added, please [submit a change request](CONTRIBUTING.md)
## Installation
To import this library into your Go project:
```go
import "github.com/equinix/equinix-sdk-go"
```Download the module with:
```sh
go get github.com/equinix/equinix-sdk-go
```## Usage
You can see usage of the generated code in the [`examples` directory](https://github.com/equinix/equinix-sdk-go/tree/main/examples).
Full package documentation is available at .