-
Notifications
You must be signed in to change notification settings - Fork 82
/
create_mysql_connection_details.go
195 lines (153 loc) · 8.11 KB
/
create_mysql_connection_details.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
// Copyright (c) 2016, 2018, 2023, 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.
// GoldenGate API
//
// Use the Oracle Cloud Infrastructure GoldenGate APIs to perform data replication operations.
//
package goldengate
import (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// CreateMysqlConnectionDetails The information about a new MySQL Connection.
type CreateMysqlConnectionDetails struct {
// An object's Display Name.
DisplayName *string `mandatory:"true" json:"displayName"`
// The OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
CompartmentId *string `mandatory:"true" json:"compartmentId"`
// The username Oracle GoldenGate uses to connect the associated system of the given technology.
// This username must already exist and be available by the system/application to be connected to
// and must conform to the case sensitivty requirments defined in it.
Username *string `mandatory:"true" json:"username"`
// The password Oracle GoldenGate uses to connect the associated system of the given technology.
// It must conform to the specific security requirements including length, case sensitivity, and so on.
Password *string `mandatory:"true" json:"password"`
// The name of the database.
DatabaseName *string `mandatory:"true" json:"databaseName"`
// Metadata about this specific object.
Description *string `mandatory:"false" json:"description"`
// A simple key-value pair that is applied without any predefined name, type, or scope. Exists
// for cross-compatibility only.
// Example: `{"bar-key": "value"}`
FreeformTags map[string]string `mandatory:"false" json:"freeformTags"`
// Tags defined for this resource. Each key is predefined and scoped to a namespace.
// Example: `{"foo-namespace": {"bar-key": "value"}}`
DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"`
// Refers to the customer's vault OCID.
// If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate
// to manage secrets contained within this vault.
VaultId *string `mandatory:"false" json:"vaultId"`
// Refers to the customer's master key OCID.
// If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
KeyId *string `mandatory:"false" json:"keyId"`
// The OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the subnet being referenced.
SubnetId *string `mandatory:"false" json:"subnetId"`
// An array of Network Security Group OCIDs used to define network access for either Deployments or Connections.
NsgIds []string `mandatory:"false" json:"nsgIds"`
// The name or address of a host.
Host *string `mandatory:"false" json:"host"`
// The port of an endpoint usually specified for a connection.
Port *int `mandatory:"false" json:"port"`
// Database Certificate - The base64 encoded content of mysql.pem file
// containing the server public key (for 1 and 2-way SSL).
SslCa *string `mandatory:"false" json:"sslCa"`
// Certificates revoked by certificate authorities (CA).
// Server certificate must not be on this list (for 1 and 2-way SSL).
// Note: This is an optional and that too only applicable if TLS/MTLS option is selected.
SslCrl *string `mandatory:"false" json:"sslCrl"`
// Client Certificate - The base64 encoded content of client-cert.pem file
// containing the client public key (for 2-way SSL).
SslCert *string `mandatory:"false" json:"sslCert"`
// Client Key - The client-key.pem containing the client private key (for 2-way SSL).
SslKey *string `mandatory:"false" json:"sslKey"`
// The private IP address of the connection's endpoint in the customer's VCN, typically a
// database endpoint or a big data endpoint (e.g. Kafka bootstrap server).
// In case the privateIp is provided, the subnetId must also be provided.
// In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible.
// In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
PrivateIp *string `mandatory:"false" json:"privateIp"`
// An array of name-value pair attribute entries.
// Used as additional parameters in connection string.
AdditionalAttributes []NameValuePair `mandatory:"false" json:"additionalAttributes"`
// The OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the database system being referenced.
DbSystemId *string `mandatory:"false" json:"dbSystemId"`
// The MySQL technology type.
TechnologyType MysqlConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"`
// Security Type for MySQL.
SecurityProtocol MysqlConnectionSecurityProtocolEnum `mandatory:"true" json:"securityProtocol"`
// SSL modes for MySQL.
SslMode MysqlConnectionSslModeEnum `mandatory:"false" json:"sslMode,omitempty"`
}
//GetDisplayName returns DisplayName
func (m CreateMysqlConnectionDetails) GetDisplayName() *string {
return m.DisplayName
}
//GetDescription returns Description
func (m CreateMysqlConnectionDetails) GetDescription() *string {
return m.Description
}
//GetCompartmentId returns CompartmentId
func (m CreateMysqlConnectionDetails) GetCompartmentId() *string {
return m.CompartmentId
}
//GetFreeformTags returns FreeformTags
func (m CreateMysqlConnectionDetails) GetFreeformTags() map[string]string {
return m.FreeformTags
}
//GetDefinedTags returns DefinedTags
func (m CreateMysqlConnectionDetails) GetDefinedTags() map[string]map[string]interface{} {
return m.DefinedTags
}
//GetVaultId returns VaultId
func (m CreateMysqlConnectionDetails) GetVaultId() *string {
return m.VaultId
}
//GetKeyId returns KeyId
func (m CreateMysqlConnectionDetails) GetKeyId() *string {
return m.KeyId
}
//GetSubnetId returns SubnetId
func (m CreateMysqlConnectionDetails) GetSubnetId() *string {
return m.SubnetId
}
//GetNsgIds returns NsgIds
func (m CreateMysqlConnectionDetails) GetNsgIds() []string {
return m.NsgIds
}
func (m CreateMysqlConnectionDetails) 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 CreateMysqlConnectionDetails) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingMysqlConnectionTechnologyTypeEnum(string(m.TechnologyType)); !ok && m.TechnologyType != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for TechnologyType: %s. Supported values are: %s.", m.TechnologyType, strings.Join(GetMysqlConnectionTechnologyTypeEnumStringValues(), ",")))
}
if _, ok := GetMappingMysqlConnectionSecurityProtocolEnum(string(m.SecurityProtocol)); !ok && m.SecurityProtocol != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for SecurityProtocol: %s. Supported values are: %s.", m.SecurityProtocol, strings.Join(GetMysqlConnectionSecurityProtocolEnumStringValues(), ",")))
}
if _, ok := GetMappingMysqlConnectionSslModeEnum(string(m.SslMode)); !ok && m.SslMode != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for SslMode: %s. Supported values are: %s.", m.SslMode, strings.Join(GetMysqlConnectionSslModeEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// MarshalJSON marshals to json representation
func (m CreateMysqlConnectionDetails) MarshalJSON() (buff []byte, e error) {
type MarshalTypeCreateMysqlConnectionDetails CreateMysqlConnectionDetails
s := struct {
DiscriminatorParam string `json:"connectionType"`
MarshalTypeCreateMysqlConnectionDetails
}{
"MYSQL",
(MarshalTypeCreateMysqlConnectionDetails)(m),
}
return json.Marshal(&s)
}