-
Notifications
You must be signed in to change notification settings - Fork 128
/
add_proxy_sql_responses.go
798 lines (619 loc) · 20.9 KB
/
add_proxy_sql_responses.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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
// Code generated by go-swagger; DO NOT EDIT.
package proxy_sql
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"encoding/json"
"fmt"
"io"
"strconv"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// AddProxySQLReader is a Reader for the AddProxySQL structure.
type AddProxySQLReader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *AddProxySQLReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewAddProxySQLOK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
default:
result := NewAddProxySQLDefault(response.Code())
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
if response.Code()/100 == 2 {
return result, nil
}
return nil, result
}
}
// NewAddProxySQLOK creates a AddProxySQLOK with default headers values
func NewAddProxySQLOK() *AddProxySQLOK {
return &AddProxySQLOK{}
}
/*AddProxySQLOK handles this case with default header values.
A successful response.
*/
type AddProxySQLOK struct {
Payload *AddProxySQLOKBody
}
func (o *AddProxySQLOK) Error() string {
return fmt.Sprintf("[POST /v1/management/ProxySQL/Add][%d] addProxySqlOk %+v", 200, o.Payload)
}
func (o *AddProxySQLOK) GetPayload() *AddProxySQLOKBody {
return o.Payload
}
func (o *AddProxySQLOK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(AddProxySQLOKBody)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
// NewAddProxySQLDefault creates a AddProxySQLDefault with default headers values
func NewAddProxySQLDefault(code int) *AddProxySQLDefault {
return &AddProxySQLDefault{
_statusCode: code,
}
}
/*AddProxySQLDefault handles this case with default header values.
An unexpected error response.
*/
type AddProxySQLDefault struct {
_statusCode int
Payload *AddProxySQLDefaultBody
}
// Code gets the status code for the add proxy SQL default response
func (o *AddProxySQLDefault) Code() int {
return o._statusCode
}
func (o *AddProxySQLDefault) Error() string {
return fmt.Sprintf("[POST /v1/management/ProxySQL/Add][%d] AddProxySQL default %+v", o._statusCode, o.Payload)
}
func (o *AddProxySQLDefault) GetPayload() *AddProxySQLDefaultBody {
return o.Payload
}
func (o *AddProxySQLDefault) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
o.Payload = new(AddProxySQLDefaultBody)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}
/*AddProxySQLBody add proxy SQL body
swagger:model AddProxySQLBody
*/
type AddProxySQLBody struct {
// Node identifier on which a service is been running.
// Exactly one of these parameters should be present: node_id, node_name, add_node.
NodeID string `json:"node_id,omitempty"`
// Node name on which a service is been running.
// Exactly one of these parameters should be present: node_id, node_name, add_node.
NodeName string `json:"node_name,omitempty"`
// Unique across all Services user-defined name. Required.
ServiceName string `json:"service_name,omitempty"`
// Node and Service access address (DNS name or IP).
// Address (and port) or socket is required.
Address string `json:"address,omitempty"`
// Service Access port.
// Port is required when the address present.
Port int64 `json:"port,omitempty"`
// Service Access socket.
// Address (and port) or socket is required.
Socket string `json:"socket,omitempty"`
// The "pmm-agent" identifier which should run agents. Required.
PMMAgentID string `json:"pmm_agent_id,omitempty"`
// Environment name.
Environment string `json:"environment,omitempty"`
// Cluster name.
Cluster string `json:"cluster,omitempty"`
// Replication set name.
ReplicationSet string `json:"replication_set,omitempty"`
// ProxySQL username for scraping metrics.
Username string `json:"username,omitempty"`
// ProxySQL password for scraping metrics.
Password string `json:"password,omitempty"`
// Custom user-assigned labels for Service.
CustomLabels map[string]string `json:"custom_labels,omitempty"`
// Skip connection check.
SkipConnectionCheck bool `json:"skip_connection_check,omitempty"`
// Use TLS for database connections.
TLS bool `json:"tls,omitempty"`
// Skip TLS certificate and hostname validation.
TLSSkipVerify bool `json:"tls_skip_verify,omitempty"`
// MetricsMode defines desired metrics mode for agent,
// it can be pull, push or auto mode chosen by server.
// Enum: [AUTO PULL PUSH]
MetricsMode *string `json:"metrics_mode,omitempty"`
// add node
AddNode *AddProxySQLParamsBodyAddNode `json:"add_node,omitempty"`
}
// Validate validates this add proxy SQL body
func (o *AddProxySQLBody) Validate(formats strfmt.Registry) error {
var res []error
if err := o.validateMetricsMode(formats); err != nil {
res = append(res, err)
}
if err := o.validateAddNode(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
var addProxySqlBodyTypeMetricsModePropEnum []interface{}
func init() {
var res []string
if err := json.Unmarshal([]byte(`["AUTO","PULL","PUSH"]`), &res); err != nil {
panic(err)
}
for _, v := range res {
addProxySqlBodyTypeMetricsModePropEnum = append(addProxySqlBodyTypeMetricsModePropEnum, v)
}
}
const (
// AddProxySQLBodyMetricsModeAUTO captures enum value "AUTO"
AddProxySQLBodyMetricsModeAUTO string = "AUTO"
// AddProxySQLBodyMetricsModePULL captures enum value "PULL"
AddProxySQLBodyMetricsModePULL string = "PULL"
// AddProxySQLBodyMetricsModePUSH captures enum value "PUSH"
AddProxySQLBodyMetricsModePUSH string = "PUSH"
)
// prop value enum
func (o *AddProxySQLBody) validateMetricsModeEnum(path, location string, value string) error {
if err := validate.EnumCase(path, location, value, addProxySqlBodyTypeMetricsModePropEnum, true); err != nil {
return err
}
return nil
}
func (o *AddProxySQLBody) validateMetricsMode(formats strfmt.Registry) error {
if swag.IsZero(o.MetricsMode) { // not required
return nil
}
// value enum
if err := o.validateMetricsModeEnum("body"+"."+"metrics_mode", "body", *o.MetricsMode); err != nil {
return err
}
return nil
}
func (o *AddProxySQLBody) validateAddNode(formats strfmt.Registry) error {
if swag.IsZero(o.AddNode) { // not required
return nil
}
if o.AddNode != nil {
if err := o.AddNode.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("body" + "." + "add_node")
}
return err
}
}
return nil
}
// MarshalBinary interface implementation
func (o *AddProxySQLBody) MarshalBinary() ([]byte, error) {
if o == nil {
return nil, nil
}
return swag.WriteJSON(o)
}
// UnmarshalBinary interface implementation
func (o *AddProxySQLBody) UnmarshalBinary(b []byte) error {
var res AddProxySQLBody
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*o = res
return nil
}
/*AddProxySQLDefaultBody add proxy SQL default body
swagger:model AddProxySQLDefaultBody
*/
type AddProxySQLDefaultBody struct {
// error
Error string `json:"error,omitempty"`
// code
Code int32 `json:"code,omitempty"`
// message
Message string `json:"message,omitempty"`
// details
Details []*DetailsItems0 `json:"details"`
}
// Validate validates this add proxy SQL default body
func (o *AddProxySQLDefaultBody) Validate(formats strfmt.Registry) error {
var res []error
if err := o.validateDetails(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (o *AddProxySQLDefaultBody) validateDetails(formats strfmt.Registry) error {
if swag.IsZero(o.Details) { // not required
return nil
}
for i := 0; i < len(o.Details); i++ {
if swag.IsZero(o.Details[i]) { // not required
continue
}
if o.Details[i] != nil {
if err := o.Details[i].Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("AddProxySQL default" + "." + "details" + "." + strconv.Itoa(i))
}
return err
}
}
}
return nil
}
// MarshalBinary interface implementation
func (o *AddProxySQLDefaultBody) MarshalBinary() ([]byte, error) {
if o == nil {
return nil, nil
}
return swag.WriteJSON(o)
}
// UnmarshalBinary interface implementation
func (o *AddProxySQLDefaultBody) UnmarshalBinary(b []byte) error {
var res AddProxySQLDefaultBody
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*o = res
return nil
}
/*AddProxySQLOKBody add proxy SQL OK body
swagger:model AddProxySQLOKBody
*/
type AddProxySQLOKBody struct {
// proxysql exporter
ProxysqlExporter *AddProxySQLOKBodyProxysqlExporter `json:"proxysql_exporter,omitempty"`
// service
Service *AddProxySQLOKBodyService `json:"service,omitempty"`
}
// Validate validates this add proxy SQL OK body
func (o *AddProxySQLOKBody) Validate(formats strfmt.Registry) error {
var res []error
if err := o.validateProxysqlExporter(formats); err != nil {
res = append(res, err)
}
if err := o.validateService(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (o *AddProxySQLOKBody) validateProxysqlExporter(formats strfmt.Registry) error {
if swag.IsZero(o.ProxysqlExporter) { // not required
return nil
}
if o.ProxysqlExporter != nil {
if err := o.ProxysqlExporter.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("addProxySqlOk" + "." + "proxysql_exporter")
}
return err
}
}
return nil
}
func (o *AddProxySQLOKBody) validateService(formats strfmt.Registry) error {
if swag.IsZero(o.Service) { // not required
return nil
}
if o.Service != nil {
if err := o.Service.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("addProxySqlOk" + "." + "service")
}
return err
}
}
return nil
}
// MarshalBinary interface implementation
func (o *AddProxySQLOKBody) MarshalBinary() ([]byte, error) {
if o == nil {
return nil, nil
}
return swag.WriteJSON(o)
}
// UnmarshalBinary interface implementation
func (o *AddProxySQLOKBody) UnmarshalBinary(b []byte) error {
var res AddProxySQLOKBody
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*o = res
return nil
}
/*AddProxySQLOKBodyProxysqlExporter ProxySQLExporter runs on Generic or Container Node and exposes ProxySQL Service metrics.
swagger:model AddProxySQLOKBodyProxysqlExporter
*/
type AddProxySQLOKBodyProxysqlExporter struct {
// Unique randomly generated instance identifier.
AgentID string `json:"agent_id,omitempty"`
// The pmm-agent identifier which runs this instance.
PMMAgentID string `json:"pmm_agent_id,omitempty"`
// Desired Agent status: enabled (false) or disabled (true).
Disabled bool `json:"disabled,omitempty"`
// Service identifier.
ServiceID string `json:"service_id,omitempty"`
// ProxySQL username for scraping metrics.
Username string `json:"username,omitempty"`
// Use TLS for database connections.
TLS bool `json:"tls,omitempty"`
// Skip TLS certificate and hostname validation.
TLSSkipVerify bool `json:"tls_skip_verify,omitempty"`
// Custom user-assigned labels.
CustomLabels map[string]string `json:"custom_labels,omitempty"`
// True if exporter uses push metrics mode.
PushMetricsEnabled bool `json:"push_metrics_enabled,omitempty"`
// AgentStatus represents actual Agent status.
//
// - STARTING: Agent is starting.
// - RUNNING: Agent is running.
// - WAITING: Agent encountered error and will be restarted automatically soon.
// - STOPPING: Agent is stopping.
// - DONE: Agent finished.
// Enum: [AGENT_STATUS_INVALID STARTING RUNNING WAITING STOPPING DONE]
Status *string `json:"status,omitempty"`
// Listen port for scraping metrics.
ListenPort int64 `json:"listen_port,omitempty"`
}
// Validate validates this add proxy SQL OK body proxysql exporter
func (o *AddProxySQLOKBodyProxysqlExporter) Validate(formats strfmt.Registry) error {
var res []error
if err := o.validateStatus(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
var addProxySqlOkBodyProxysqlExporterTypeStatusPropEnum []interface{}
func init() {
var res []string
if err := json.Unmarshal([]byte(`["AGENT_STATUS_INVALID","STARTING","RUNNING","WAITING","STOPPING","DONE"]`), &res); err != nil {
panic(err)
}
for _, v := range res {
addProxySqlOkBodyProxysqlExporterTypeStatusPropEnum = append(addProxySqlOkBodyProxysqlExporterTypeStatusPropEnum, v)
}
}
const (
// AddProxySQLOKBodyProxysqlExporterStatusAGENTSTATUSINVALID captures enum value "AGENT_STATUS_INVALID"
AddProxySQLOKBodyProxysqlExporterStatusAGENTSTATUSINVALID string = "AGENT_STATUS_INVALID"
// AddProxySQLOKBodyProxysqlExporterStatusSTARTING captures enum value "STARTING"
AddProxySQLOKBodyProxysqlExporterStatusSTARTING string = "STARTING"
// AddProxySQLOKBodyProxysqlExporterStatusRUNNING captures enum value "RUNNING"
AddProxySQLOKBodyProxysqlExporterStatusRUNNING string = "RUNNING"
// AddProxySQLOKBodyProxysqlExporterStatusWAITING captures enum value "WAITING"
AddProxySQLOKBodyProxysqlExporterStatusWAITING string = "WAITING"
// AddProxySQLOKBodyProxysqlExporterStatusSTOPPING captures enum value "STOPPING"
AddProxySQLOKBodyProxysqlExporterStatusSTOPPING string = "STOPPING"
// AddProxySQLOKBodyProxysqlExporterStatusDONE captures enum value "DONE"
AddProxySQLOKBodyProxysqlExporterStatusDONE string = "DONE"
)
// prop value enum
func (o *AddProxySQLOKBodyProxysqlExporter) validateStatusEnum(path, location string, value string) error {
if err := validate.EnumCase(path, location, value, addProxySqlOkBodyProxysqlExporterTypeStatusPropEnum, true); err != nil {
return err
}
return nil
}
func (o *AddProxySQLOKBodyProxysqlExporter) validateStatus(formats strfmt.Registry) error {
if swag.IsZero(o.Status) { // not required
return nil
}
// value enum
if err := o.validateStatusEnum("addProxySqlOk"+"."+"proxysql_exporter"+"."+"status", "body", *o.Status); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (o *AddProxySQLOKBodyProxysqlExporter) MarshalBinary() ([]byte, error) {
if o == nil {
return nil, nil
}
return swag.WriteJSON(o)
}
// UnmarshalBinary interface implementation
func (o *AddProxySQLOKBodyProxysqlExporter) UnmarshalBinary(b []byte) error {
var res AddProxySQLOKBodyProxysqlExporter
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*o = res
return nil
}
/*AddProxySQLOKBodyService ProxySQLService represents a generic ProxySQL instance.
swagger:model AddProxySQLOKBodyService
*/
type AddProxySQLOKBodyService struct {
// Unique randomly generated instance identifier.
ServiceID string `json:"service_id,omitempty"`
// Unique across all Services user-defined name.
ServiceName string `json:"service_name,omitempty"`
// Node identifier where this instance runs.
NodeID string `json:"node_id,omitempty"`
// Access address (DNS name or IP).
// Address (and port) or socket is required.
Address string `json:"address,omitempty"`
// Access port.
// Port is required when the address present.
Port int64 `json:"port,omitempty"`
// Access unix socket.
// Address (and port) or socket is required.
Socket string `json:"socket,omitempty"`
// Environment name.
Environment string `json:"environment,omitempty"`
// Cluster name.
Cluster string `json:"cluster,omitempty"`
// Replication set name.
ReplicationSet string `json:"replication_set,omitempty"`
// Custom user-assigned labels.
CustomLabels map[string]string `json:"custom_labels,omitempty"`
}
// Validate validates this add proxy SQL OK body service
func (o *AddProxySQLOKBodyService) Validate(formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (o *AddProxySQLOKBodyService) MarshalBinary() ([]byte, error) {
if o == nil {
return nil, nil
}
return swag.WriteJSON(o)
}
// UnmarshalBinary interface implementation
func (o *AddProxySQLOKBodyService) UnmarshalBinary(b []byte) error {
var res AddProxySQLOKBodyService
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*o = res
return nil
}
/*AddProxySQLParamsBodyAddNode AddNodeParams is a params to add new node to inventory while adding new service.
swagger:model AddProxySQLParamsBodyAddNode
*/
type AddProxySQLParamsBodyAddNode struct {
// NodeType describes supported Node types.
// Enum: [NODE_TYPE_INVALID GENERIC_NODE CONTAINER_NODE REMOTE_NODE REMOTE_RDS_NODE]
NodeType *string `json:"node_type,omitempty"`
// Unique across all Nodes user-defined name.
NodeName string `json:"node_name,omitempty"`
// Linux machine-id.
MachineID string `json:"machine_id,omitempty"`
// Linux distribution name and version.
Distro string `json:"distro,omitempty"`
// Container identifier. If specified, must be a unique Docker container identifier.
ContainerID string `json:"container_id,omitempty"`
// Container name.
ContainerName string `json:"container_name,omitempty"`
// Node model.
NodeModel string `json:"node_model,omitempty"`
// Node region.
Region string `json:"region,omitempty"`
// Node availability zone.
Az string `json:"az,omitempty"`
// Custom user-assigned labels for Node.
CustomLabels map[string]string `json:"custom_labels,omitempty"`
}
// Validate validates this add proxy SQL params body add node
func (o *AddProxySQLParamsBodyAddNode) Validate(formats strfmt.Registry) error {
var res []error
if err := o.validateNodeType(formats); err != nil {
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
var addProxySqlParamsBodyAddNodeTypeNodeTypePropEnum []interface{}
func init() {
var res []string
if err := json.Unmarshal([]byte(`["NODE_TYPE_INVALID","GENERIC_NODE","CONTAINER_NODE","REMOTE_NODE","REMOTE_RDS_NODE"]`), &res); err != nil {
panic(err)
}
for _, v := range res {
addProxySqlParamsBodyAddNodeTypeNodeTypePropEnum = append(addProxySqlParamsBodyAddNodeTypeNodeTypePropEnum, v)
}
}
const (
// AddProxySQLParamsBodyAddNodeNodeTypeNODETYPEINVALID captures enum value "NODE_TYPE_INVALID"
AddProxySQLParamsBodyAddNodeNodeTypeNODETYPEINVALID string = "NODE_TYPE_INVALID"
// AddProxySQLParamsBodyAddNodeNodeTypeGENERICNODE captures enum value "GENERIC_NODE"
AddProxySQLParamsBodyAddNodeNodeTypeGENERICNODE string = "GENERIC_NODE"
// AddProxySQLParamsBodyAddNodeNodeTypeCONTAINERNODE captures enum value "CONTAINER_NODE"
AddProxySQLParamsBodyAddNodeNodeTypeCONTAINERNODE string = "CONTAINER_NODE"
// AddProxySQLParamsBodyAddNodeNodeTypeREMOTENODE captures enum value "REMOTE_NODE"
AddProxySQLParamsBodyAddNodeNodeTypeREMOTENODE string = "REMOTE_NODE"
// AddProxySQLParamsBodyAddNodeNodeTypeREMOTERDSNODE captures enum value "REMOTE_RDS_NODE"
AddProxySQLParamsBodyAddNodeNodeTypeREMOTERDSNODE string = "REMOTE_RDS_NODE"
)
// prop value enum
func (o *AddProxySQLParamsBodyAddNode) validateNodeTypeEnum(path, location string, value string) error {
if err := validate.EnumCase(path, location, value, addProxySqlParamsBodyAddNodeTypeNodeTypePropEnum, true); err != nil {
return err
}
return nil
}
func (o *AddProxySQLParamsBodyAddNode) validateNodeType(formats strfmt.Registry) error {
if swag.IsZero(o.NodeType) { // not required
return nil
}
// value enum
if err := o.validateNodeTypeEnum("body"+"."+"add_node"+"."+"node_type", "body", *o.NodeType); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (o *AddProxySQLParamsBodyAddNode) MarshalBinary() ([]byte, error) {
if o == nil {
return nil, nil
}
return swag.WriteJSON(o)
}
// UnmarshalBinary interface implementation
func (o *AddProxySQLParamsBodyAddNode) UnmarshalBinary(b []byte) error {
var res AddProxySQLParamsBodyAddNode
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*o = res
return nil
}
/*DetailsItems0 details items0
swagger:model DetailsItems0
*/
type DetailsItems0 struct {
// type url
TypeURL string `json:"type_url,omitempty"`
// value
// Format: byte
Value strfmt.Base64 `json:"value,omitempty"`
}
// Validate validates this details items0
func (o *DetailsItems0) Validate(formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (o *DetailsItems0) MarshalBinary() ([]byte, error) {
if o == nil {
return nil, nil
}
return swag.WriteJSON(o)
}
// UnmarshalBinary interface implementation
func (o *DetailsItems0) UnmarshalBinary(b []byte) error {
var res DetailsItems0
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*o = res
return nil
}