2021-07-31 03:05:02 +00:00
|
|
|
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
|
2021-08-05 19:37:53 +00:00
|
|
|
// (c) 2012-2020 by Taxnexus, Inc.
|
2021-07-31 03:05:02 +00:00
|
|
|
// All rights reserved worldwide.
|
|
|
|
// Proprietary product; unlicensed use is not allowed
|
|
|
|
|
2021-08-05 19:37:53 +00:00
|
|
|
package sfgate_client
|
2021-07-31 03:05:02 +00:00
|
|
|
|
|
|
|
// This file was generated by the swagger tool.
|
|
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/go-openapi/runtime"
|
|
|
|
httptransport "github.com/go-openapi/runtime/client"
|
|
|
|
"github.com/go-openapi/strfmt"
|
|
|
|
|
2021-08-05 19:37:53 +00:00
|
|
|
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_client/accounts"
|
2021-08-14 22:34:08 +00:00
|
|
|
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_client/clusters"
|
2021-08-05 19:37:53 +00:00
|
|
|
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_client/contacts"
|
2021-08-14 22:34:08 +00:00
|
|
|
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_client/databases"
|
2021-08-05 19:37:53 +00:00
|
|
|
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_client/roles"
|
|
|
|
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_client/templates"
|
|
|
|
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_client/tenants"
|
|
|
|
"code.tnxs.net/vernonkeenan/lib/api/sfgate/sfgate_client/users"
|
2021-07-31 03:05:02 +00:00
|
|
|
)
|
|
|
|
|
2021-08-05 19:37:53 +00:00
|
|
|
// Default sfgate HTTP client.
|
2021-07-31 03:05:02 +00:00
|
|
|
var Default = NewHTTPClient(nil)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// DefaultHost is the default Host
|
|
|
|
// found in Meta (info) section of spec file
|
2021-08-14 22:34:08 +00:00
|
|
|
DefaultHost string = "sf-gate.vernonkeenan.com:8080"
|
2021-07-31 03:05:02 +00:00
|
|
|
// DefaultBasePath is the default BasePath
|
|
|
|
// found in Meta (info) section of spec file
|
|
|
|
DefaultBasePath string = "/v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DefaultSchemes are the default schemes found in Meta (info) section of spec file
|
|
|
|
var DefaultSchemes = []string{"http"}
|
|
|
|
|
2021-08-05 19:37:53 +00:00
|
|
|
// NewHTTPClient creates a new sfgate HTTP client.
|
|
|
|
func NewHTTPClient(formats strfmt.Registry) *Sfgate {
|
2021-07-31 03:05:02 +00:00
|
|
|
return NewHTTPClientWithConfig(formats, nil)
|
|
|
|
}
|
|
|
|
|
2021-08-05 19:37:53 +00:00
|
|
|
// NewHTTPClientWithConfig creates a new sfgate HTTP client,
|
2021-07-31 03:05:02 +00:00
|
|
|
// using a customizable transport config.
|
2021-08-05 19:37:53 +00:00
|
|
|
func NewHTTPClientWithConfig(formats strfmt.Registry, cfg *TransportConfig) *Sfgate {
|
2021-07-31 03:05:02 +00:00
|
|
|
// ensure nullable parameters have default
|
|
|
|
if cfg == nil {
|
|
|
|
cfg = DefaultTransportConfig()
|
|
|
|
}
|
|
|
|
|
|
|
|
// create transport and client
|
|
|
|
transport := httptransport.New(cfg.Host, cfg.BasePath, cfg.Schemes)
|
|
|
|
return New(transport, formats)
|
|
|
|
}
|
|
|
|
|
2021-08-05 19:37:53 +00:00
|
|
|
// New creates a new sfgate client
|
|
|
|
func New(transport runtime.ClientTransport, formats strfmt.Registry) *Sfgate {
|
2021-07-31 03:05:02 +00:00
|
|
|
// ensure nullable parameters have default
|
|
|
|
if formats == nil {
|
|
|
|
formats = strfmt.Default
|
|
|
|
}
|
|
|
|
|
2021-08-05 19:37:53 +00:00
|
|
|
cli := new(Sfgate)
|
2021-07-31 03:05:02 +00:00
|
|
|
cli.Transport = transport
|
2021-08-05 19:37:53 +00:00
|
|
|
cli.Accounts = accounts.New(transport, formats)
|
2021-08-14 22:34:08 +00:00
|
|
|
cli.Clusters = clusters.New(transport, formats)
|
2021-08-05 19:37:53 +00:00
|
|
|
cli.Contacts = contacts.New(transport, formats)
|
2021-08-14 22:34:08 +00:00
|
|
|
cli.Databases = databases.New(transport, formats)
|
2021-08-05 19:37:53 +00:00
|
|
|
cli.Roles = roles.New(transport, formats)
|
|
|
|
cli.Templates = templates.New(transport, formats)
|
|
|
|
cli.Tenants = tenants.New(transport, formats)
|
|
|
|
cli.Users = users.New(transport, formats)
|
2021-07-31 03:05:02 +00:00
|
|
|
return cli
|
|
|
|
}
|
|
|
|
|
|
|
|
// DefaultTransportConfig creates a TransportConfig with the
|
|
|
|
// default settings taken from the meta section of the spec file.
|
|
|
|
func DefaultTransportConfig() *TransportConfig {
|
|
|
|
return &TransportConfig{
|
|
|
|
Host: DefaultHost,
|
|
|
|
BasePath: DefaultBasePath,
|
|
|
|
Schemes: DefaultSchemes,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TransportConfig contains the transport related info,
|
|
|
|
// found in the meta section of the spec file.
|
|
|
|
type TransportConfig struct {
|
|
|
|
Host string
|
|
|
|
BasePath string
|
|
|
|
Schemes []string
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithHost overrides the default host,
|
|
|
|
// provided by the meta section of the spec file.
|
|
|
|
func (cfg *TransportConfig) WithHost(host string) *TransportConfig {
|
|
|
|
cfg.Host = host
|
|
|
|
return cfg
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithBasePath overrides the default basePath,
|
|
|
|
// provided by the meta section of the spec file.
|
|
|
|
func (cfg *TransportConfig) WithBasePath(basePath string) *TransportConfig {
|
|
|
|
cfg.BasePath = basePath
|
|
|
|
return cfg
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithSchemes overrides the default schemes,
|
|
|
|
// provided by the meta section of the spec file.
|
|
|
|
func (cfg *TransportConfig) WithSchemes(schemes []string) *TransportConfig {
|
|
|
|
cfg.Schemes = schemes
|
|
|
|
return cfg
|
|
|
|
}
|
|
|
|
|
2021-08-05 19:37:53 +00:00
|
|
|
// Sfgate is a client for sfgate
|
|
|
|
type Sfgate struct {
|
|
|
|
Accounts accounts.ClientService
|
2021-07-31 03:05:02 +00:00
|
|
|
|
2021-08-14 22:34:08 +00:00
|
|
|
Clusters clusters.ClientService
|
2021-07-31 03:05:02 +00:00
|
|
|
|
2021-08-05 19:37:53 +00:00
|
|
|
Contacts contacts.ClientService
|
2021-07-31 03:05:02 +00:00
|
|
|
|
2021-08-14 22:34:08 +00:00
|
|
|
Databases databases.ClientService
|
2021-07-31 03:05:02 +00:00
|
|
|
|
2021-08-05 19:37:53 +00:00
|
|
|
Roles roles.ClientService
|
2021-07-31 03:05:02 +00:00
|
|
|
|
2021-08-05 19:37:53 +00:00
|
|
|
Templates templates.ClientService
|
|
|
|
|
|
|
|
Tenants tenants.ClientService
|
|
|
|
|
|
|
|
Users users.ClientService
|
2021-07-31 03:05:02 +00:00
|
|
|
|
|
|
|
Transport runtime.ClientTransport
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetTransport changes the transport on the client and all its subresources
|
2021-08-05 19:37:53 +00:00
|
|
|
func (c *Sfgate) SetTransport(transport runtime.ClientTransport) {
|
2021-07-31 03:05:02 +00:00
|
|
|
c.Transport = transport
|
2021-08-05 19:37:53 +00:00
|
|
|
c.Accounts.SetTransport(transport)
|
2021-08-14 22:34:08 +00:00
|
|
|
c.Clusters.SetTransport(transport)
|
2021-08-05 19:37:53 +00:00
|
|
|
c.Contacts.SetTransport(transport)
|
2021-08-14 22:34:08 +00:00
|
|
|
c.Databases.SetTransport(transport)
|
2021-08-05 19:37:53 +00:00
|
|
|
c.Roles.SetTransport(transport)
|
|
|
|
c.Templates.SetTransport(transport)
|
|
|
|
c.Tenants.SetTransport(transport)
|
|
|
|
c.Users.SetTransport(transport)
|
2021-07-31 03:05:02 +00:00
|
|
|
}
|