github.com/influxdata/influxdb/v2@v2.7.6/remotes/internal/http_config.go (about)

     1  package internal
     2  
     3  import "github.com/influxdata/influxdb/v2/kit/platform"
     4  
     5  // RemoteConnectionHTTPConfig contains all info needed by a client to make HTTP requests against a
     6  // remote InfluxDB API.
     7  type RemoteConnectionHTTPConfig struct {
     8  	RemoteURL        string      `db:"remote_url"`
     9  	RemoteToken      string      `db:"remote_api_token"`
    10  	RemoteOrgID      platform.ID `db:"remote_org_id"`
    11  	AllowInsecureTLS bool        `db:"allow_insecure_tls"`
    12  }