Documentation ¶
Index ¶
Constants ¶
const ( // DefaultHost is the default Host // found in Meta (info) section of spec file DefaultHost string = "meetup.looker.com:19999" // DefaultBasePath is the default BasePath // found in Meta (info) section of spec file DefaultBasePath string = "/api/3.1" )
Variables ¶
var Default = NewHTTPClient(nil)
Default looker HTTP client.
var DefaultSchemes = []string{"https"}
DefaultSchemes are the default schemes found in Meta (info) section of spec file
Functions ¶
This section is empty.
Types ¶
type Looker ¶
type Looker struct { APIAuth *api_auth.Client Auth *auth.Client ColorCollection *color_collection.Client Config *config.Client Connection *connection.Client Content *content.Client Dashboard *dashboard.Client DataAction *data_action.Client Datagroup *datagroup.Client Folder *folder.Client Group *group.Client Homepage *homepage.Client Integration *integration.Client Look *look.Client LookmlModel *lookml_model.Client Project *project.Client Query *query.Client RenderTask *render_task.Client Role *role.Client ScheduledPlan *scheduled_plan.Client Session *session.Client Space *space.Client Theme *theme.Client User *user.Client UserAttribute *user_attribute.Client Workspace *workspace.Client Transport runtime.ClientTransport }
Looker is a client for looker
func New ¶
func New(transport runtime.ClientTransport, formats strfmt.Registry) *Looker
New creates a new looker client
func NewHTTPClient ¶
NewHTTPClient creates a new looker HTTP client.
func NewHTTPClientWithConfig ¶
func NewHTTPClientWithConfig(formats strfmt.Registry, cfg *TransportConfig) *Looker
NewHTTPClientWithConfig creates a new looker HTTP client, using a customizable transport config.
func (*Looker) SetTransport ¶
func (c *Looker) SetTransport(transport runtime.ClientTransport)
SetTransport changes the transport on the client and all its subresources
type TransportConfig ¶
TransportConfig contains the transport related info, found in the meta section of the spec file.
func DefaultTransportConfig ¶
func DefaultTransportConfig() *TransportConfig
DefaultTransportConfig creates a TransportConfig with the default settings taken from the meta section of the spec file.
func (*TransportConfig) WithBasePath ¶
func (cfg *TransportConfig) WithBasePath(basePath string) *TransportConfig
WithBasePath overrides the default basePath, provided by the meta section of the spec file.
func (*TransportConfig) WithHost ¶
func (cfg *TransportConfig) WithHost(host string) *TransportConfig
WithHost overrides the default host, provided by the meta section of the spec file.
func (*TransportConfig) WithSchemes ¶
func (cfg *TransportConfig) WithSchemes(schemes []string) *TransportConfig
WithSchemes overrides the default schemes, provided by the meta section of the spec file.