-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathmodel_connectioninfo.go
More file actions
117 lines (96 loc) · 3.26 KB
/
model_connectioninfo.go
File metadata and controls
117 lines (96 loc) · 3.26 KB
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
package projectresource
import (
"encoding/json"
"fmt"
"strings"
)
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
type ConnectionInfo interface {
ConnectionInfo() BaseConnectionInfoImpl
}
var _ ConnectionInfo = BaseConnectionInfoImpl{}
type BaseConnectionInfoImpl struct {
Password *string `json:"password,omitempty"`
Type string `json:"type"`
UserName *string `json:"userName,omitempty"`
}
func (s BaseConnectionInfoImpl) ConnectionInfo() BaseConnectionInfoImpl {
return s
}
var _ ConnectionInfo = RawConnectionInfoImpl{}
// RawConnectionInfoImpl is returned when the Discriminated Value doesn't match any of the defined types
// NOTE: this should only be used when a type isn't defined for this type of Object (as a workaround)
// and is used only for Deserialization (e.g. this cannot be used as a Request Payload).
type RawConnectionInfoImpl struct {
connectionInfo BaseConnectionInfoImpl
Type string
Values map[string]interface{}
}
func (s RawConnectionInfoImpl) ConnectionInfo() BaseConnectionInfoImpl {
return s.connectionInfo
}
func UnmarshalConnectionInfoImplementation(input []byte) (ConnectionInfo, error) {
if input == nil {
return nil, nil
}
var temp map[string]interface{}
if err := json.Unmarshal(input, &temp); err != nil {
return nil, fmt.Errorf("unmarshaling ConnectionInfo into map[string]interface: %+v", err)
}
var value string
if v, ok := temp["type"]; ok {
value = fmt.Sprintf("%v", v)
}
if strings.EqualFold(value, "MiSqlConnectionInfo") {
var out MiSqlConnectionInfo
if err := json.Unmarshal(input, &out); err != nil {
return nil, fmt.Errorf("unmarshaling into MiSqlConnectionInfo: %+v", err)
}
return out, nil
}
if strings.EqualFold(value, "MongoDbConnectionInfo") {
var out MongoDbConnectionInfo
if err := json.Unmarshal(input, &out); err != nil {
return nil, fmt.Errorf("unmarshaling into MongoDbConnectionInfo: %+v", err)
}
return out, nil
}
if strings.EqualFold(value, "MySqlConnectionInfo") {
var out MySqlConnectionInfo
if err := json.Unmarshal(input, &out); err != nil {
return nil, fmt.Errorf("unmarshaling into MySqlConnectionInfo: %+v", err)
}
return out, nil
}
if strings.EqualFold(value, "OracleConnectionInfo") {
var out OracleConnectionInfo
if err := json.Unmarshal(input, &out); err != nil {
return nil, fmt.Errorf("unmarshaling into OracleConnectionInfo: %+v", err)
}
return out, nil
}
if strings.EqualFold(value, "PostgreSqlConnectionInfo") {
var out PostgreSqlConnectionInfo
if err := json.Unmarshal(input, &out); err != nil {
return nil, fmt.Errorf("unmarshaling into PostgreSqlConnectionInfo: %+v", err)
}
return out, nil
}
if strings.EqualFold(value, "SqlConnectionInfo") {
var out SqlConnectionInfo
if err := json.Unmarshal(input, &out); err != nil {
return nil, fmt.Errorf("unmarshaling into SqlConnectionInfo: %+v", err)
}
return out, nil
}
var parent BaseConnectionInfoImpl
if err := json.Unmarshal(input, &parent); err != nil {
return nil, fmt.Errorf("unmarshaling into BaseConnectionInfoImpl: %+v", err)
}
return RawConnectionInfoImpl{
connectionInfo: parent,
Type: value,
Values: temp,
}, nil
}