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
/
cloudbreak_client.go
297 lines (195 loc) · 8.22 KB
/
cloudbreak_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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
// Code generated by go-swagger; DO NOT EDIT.
package client_cloudbreak
// 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"
strfmt "github.com/go-openapi/strfmt"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1accountpreferences"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1blueprints"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1clusters"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1clustertemplates"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1connectors"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1constraints"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1credentials"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1events"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1flexsubscriptions"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1imagecatalogs"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1ldap"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1networks"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1rdsconfigs"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1recipes"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1securitygroups"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1securityrules"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1settings"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1smartsensesubscriptions"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1stacks"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1subscriptions"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1templates"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1topologies"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1usages"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1users"
"github.com/hortonworks/cb-cli/client_cloudbreak/v1util"
"github.com/hortonworks/cb-cli/client_cloudbreak/v2connectors"
"github.com/hortonworks/cb-cli/client_cloudbreak/v2stacks"
)
// Default cloudbreak HTTP client.
var Default = NewHTTPClient(nil)
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 = "/api"
)
// DefaultSchemes are the default schemes found in Meta (info) section of spec file
var DefaultSchemes = []string{"http", "https"}
// NewHTTPClient creates a new cloudbreak HTTP client.
func NewHTTPClient(formats strfmt.Registry) *Cloudbreak {
return NewHTTPClientWithConfig(formats, nil)
}
// NewHTTPClientWithConfig creates a new cloudbreak HTTP client,
// using a customizable transport config.
func NewHTTPClientWithConfig(formats strfmt.Registry, cfg *TransportConfig) *Cloudbreak {
// ensure nullable parameters have default
if formats == nil {
formats = strfmt.Default
}
if cfg == nil {
cfg = DefaultTransportConfig()
}
// create transport and client
transport := httptransport.New(cfg.Host, cfg.BasePath, cfg.Schemes)
return New(transport, formats)
}
// New creates a new cloudbreak client
func New(transport runtime.ClientTransport, formats strfmt.Registry) *Cloudbreak {
cli := new(Cloudbreak)
cli.Transport = transport
cli.V1accountpreferences = v1accountpreferences.New(transport, formats)
cli.V1blueprints = v1blueprints.New(transport, formats)
cli.V1clusters = v1clusters.New(transport, formats)
cli.V1clustertemplates = v1clustertemplates.New(transport, formats)
cli.V1connectors = v1connectors.New(transport, formats)
cli.V1constraints = v1constraints.New(transport, formats)
cli.V1credentials = v1credentials.New(transport, formats)
cli.V1events = v1events.New(transport, formats)
cli.V1flexsubscriptions = v1flexsubscriptions.New(transport, formats)
cli.V1imagecatalogs = v1imagecatalogs.New(transport, formats)
cli.V1ldap = v1ldap.New(transport, formats)
cli.V1networks = v1networks.New(transport, formats)
cli.V1rdsconfigs = v1rdsconfigs.New(transport, formats)
cli.V1recipes = v1recipes.New(transport, formats)
cli.V1securitygroups = v1securitygroups.New(transport, formats)
cli.V1securityrules = v1securityrules.New(transport, formats)
cli.V1settings = v1settings.New(transport, formats)
cli.V1smartsensesubscriptions = v1smartsensesubscriptions.New(transport, formats)
cli.V1stacks = v1stacks.New(transport, formats)
cli.V1subscriptions = v1subscriptions.New(transport, formats)
cli.V1templates = v1templates.New(transport, formats)
cli.V1topologies = v1topologies.New(transport, formats)
cli.V1usages = v1usages.New(transport, formats)
cli.V1users = v1users.New(transport, formats)
cli.V1util = v1util.New(transport, formats)
cli.V2connectors = v2connectors.New(transport, formats)
cli.V2stacks = v2stacks.New(transport, formats)
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
}
// Cloudbreak is a client for cloudbreak
type Cloudbreak struct {
V1accountpreferences *v1accountpreferences.Client
V1blueprints *v1blueprints.Client
V1clusters *v1clusters.Client
V1clustertemplates *v1clustertemplates.Client
V1connectors *v1connectors.Client
V1constraints *v1constraints.Client
V1credentials *v1credentials.Client
V1events *v1events.Client
V1flexsubscriptions *v1flexsubscriptions.Client
V1imagecatalogs *v1imagecatalogs.Client
V1ldap *v1ldap.Client
V1networks *v1networks.Client
V1rdsconfigs *v1rdsconfigs.Client
V1recipes *v1recipes.Client
V1securitygroups *v1securitygroups.Client
V1securityrules *v1securityrules.Client
V1settings *v1settings.Client
V1smartsensesubscriptions *v1smartsensesubscriptions.Client
V1stacks *v1stacks.Client
V1subscriptions *v1subscriptions.Client
V1templates *v1templates.Client
V1topologies *v1topologies.Client
V1usages *v1usages.Client
V1users *v1users.Client
V1util *v1util.Client
V2connectors *v2connectors.Client
V2stacks *v2stacks.Client
Transport runtime.ClientTransport
}
// SetTransport changes the transport on the client and all its subresources
func (c *Cloudbreak) SetTransport(transport runtime.ClientTransport) {
c.Transport = transport
c.V1accountpreferences.SetTransport(transport)
c.V1blueprints.SetTransport(transport)
c.V1clusters.SetTransport(transport)
c.V1clustertemplates.SetTransport(transport)
c.V1connectors.SetTransport(transport)
c.V1constraints.SetTransport(transport)
c.V1credentials.SetTransport(transport)
c.V1events.SetTransport(transport)
c.V1flexsubscriptions.SetTransport(transport)
c.V1imagecatalogs.SetTransport(transport)
c.V1ldap.SetTransport(transport)
c.V1networks.SetTransport(transport)
c.V1rdsconfigs.SetTransport(transport)
c.V1recipes.SetTransport(transport)
c.V1securitygroups.SetTransport(transport)
c.V1securityrules.SetTransport(transport)
c.V1settings.SetTransport(transport)
c.V1smartsensesubscriptions.SetTransport(transport)
c.V1stacks.SetTransport(transport)
c.V1subscriptions.SetTransport(transport)
c.V1templates.SetTransport(transport)
c.V1topologies.SetTransport(transport)
c.V1usages.SetTransport(transport)
c.V1users.SetTransport(transport)
c.V1util.SetTransport(transport)
c.V2connectors.SetTransport(transport)
c.V2stacks.SetTransport(transport)
}