
* refactor: take clients out of internal * refactor: move stdio to pkg * Move internal/api to api * refactor: final changes for Kapacitor to access shared functionality * chore: regenerate mocks * fix: bad automated refactor * chore: extra formatting not caught by make fmt
21 lines
275 B
Go
21 lines
275 B
Go
package clients
|
|
|
|
import (
|
|
"github.com/influxdata/influx-cli/v2/pkg/influxid"
|
|
)
|
|
|
|
type OrgParams struct {
|
|
OrgID influxid.ID
|
|
OrgName string
|
|
}
|
|
|
|
type BucketParams struct {
|
|
BucketID influxid.ID
|
|
BucketName string
|
|
}
|
|
|
|
type OrgBucketParams struct {
|
|
OrgParams
|
|
BucketParams
|
|
}
|