Cyclops 4 HPC is the purpose built stack to support large HPC centers with resource accounting and billing of cluster as well as cloud resources.
cyclops-4-hpc/services/udr/client/u_d_r_management_api_client.go

79 lines
2.4 KiB

// Code generated by go-swagger; DO NOT EDIT.
package client
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"net/http"
"net/url"
"github.com/go-openapi/runtime"
rtclient "github.com/go-openapi/runtime/client"
"github.com/go-openapi/strfmt"
"github.com/Cyclops-Labs/cyclops-4-hpc.git/services/udr/client/metrics_management"
"github.com/Cyclops-Labs/cyclops-4-hpc.git/services/udr/client/status_management"
"github.com/Cyclops-Labs/cyclops-4-hpc.git/services/udr/client/trigger_management"
"github.com/Cyclops-Labs/cyclops-4-hpc.git/services/udr/client/usage_management"
)
const (
// DefaultHost is the default Host
// found in Meta (info) section of spec file
DefaultHost string = "localhost:8000"
// DefaultBasePath is the default BasePath
// found in Meta (info) section of spec file
DefaultBasePath string = "/api/v1.0"
)
// DefaultSchemes are the default schemes found in Meta (info) section of spec file
var DefaultSchemes = []string{"http", "https"}
type Config struct {
// URL is the base URL of the upstream server
URL *url.URL
// Transport is an inner transport for the client
Transport http.RoundTripper
// AuthInfo is for authentication
AuthInfo runtime.ClientAuthInfoWriter
}
// New creates a new u d r management API HTTP client.
func New(c Config) *UDRManagementAPI {
var (
host = DefaultHost
basePath = DefaultBasePath
schemes = DefaultSchemes
)
if c.URL != nil {
host = c.URL.Host
basePath = c.URL.Path
schemes = []string{c.URL.Scheme}
}
transport := rtclient.New(host, basePath, schemes)
if c.Transport != nil {
transport.Transport = c.Transport
}
cli := new(UDRManagementAPI)
cli.Transport = transport
cli.MetricsManagement = metrics_management.New(transport, strfmt.Default, c.AuthInfo)
cli.StatusManagement = status_management.New(transport, strfmt.Default, c.AuthInfo)
cli.TriggerManagement = trigger_management.New(transport, strfmt.Default, c.AuthInfo)
cli.UsageManagement = usage_management.New(transport, strfmt.Default, c.AuthInfo)
return cli
}
// UDRManagementAPI is a client for u d r management API
type UDRManagementAPI struct {
MetricsManagement *metrics_management.Client
StatusManagement *status_management.Client
TriggerManagement *trigger_management.Client
UsageManagement *usage_management.Client
Transport runtime.ClientTransport
}