Documentation ¶
Index ¶
Constants ¶
const ( // DefaultHost is the default Host // 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" )
Variables ¶
var Default = NewHTTPClient(nil)
Default cloudbreak HTTP client.
var DefaultSchemes = []string{"http", "https"}
DefaultSchemes are the default schemes found in Meta (info) section of spec file
Functions ¶
This section is empty.
Types ¶
type Cloudbreak ¶
type Cloudbreak struct { V1accountpreferences *v1accountpreferences.Client V1audits *v1audits.Client V1blueprints *v1blueprints.Client V1clustertemplates *v1clustertemplates.Client V1connectors *v1connectors.Client V1constraints *v1constraints.Client V1credentials *v1credentials.Client V1events *v1events.Client V1flexsubscriptions *v1flexsubscriptions.Client V1imagecatalogs *v1imagecatalogs.Client V1ldap *v1ldap.Client V1mpacks *v1mpacks.Client V1networks *v1networks.Client V1proxyconfigs *v1proxyconfigs.Client V1rdsconfigs *v1rdsconfigs.Client V1recipes *v1recipes.Client V1repositoryconfigs *v1repositoryconfigs.Client V1securitygroups *v1securitygroups.Client V1securityrules *v1securityrules.Client V1settings *v1settings.Client V1smartsensesubscriptions *v1smartsensesubscriptions.Client V1stacks *v1stacks.Client V1subscriptions *v1subscriptions.Client V1templates *v1templates.Client V1topologies *v1topologies.Client V1usages *v1usages.Client V1users *v1users.Client V1util *v1util.Client V2connectors *v2connectors.Client V2stacks *v2stacks.Client Transport runtime.ClientTransport }
Cloudbreak is a client for cloudbreak
func New ¶
func New(transport runtime.ClientTransport, formats strfmt.Registry) *Cloudbreak
New creates a new cloudbreak client
func NewHTTPClient ¶
func NewHTTPClient(formats strfmt.Registry) *Cloudbreak
NewHTTPClient creates a new cloudbreak HTTP client.
func NewHTTPClientWithConfig ¶
func NewHTTPClientWithConfig(formats strfmt.Registry, cfg *TransportConfig) *Cloudbreak
NewHTTPClientWithConfig creates a new cloudbreak HTTP client, using a customizable transport config.
func (*Cloudbreak) SetTransport ¶
func (c *Cloudbreak) 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.