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 { Autoscale *autoscale.Client V1accountpreferences *v1accountpreferences.Client V1audits *v1audits.Client V1blueprints *v1blueprints.Client V1connectors *v1connectors.Client V1credentials *v1credentials.Client V1events *v1events.Client V1flexsubscriptions *v1flexsubscriptions.Client V1imagecatalogs *v1imagecatalogs.Client V1ldap *v1ldap.Client V1mpacks *v1mpacks.Client V1proxyconfigs *v1proxyconfigs.Client V1rdsconfigs *v1rdsconfigs.Client V1recipes *v1recipes.Client V1repositoryconfigs *v1repositoryconfigs.Client V1securityrules *v1securityrules.Client V1settings *v1settings.Client V1smartsensesubscriptions *v1smartsensesubscriptions.Client V1stacks *v1stacks.Client V1subscriptions *v1subscriptions.Client V1usages *v1usages.Client V1users *v1users.Client V1util *v1util.Client V2connectors *v2connectors.Client V2stacks *v2stacks.Client V3WorkspaceIDAudits *v3_workspace_id_audits.Client V3WorkspaceIDBlueprints *v3_workspace_id_blueprints.Client V3WorkspaceIDConnectors *v3_workspace_id_connectors.Client V3WorkspaceIDCredentials *v3_workspace_id_credentials.Client V3WorkspaceIDEvents *v3_workspace_id_events.Client V3WorkspaceIDFilesystems *v3_workspace_id_filesystems.Client V3WorkspaceIDFlexsubscriptions *v3_workspace_id_flexsubscriptions.Client V3WorkspaceIDImagecatalogs *v3_workspace_id_imagecatalogs.Client V3WorkspaceIDKnoxservices *v3_workspace_id_knoxservices.Client V3WorkspaceIDLdapconfigs *v3_workspace_id_ldapconfigs.Client V3WorkspaceIDMpacks *v3_workspace_id_mpacks.Client V3WorkspaceIDProxyconfigs *v3_workspace_id_proxyconfigs.Client V3WorkspaceIDRdsconfigs *v3_workspace_id_rdsconfigs.Client V3WorkspaceIDRecipes *v3_workspace_id_recipes.Client V3WorkspaceIDSmartsensesubscriptions *v3_workspace_id_smartsensesubscriptions.Client V3WorkspaceIDStacks *v3_workspace_id_stacks.Client V3WorkspaceIDUsers *v3_workspace_id_users.Client V3utils *v3utils.Client V3workspaces *v3workspaces.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.