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.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
cyclops-4-hpc/services/cdr/client/usage_management/usage_management_client.go

122 lines
3.8 KiB

// Code generated by go-swagger; DO NOT EDIT.
package usage_management
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"context"
"github.com/go-openapi/runtime"
strfmt "github.com/go-openapi/strfmt"
)
//go:generate mockery -name API -inpkg
// API is the interface of the usage management client
type API interface {
/*
GetSystemUsage detaileds report covering all accounts within the specified time window*/
GetSystemUsage(ctx context.Context, params *GetSystemUsageParams) (*GetSystemUsageOK, error)
/*
GetUsage detaileds report covering of the account associated with the id within the specified time window*/
GetUsage(ctx context.Context, params *GetUsageParams) (*GetUsageOK, error)
/*
GetUsageSummary summaries report meant for the UI for the resources linked to the reseller ID provided within the specified time window*/
GetUsageSummary(ctx context.Context, params *GetUsageSummaryParams) (*GetUsageSummaryOK, error)
}
// New creates a new usage management API client.
func New(transport runtime.ClientTransport, formats strfmt.Registry, authInfo runtime.ClientAuthInfoWriter) *Client {
return &Client{
transport: transport,
formats: formats,
authInfo: authInfo,
}
}
/*
Client for usage management API
*/
type Client struct {
transport runtime.ClientTransport
formats strfmt.Registry
authInfo runtime.ClientAuthInfoWriter
}
/*
GetSystemUsage detaileds report covering all accounts within the specified time window
*/
func (a *Client) GetSystemUsage(ctx context.Context, params *GetSystemUsageParams) (*GetSystemUsageOK, error) {
result, err := a.transport.Submit(&runtime.ClientOperation{
ID: "getSystemUsage",
Method: "GET",
PathPattern: "/usage",
ProducesMediaTypes: []string{"application/json"},
ConsumesMediaTypes: []string{"application/json"},
Schemes: []string{"http", "https"},
Params: params,
Reader: &GetSystemUsageReader{formats: a.formats},
AuthInfo: a.authInfo,
Context: ctx,
Client: params.HTTPClient,
})
if err != nil {
return nil, err
}
return result.(*GetSystemUsageOK), nil
}
/*
GetUsage detaileds report covering of the account associated with the id within the specified time window
*/
func (a *Client) GetUsage(ctx context.Context, params *GetUsageParams) (*GetUsageOK, error) {
result, err := a.transport.Submit(&runtime.ClientOperation{
ID: "getUsage",
Method: "GET",
PathPattern: "/usage/{id}",
ProducesMediaTypes: []string{"application/json"},
ConsumesMediaTypes: []string{"application/json"},
Schemes: []string{"http", "https"},
Params: params,
Reader: &GetUsageReader{formats: a.formats},
AuthInfo: a.authInfo,
Context: ctx,
Client: params.HTTPClient,
})
if err != nil {
return nil, err
}
return result.(*GetUsageOK), nil
}
/*
GetUsageSummary summaries report meant for the UI for the resources linked to the reseller ID provided within the specified time window
*/
func (a *Client) GetUsageSummary(ctx context.Context, params *GetUsageSummaryParams) (*GetUsageSummaryOK, error) {
result, err := a.transport.Submit(&runtime.ClientOperation{
ID: "getUsageSummary",
Method: "GET",
PathPattern: "/usage/summary/{id}",
ProducesMediaTypes: []string{"application/json"},
ConsumesMediaTypes: []string{"application/json"},
Schemes: []string{"http", "https"},
Params: params,
Reader: &GetUsageSummaryReader{formats: a.formats},
AuthInfo: a.authInfo,
Context: ctx,
Client: params.HTTPClient,
})
if err != nil {
return nil, err
}
return result.(*GetUsageSummaryOK), nil
}