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 = "/" )
Variables ¶
var Default = NewHTTPClient(nil)
Default consolidate services HTTP client.
var DefaultSchemes = []string{"http"}
DefaultSchemes are the default schemes found in Meta (info) section of spec file
Functions ¶
This section is empty.
Types ¶
type ConsolidateServices ¶
type ConsolidateServices struct { AccountService account_service.ClientService ApplicationService application_service.ClientService CertificateService certificate_service.ClientService ClusterService cluster_service.ClientService GpgKeyService g_p_g_key_service.ClientService ProjectService project_service.ClientService RepoCredsService repo_creds_service.ClientService RepositoryService repository_service.ClientService SessionService session_service.ClientService SettingsService settings_service.ClientService VersionService version_service.ClientService Transport runtime.ClientTransport }
ConsolidateServices is a client for consolidate services
func New ¶
func New(transport runtime.ClientTransport, formats strfmt.Registry) *ConsolidateServices
New creates a new consolidate services client
func NewHTTPClient ¶
func NewHTTPClient(formats strfmt.Registry) *ConsolidateServices
NewHTTPClient creates a new consolidate services HTTP client.
func NewHTTPClientWithConfig ¶
func NewHTTPClientWithConfig(formats strfmt.Registry, cfg *TransportConfig) *ConsolidateServices
NewHTTPClientWithConfig creates a new consolidate services HTTP client, using a customizable transport config.
func (*ConsolidateServices) SetTransport ¶
func (c *ConsolidateServices) 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.