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 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 V3OrganizationIDAudits *v3_organization_id_audits.Client V3OrganizationIDBlueprints *v3_organization_id_blueprints.Client V3OrganizationIDConnectors *v3_organization_id_connectors.Client V3OrganizationIDCredentials *v3_organization_id_credentials.Client V3OrganizationIDEvents *v3_organization_id_events.Client V3OrganizationIDFilesystems *v3_organization_id_filesystems.Client V3OrganizationIDFlexsubscriptions *v3_organization_id_flexsubscriptions.Client V3OrganizationIDImagecatalogs *v3_organization_id_imagecatalogs.Client V3OrganizationIDKnoxservices *v3_organization_id_knoxservices.Client V3OrganizationIDLdapconfigs *v3_organization_id_ldapconfigs.Client V3OrganizationIDMpacks *v3_organization_id_mpacks.Client V3OrganizationIDProxyconfigs *v3_organization_id_proxyconfigs.Client V3OrganizationIDRdsconfigs *v3_organization_id_rdsconfigs.Client V3OrganizationIDRecipes *v3_organization_id_recipes.Client V3OrganizationIDSmartsensesubscriptions *v3_organization_id_smartsensesubscriptions.Client V3OrganizationIDStack *v3_organization_id_stack.Client V3OrganizationIDUtil *v3_organization_id_util.Client V3organizations *v3organizations.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.