-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathconnection.go
374 lines (310 loc) · 12.8 KB
/
connection.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
// Copyright (c) 2016, 2018, 2025, Oracle and/or its affiliates. All rights reserved.
// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
// Code generated. DO NOT EDIT.
// Database Migration API
//
// Use the Oracle Cloud Infrastructure Database Migration APIs to perform database migration operations.
//
package databasemigration
import (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// Connection Represents the common details required for creating a new connection.
type Connection interface {
// The OCID of the connection being referenced.
GetId() *string
// A user-friendly name. Does not have to be unique, and it's changeable.
// Avoid entering confidential information.
GetDisplayName() *string
// The OCID of the compartment.
GetCompartmentId() *string
// The Connection's current lifecycle state.
GetLifecycleState() ConnectionLifecycleStateEnum
// The time when this resource was created.
// An RFC3339 formatted datetime string such as `2016-08-25T21:10:29.600Z`.
GetTimeCreated() *common.SDKTime
// The time when this resource was updated.
// An RFC3339 formatted datetime string such as `2016-08-25T21:10:29.600Z`.
GetTimeUpdated() *common.SDKTime
// The username (credential) used when creating or updating this resource.
GetUsername() *string
// A user-friendly description. Does not have to be unique, and it's changeable.
// Avoid entering confidential information.
GetDescription() *string
// Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace.
// For more information, see Resource Tags. Example: {"Department": "Finance"}
GetFreeformTags() map[string]string
// Defined tags for this resource. Each key is predefined and scoped to a namespace.
// Example: `{"foo-namespace": {"bar-key": "value"}}`
GetDefinedTags() map[string]map[string]interface{}
// Usage of system tag keys. These predefined keys are scoped to namespaces.
// Example: `{"orcl-cloud": {"free-tier-retained": "true"}}`
GetSystemTags() map[string]map[string]interface{}
// The message describing the current state of the connection's lifecycle in detail.
// For example, can be used to provide actionable information for a connection in a Failed state.
GetLifecycleDetails() *string
// OCI resource ID.
GetVaultId() *string
// The OCID of the key used in cryptographic operations.
GetKeyId() *string
// OCI resource ID.
GetSubnetId() *string
// List of ingress IP addresses from where to connect to this connection's privateIp.
GetIngressIps() []IngressIpDetails
// An array of Network Security Group OCIDs used to define network access for Connections.
GetNsgIds() []string
// The password (credential) used when creating or updating this resource.
GetPassword() *string
// The username (credential) used when creating or updating this resource.
GetReplicationUsername() *string
// The password (credential) used when creating or updating this resource.
GetReplicationPassword() *string
// The OCID of the resource being referenced.
GetSecretId() *string
// The OCID of the resource being referenced.
GetPrivateEndpointId() *string
}
type connection struct {
JsonData []byte
Description *string `mandatory:"false" json:"description"`
FreeformTags map[string]string `mandatory:"false" json:"freeformTags"`
DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"`
SystemTags map[string]map[string]interface{} `mandatory:"false" json:"systemTags"`
LifecycleDetails *string `mandatory:"false" json:"lifecycleDetails"`
VaultId *string `mandatory:"false" json:"vaultId"`
KeyId *string `mandatory:"false" json:"keyId"`
SubnetId *string `mandatory:"false" json:"subnetId"`
IngressIps []IngressIpDetails `mandatory:"false" json:"ingressIps"`
NsgIds []string `mandatory:"false" json:"nsgIds"`
Password *string `mandatory:"false" json:"password"`
ReplicationUsername *string `mandatory:"false" json:"replicationUsername"`
ReplicationPassword *string `mandatory:"false" json:"replicationPassword"`
SecretId *string `mandatory:"false" json:"secretId"`
PrivateEndpointId *string `mandatory:"false" json:"privateEndpointId"`
Id *string `mandatory:"true" json:"id"`
DisplayName *string `mandatory:"true" json:"displayName"`
CompartmentId *string `mandatory:"true" json:"compartmentId"`
LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"`
TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"`
TimeUpdated *common.SDKTime `mandatory:"true" json:"timeUpdated"`
Username *string `mandatory:"true" json:"username"`
ConnectionType string `json:"connectionType"`
}
// UnmarshalJSON unmarshals json
func (m *connection) UnmarshalJSON(data []byte) error {
m.JsonData = data
type Unmarshalerconnection connection
s := struct {
Model Unmarshalerconnection
}{}
err := json.Unmarshal(data, &s.Model)
if err != nil {
return err
}
m.Id = s.Model.Id
m.DisplayName = s.Model.DisplayName
m.CompartmentId = s.Model.CompartmentId
m.LifecycleState = s.Model.LifecycleState
m.TimeCreated = s.Model.TimeCreated
m.TimeUpdated = s.Model.TimeUpdated
m.Username = s.Model.Username
m.Description = s.Model.Description
m.FreeformTags = s.Model.FreeformTags
m.DefinedTags = s.Model.DefinedTags
m.SystemTags = s.Model.SystemTags
m.LifecycleDetails = s.Model.LifecycleDetails
m.VaultId = s.Model.VaultId
m.KeyId = s.Model.KeyId
m.SubnetId = s.Model.SubnetId
m.IngressIps = s.Model.IngressIps
m.NsgIds = s.Model.NsgIds
m.Password = s.Model.Password
m.ReplicationUsername = s.Model.ReplicationUsername
m.ReplicationPassword = s.Model.ReplicationPassword
m.SecretId = s.Model.SecretId
m.PrivateEndpointId = s.Model.PrivateEndpointId
m.ConnectionType = s.Model.ConnectionType
return err
}
// UnmarshalPolymorphicJSON unmarshals polymorphic json
func (m *connection) UnmarshalPolymorphicJSON(data []byte) (interface{}, error) {
if data == nil || string(data) == "null" {
return nil, nil
}
var err error
switch m.ConnectionType {
case "MYSQL":
mm := MysqlConnection{}
err = json.Unmarshal(data, &mm)
return mm, err
case "ORACLE":
mm := OracleConnection{}
err = json.Unmarshal(data, &mm)
return mm, err
default:
common.Logf("Received unsupported enum value for Connection: %s.", m.ConnectionType)
return *m, nil
}
}
// GetDescription returns Description
func (m connection) GetDescription() *string {
return m.Description
}
// GetFreeformTags returns FreeformTags
func (m connection) GetFreeformTags() map[string]string {
return m.FreeformTags
}
// GetDefinedTags returns DefinedTags
func (m connection) GetDefinedTags() map[string]map[string]interface{} {
return m.DefinedTags
}
// GetSystemTags returns SystemTags
func (m connection) GetSystemTags() map[string]map[string]interface{} {
return m.SystemTags
}
// GetLifecycleDetails returns LifecycleDetails
func (m connection) GetLifecycleDetails() *string {
return m.LifecycleDetails
}
// GetVaultId returns VaultId
func (m connection) GetVaultId() *string {
return m.VaultId
}
// GetKeyId returns KeyId
func (m connection) GetKeyId() *string {
return m.KeyId
}
// GetSubnetId returns SubnetId
func (m connection) GetSubnetId() *string {
return m.SubnetId
}
// GetIngressIps returns IngressIps
func (m connection) GetIngressIps() []IngressIpDetails {
return m.IngressIps
}
// GetNsgIds returns NsgIds
func (m connection) GetNsgIds() []string {
return m.NsgIds
}
// GetPassword returns Password
func (m connection) GetPassword() *string {
return m.Password
}
// GetReplicationUsername returns ReplicationUsername
func (m connection) GetReplicationUsername() *string {
return m.ReplicationUsername
}
// GetReplicationPassword returns ReplicationPassword
func (m connection) GetReplicationPassword() *string {
return m.ReplicationPassword
}
// GetSecretId returns SecretId
func (m connection) GetSecretId() *string {
return m.SecretId
}
// GetPrivateEndpointId returns PrivateEndpointId
func (m connection) GetPrivateEndpointId() *string {
return m.PrivateEndpointId
}
// GetId returns Id
func (m connection) GetId() *string {
return m.Id
}
// GetDisplayName returns DisplayName
func (m connection) GetDisplayName() *string {
return m.DisplayName
}
// GetCompartmentId returns CompartmentId
func (m connection) GetCompartmentId() *string {
return m.CompartmentId
}
// GetLifecycleState returns LifecycleState
func (m connection) GetLifecycleState() ConnectionLifecycleStateEnum {
return m.LifecycleState
}
// GetTimeCreated returns TimeCreated
func (m connection) GetTimeCreated() *common.SDKTime {
return m.TimeCreated
}
// GetTimeUpdated returns TimeUpdated
func (m connection) GetTimeUpdated() *common.SDKTime {
return m.TimeUpdated
}
// GetUsername returns Username
func (m connection) GetUsername() *string {
return m.Username
}
func (m connection) String() string {
return common.PointerString(m)
}
// ValidateEnumValue returns an error when providing an unsupported enum value
// This function is being called during constructing API request process
// Not recommended for calling this function directly
func (m connection) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingConnectionLifecycleStateEnum(string(m.LifecycleState)); !ok && m.LifecycleState != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for LifecycleState: %s. Supported values are: %s.", m.LifecycleState, strings.Join(GetConnectionLifecycleStateEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// ConnectionLifecycleStateEnum Enum with underlying type: string
type ConnectionLifecycleStateEnum string
// Set of constants representing the allowable values for ConnectionLifecycleStateEnum
const (
ConnectionLifecycleStateCreating ConnectionLifecycleStateEnum = "CREATING"
ConnectionLifecycleStateUpdating ConnectionLifecycleStateEnum = "UPDATING"
ConnectionLifecycleStateActive ConnectionLifecycleStateEnum = "ACTIVE"
ConnectionLifecycleStateInactive ConnectionLifecycleStateEnum = "INACTIVE"
ConnectionLifecycleStateDeleting ConnectionLifecycleStateEnum = "DELETING"
ConnectionLifecycleStateDeleted ConnectionLifecycleStateEnum = "DELETED"
ConnectionLifecycleStateFailed ConnectionLifecycleStateEnum = "FAILED"
)
var mappingConnectionLifecycleStateEnum = map[string]ConnectionLifecycleStateEnum{
"CREATING": ConnectionLifecycleStateCreating,
"UPDATING": ConnectionLifecycleStateUpdating,
"ACTIVE": ConnectionLifecycleStateActive,
"INACTIVE": ConnectionLifecycleStateInactive,
"DELETING": ConnectionLifecycleStateDeleting,
"DELETED": ConnectionLifecycleStateDeleted,
"FAILED": ConnectionLifecycleStateFailed,
}
var mappingConnectionLifecycleStateEnumLowerCase = map[string]ConnectionLifecycleStateEnum{
"creating": ConnectionLifecycleStateCreating,
"updating": ConnectionLifecycleStateUpdating,
"active": ConnectionLifecycleStateActive,
"inactive": ConnectionLifecycleStateInactive,
"deleting": ConnectionLifecycleStateDeleting,
"deleted": ConnectionLifecycleStateDeleted,
"failed": ConnectionLifecycleStateFailed,
}
// GetConnectionLifecycleStateEnumValues Enumerates the set of values for ConnectionLifecycleStateEnum
func GetConnectionLifecycleStateEnumValues() []ConnectionLifecycleStateEnum {
values := make([]ConnectionLifecycleStateEnum, 0)
for _, v := range mappingConnectionLifecycleStateEnum {
values = append(values, v)
}
return values
}
// GetConnectionLifecycleStateEnumStringValues Enumerates the set of values in String for ConnectionLifecycleStateEnum
func GetConnectionLifecycleStateEnumStringValues() []string {
return []string{
"CREATING",
"UPDATING",
"ACTIVE",
"INACTIVE",
"DELETING",
"DELETED",
"FAILED",
}
}
// GetMappingConnectionLifecycleStateEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingConnectionLifecycleStateEnum(val string) (ConnectionLifecycleStateEnum, bool) {
enum, ok := mappingConnectionLifecycleStateEnumLowerCase[strings.ToLower(val)]
return enum, ok
}