-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from komminarlabs/tk/InitialVersion
Initial Version
- Loading branch information
Showing
6 changed files
with
5,063 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,85 @@ | ||
# influxdb3 | ||
InfluxDB V3 Go SDK | ||
# InfluxDB v3 Cloud Dedicated Management API Client Library | ||
|
||
The InfluxDB v3 Management API client library lets you manage an InfluxDB Cloud Dedicated instance and integrate functions such as creating and managing databases, permissions, and tokens into your workflow or application. | ||
|
||
## Generated types and API client | ||
|
||
This library is generated from the [OpenAPI spec](https://github.com/influxdata/docs-v2/blob/master/api-docs/cloud-dedicated/management/openapi.yml) | ||
|
||
### Generate | ||
|
||
#### Generate types | ||
`oapi-codegen -generate types -o types.gen.go -package influxdb3 openapi.yml` | ||
|
||
#### Generate client | ||
`oapi-codegen -generate client -o client.gen.go -package influxdb3 openapi.yml` | ||
|
||
|
||
## Usage | ||
|
||
### Environment variables | ||
|
||
```bash | ||
export INFLUXDB_BASE_URL="https://console.influxdata.com/api/v0" | ||
export INFLUXDB_ACCOUNT_ID="4ade9b2e-0a52-4a46-b3b8-1b43ea493a98" | ||
export INFLUXDB_CLUSTER_ID="a379c48a-791e-47fe-ba64-628ba19507e8" | ||
export INFLUXDB_TOKEN="1e0f14063eb14a9e94fe765bf999a90cb7962f8e0f394110b91053ea26cdce5071d6bca29e4d4684bed463cf2ea9f381" | ||
``` | ||
|
||
### Sample code to list database tokens | ||
|
||
```go | ||
package main | ||
|
||
import ( | ||
"context" | ||
"io" | ||
"net/http" | ||
|
||
"github.com/caarlos0/env/v11" | ||
influxdb3 "github.com/komminarlabs/influxdb3" | ||
) | ||
|
||
type InfluxdbConfig struct { | ||
AccountId influxdb3.UuidV4 `env:"INFLUXDB_ACCOUNT_ID"` | ||
BaseURL string `env:"INFLUXDB_BASE_URL"` | ||
ClusterId influxdb3.UuidV4 `env:"INFLUXDB_CLUSTER_ID"` | ||
Token string `env:"INFLUXDB_TOKEN"` | ||
} | ||
|
||
func main() { | ||
cfg := InfluxdbConfig{} | ||
opts := env.Options{RequiredIfNoDef: true} | ||
|
||
err := env.ParseWithOptions(&cfg, opts) | ||
if err != nil { | ||
panic(err) | ||
} | ||
|
||
ctx := context.Background() | ||
client, err := influxdb3.NewClient(cfg.BaseURL, influxdb3.WithRequestEditorFn(func(ctx context.Context, req *http.Request) error { | ||
req.Header.Set("Accept", "application/json") | ||
req.Header.Set("Authorization", "Bearer "+cfg.Token) | ||
return nil | ||
|
||
})) | ||
if err != nil { | ||
panic(err) | ||
} | ||
|
||
resp, err := client.GetDatabaseTokens(ctx, cfg.AccountId, cfg.ClusterId) | ||
if err != nil { | ||
panic(err) | ||
} | ||
defer resp.Body.Close() | ||
|
||
if resp.StatusCode == http.StatusOK { | ||
bodyBytes, err := io.ReadAll(resp.Body) | ||
if err != nil { | ||
panic(err) | ||
} | ||
bodyString := string(bodyBytes) | ||
println(bodyString) | ||
} | ||
} | ||
``` |
Oops, something went wrong.