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 power iaas 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 PowerIaas ¶
type PowerIaas struct { Authentication *authentication.Client BluemixServiceInstances *bluemix_service_instances.Client Catalog *catalog.Client HardwarePlatforms *hardware_platforms.Client IaasServiceBroker *iaas_service_broker.Client OpenStacks *open_stacks.Client PCloudCloneVolumes *p_cloud_clone_volumes.Client PCloudEvents *p_cloud_events.Client PCloudImages *p_cloud_images.Client PCloudInstances *p_cloud_instances.Client PCloudNetworks *p_cloud_networks.Client PCloudPVMInstances *p_cloud_p_vm_instances.Client PCloudSnapshots *p_cloud_snapshots.Client PCloudSystemPools *p_cloud_system_pools.Client PCloudTasks *p_cloud_tasks.Client PCloudTenants *p_cloud_tenants.Client PCloudTenantsSSHKeys *p_cloud_tenants_ssh_keys.Client PCloudVolumes *p_cloud_volumes.Client ServiceBindings *service_bindings.Client ServiceInstances *service_instances.Client StorageTypes *storage_types.Client SwaggerSpec *swagger_spec.Client Transport runtime.ClientTransport }
PowerIaas is a client for power iaas
func New ¶
func New(transport runtime.ClientTransport, formats strfmt.Registry) *PowerIaas
New creates a new power iaas client
func NewHTTPClient ¶
NewHTTPClient creates a new power iaas HTTP client.
func NewHTTPClientWithConfig ¶
func NewHTTPClientWithConfig(formats strfmt.Registry, cfg *TransportConfig) *PowerIaas
NewHTTPClientWithConfig creates a new power iaas HTTP client, using a customizable transport config.
func (*PowerIaas) SetTransport ¶
func (c *PowerIaas) 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.