zrok/rest_client_zrok/zrok_client.go

133 lines
3.7 KiB
Go
Raw Normal View History

2022-07-22 16:52:36 +02:00
// Code generated by go-swagger; DO NOT EDIT.
package rest_client_zrok
2022-07-22 16:52:36 +02:00
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"github.com/go-openapi/runtime"
httptransport "github.com/go-openapi/runtime/client"
"github.com/go-openapi/strfmt"
"github.com/openziti/zrok/rest_client_zrok/account"
"github.com/openziti/zrok/rest_client_zrok/admin"
"github.com/openziti/zrok/rest_client_zrok/environment"
"github.com/openziti/zrok/rest_client_zrok/metadata"
"github.com/openziti/zrok/rest_client_zrok/share"
2022-07-22 16:52:36 +02:00
)
// Default zrok HTTP client.
2022-07-22 16:52:36 +02:00
var Default = NewHTTPClient(nil)
const (
// DefaultHost is the default Host
2022-07-22 16:52:36 +02:00
// found in Meta (info) section of spec file
DefaultHost string = "localhost"
// DefaultBasePath is the default BasePath
// found in Meta (info) section of spec file
DefaultBasePath string = "/api/v1"
2022-07-22 16:52:36 +02:00
)
// DefaultSchemes are the default schemes found in Meta (info) section of spec file
var DefaultSchemes = []string{"http"}
// NewHTTPClient creates a new zrok HTTP client.
func NewHTTPClient(formats strfmt.Registry) *Zrok {
2022-07-22 16:52:36 +02:00
return NewHTTPClientWithConfig(formats, nil)
}
// NewHTTPClientWithConfig creates a new zrok HTTP client,
2022-07-22 16:52:36 +02:00
// using a customizable transport config.
func NewHTTPClientWithConfig(formats strfmt.Registry, cfg *TransportConfig) *Zrok {
2022-07-22 16:52:36 +02:00
// ensure nullable parameters have default
if cfg == nil {
cfg = DefaultTransportConfig()
}
// create transport and client
transport := httptransport.New(cfg.Host, cfg.BasePath, cfg.Schemes)
return New(transport, formats)
}
// New creates a new zrok client
func New(transport runtime.ClientTransport, formats strfmt.Registry) *Zrok {
2022-07-22 16:52:36 +02:00
// ensure nullable parameters have default
if formats == nil {
formats = strfmt.Default
}
cli := new(Zrok)
2022-07-22 16:52:36 +02:00
cli.Transport = transport
2022-11-30 17:43:00 +01:00
cli.Account = account.New(transport, formats)
cli.Admin = admin.New(transport, formats)
2022-11-30 17:43:00 +01:00
cli.Environment = environment.New(transport, formats)
2022-07-22 16:52:36 +02:00
cli.Metadata = metadata.New(transport, formats)
cli.Share = share.New(transport, formats)
2022-07-22 16:52:36 +02:00
return cli
}
// DefaultTransportConfig creates a TransportConfig with the
// default settings taken from the meta section of the spec file.
func DefaultTransportConfig() *TransportConfig {
return &TransportConfig{
Host: DefaultHost,
BasePath: DefaultBasePath,
Schemes: DefaultSchemes,
}
2022-07-22 18:24:45 +02:00
}
// TransportConfig contains the transport related info,
// found in the meta section of the spec file.
2022-07-22 16:52:36 +02:00
type TransportConfig struct {
Host string
BasePath string
Schemes []string
}
// WithHost overrides the default host,
// provided by the meta section of the spec file.
func (cfg *TransportConfig) WithHost(host string) *TransportConfig {
cfg.Host = host
return cfg
}
// WithBasePath overrides the default basePath,
// provided by the meta section of the spec file.
func (cfg *TransportConfig) WithBasePath(basePath string) *TransportConfig {
cfg.BasePath = basePath
return cfg
}
// WithSchemes overrides the default schemes,
// provided by the meta section of the spec file.
func (cfg *TransportConfig) WithSchemes(schemes []string) *TransportConfig {
cfg.Schemes = schemes
return cfg
}
// Zrok is a client for zrok
type Zrok struct {
2022-11-30 17:43:00 +01:00
Account account.ClientService
Admin admin.ClientService
2022-11-30 17:43:00 +01:00
Environment environment.ClientService
2022-07-22 16:52:36 +02:00
Metadata metadata.ClientService
Share share.ClientService
2022-07-26 21:38:35 +02:00
2022-07-22 16:52:36 +02:00
Transport runtime.ClientTransport
}
// SetTransport changes the transport on the client and all its subresources
func (c *Zrok) SetTransport(transport runtime.ClientTransport) {
2022-07-22 16:52:36 +02:00
c.Transport = transport
2022-11-30 17:43:00 +01:00
c.Account.SetTransport(transport)
c.Admin.SetTransport(transport)
2022-11-30 17:43:00 +01:00
c.Environment.SetTransport(transport)
2022-07-22 16:52:36 +02:00
c.Metadata.SetTransport(transport)
c.Share.SetTransport(transport)
2022-07-22 16:52:36 +02:00
}