-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathmodel_mongodbconnectioninfo.go
More file actions
64 lines (51 loc) · 2.12 KB
/
model_mongodbconnectioninfo.go
File metadata and controls
64 lines (51 loc) · 2.12 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
package projectresource
import (
"encoding/json"
"fmt"
)
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
var _ ConnectionInfo = MongoDbConnectionInfo{}
type MongoDbConnectionInfo struct {
AdditionalSettings *string `json:"additionalSettings,omitempty"`
Authentication *AuthenticationType `json:"authentication,omitempty"`
ConnectionString string `json:"connectionString"`
DataSource *string `json:"dataSource,omitempty"`
EncryptConnection *bool `json:"encryptConnection,omitempty"`
EnforceSSL *bool `json:"enforceSSL,omitempty"`
Port *int64 `json:"port,omitempty"`
ServerBrandVersion *string `json:"serverBrandVersion,omitempty"`
ServerName *string `json:"serverName,omitempty"`
ServerVersion *string `json:"serverVersion,omitempty"`
TrustServerCertificate *bool `json:"trustServerCertificate,omitempty"`
// Fields inherited from ConnectionInfo
Password *string `json:"password,omitempty"`
Type string `json:"type"`
UserName *string `json:"userName,omitempty"`
}
func (s MongoDbConnectionInfo) ConnectionInfo() BaseConnectionInfoImpl {
return BaseConnectionInfoImpl{
Password: s.Password,
Type: s.Type,
UserName: s.UserName,
}
}
var _ json.Marshaler = MongoDbConnectionInfo{}
func (s MongoDbConnectionInfo) MarshalJSON() ([]byte, error) {
type wrapper MongoDbConnectionInfo
wrapped := wrapper(s)
encoded, err := json.Marshal(wrapped)
if err != nil {
return nil, fmt.Errorf("marshaling MongoDbConnectionInfo: %+v", err)
}
var decoded map[string]interface{}
if err = json.Unmarshal(encoded, &decoded); err != nil {
return nil, fmt.Errorf("unmarshaling MongoDbConnectionInfo: %+v", err)
}
decoded["type"] = "MongoDbConnectionInfo"
encoded, err = json.Marshal(decoded)
if err != nil {
return nil, fmt.Errorf("re-marshaling MongoDbConnectionInfo: %+v", err)
}
return encoded, nil
}