This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
v1usages_client.go
180 lines (153 loc) · 5.66 KB
/
v1usages_client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
// Code generated by go-swagger; DO NOT EDIT.
package v1usages
// 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"
strfmt "github.com/go-openapi/strfmt"
)
// New creates a new v1usages API client.
func New(transport runtime.ClientTransport, formats strfmt.Registry) *Client {
return &Client{transport: transport, formats: formats}
}
/*
Client for v1usages API
*/
type Client struct {
transport runtime.ClientTransport
formats strfmt.Registry
}
/*
GetAccountUsage retrieves public and private owned usages by filter parameters
Cloudbreak gives you an up to date overview of cluster usage based on different filtering criteria (start/end date, users, providers, region, etc)
*/
func (a *Client) GetAccountUsage(params *GetAccountUsageParams) (*GetAccountUsageOK, error) {
// TODO: Validate the params before sending
if params == nil {
params = NewGetAccountUsageParams()
}
result, err := a.transport.Submit(&runtime.ClientOperation{
ID: "getAccountUsage",
Method: "GET",
PathPattern: "/v1/usages/account",
ProducesMediaTypes: []string{"application/json"},
ConsumesMediaTypes: []string{"application/json"},
Schemes: []string{"http", "https"},
Params: params,
Reader: &GetAccountUsageReader{formats: a.formats},
Context: params.Context,
Client: params.HTTPClient,
})
if err != nil {
return nil, err
}
return result.(*GetAccountUsageOK), nil
}
/*
GetDailyFlexUsage retrieves flex related daily usages
Cloudbreak gives you an up to date overview of cluster usage based on different filtering criteria (start/end date, users, providers, region, etc)
*/
func (a *Client) GetDailyFlexUsage(params *GetDailyFlexUsageParams) (*GetDailyFlexUsageOK, error) {
// TODO: Validate the params before sending
if params == nil {
params = NewGetDailyFlexUsageParams()
}
result, err := a.transport.Submit(&runtime.ClientOperation{
ID: "getDailyFlexUsage",
Method: "GET",
PathPattern: "/v1/usages/flex/daily",
ProducesMediaTypes: []string{"application/json"},
ConsumesMediaTypes: []string{"application/json"},
Schemes: []string{"http", "https"},
Params: params,
Reader: &GetDailyFlexUsageReader{formats: a.formats},
Context: params.Context,
Client: params.HTTPClient,
})
if err != nil {
return nil, err
}
return result.(*GetDailyFlexUsageOK), nil
}
/*
GetDeployerUsage retrieves usages by filter parameters
Cloudbreak gives you an up to date overview of cluster usage based on different filtering criteria (start/end date, users, providers, region, etc)
*/
func (a *Client) GetDeployerUsage(params *GetDeployerUsageParams) (*GetDeployerUsageOK, error) {
// TODO: Validate the params before sending
if params == nil {
params = NewGetDeployerUsageParams()
}
result, err := a.transport.Submit(&runtime.ClientOperation{
ID: "getDeployerUsage",
Method: "GET",
PathPattern: "/v1/usages",
ProducesMediaTypes: []string{"application/json"},
ConsumesMediaTypes: []string{"application/json"},
Schemes: []string{"http", "https"},
Params: params,
Reader: &GetDeployerUsageReader{formats: a.formats},
Context: params.Context,
Client: params.HTTPClient,
})
if err != nil {
return nil, err
}
return result.(*GetDeployerUsageOK), nil
}
/*
GetLatestFlexUsage retrieves flex related latest usages usages for the given day
Cloudbreak gives you an up to date overview of cluster usage based on different filtering criteria (start/end date, users, providers, region, etc)
*/
func (a *Client) GetLatestFlexUsage(params *GetLatestFlexUsageParams) (*GetLatestFlexUsageOK, error) {
// TODO: Validate the params before sending
if params == nil {
params = NewGetLatestFlexUsageParams()
}
result, err := a.transport.Submit(&runtime.ClientOperation{
ID: "getLatestFlexUsage",
Method: "GET",
PathPattern: "/v1/usages/flex/latest",
ProducesMediaTypes: []string{"application/json"},
ConsumesMediaTypes: []string{"application/json"},
Schemes: []string{"http", "https"},
Params: params,
Reader: &GetLatestFlexUsageReader{formats: a.formats},
Context: params.Context,
Client: params.HTTPClient,
})
if err != nil {
return nil, err
}
return result.(*GetLatestFlexUsageOK), nil
}
/*
GetUserUsage retrieves private usages by filter parameters
Cloudbreak gives you an up to date overview of cluster usage based on different filtering criteria (start/end date, users, providers, region, etc)
*/
func (a *Client) GetUserUsage(params *GetUserUsageParams) (*GetUserUsageOK, error) {
// TODO: Validate the params before sending
if params == nil {
params = NewGetUserUsageParams()
}
result, err := a.transport.Submit(&runtime.ClientOperation{
ID: "getUserUsage",
Method: "GET",
PathPattern: "/v1/usages/user",
ProducesMediaTypes: []string{"application/json"},
ConsumesMediaTypes: []string{"application/json"},
Schemes: []string{"http", "https"},
Params: params,
Reader: &GetUserUsageReader{formats: a.formats},
Context: params.Context,
Client: params.HTTPClient,
})
if err != nil {
return nil, err
}
return result.(*GetUserUsageOK), nil
}
// SetTransport changes the transport on the client
func (a *Client) SetTransport(transport runtime.ClientTransport) {
a.transport = transport
}