-
Notifications
You must be signed in to change notification settings - Fork 82
/
connection_summary.go
228 lines (187 loc) · 7.67 KB
/
connection_summary.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
// Copyright (c) 2016, 2018, 2020, 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.
// Data Integration API
//
// Use the Data Integration Service APIs to perform common extract, load, and transform (ETL) tasks.
//
package dataintegration
import (
"encoding/json"
"github.com/oracle/oci-go-sdk/common"
)
// ConnectionSummary The connection summary object.
type ConnectionSummary interface {
// Generated key that can be used in API calls to identify connection. On scenarios where reference to the connection is needed, a value can be passed in create.
GetKey() *string
// The model version of an object.
GetModelVersion() *string
GetParentRef() *ParentReference
// Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value can be edited by the user and it is restricted to 1000 characters
GetName() *string
// Detailed description for the object.
GetDescription() *string
// The version of the object that is used to track changes in the object instance.
GetObjectVersion() *int
// The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
GetObjectStatus() *int
// Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be edited by the user.
GetIdentifier() *string
GetPrimarySchema() *Schema
// The properties for the connection.
GetConnectionProperties() []ConnectionProperty
// The default property for the connection.
GetIsDefault() *bool
GetMetadata() *ObjectMetadata
// A map, if provided key is replaced with generated key, this structure provides mapping between user provided key and generated key
GetKeyMap() map[string]string
}
type connectionsummary struct {
JsonData []byte
Key *string `mandatory:"false" json:"key"`
ModelVersion *string `mandatory:"false" json:"modelVersion"`
ParentRef *ParentReference `mandatory:"false" json:"parentRef"`
Name *string `mandatory:"false" json:"name"`
Description *string `mandatory:"false" json:"description"`
ObjectVersion *int `mandatory:"false" json:"objectVersion"`
ObjectStatus *int `mandatory:"false" json:"objectStatus"`
Identifier *string `mandatory:"false" json:"identifier"`
PrimarySchema *Schema `mandatory:"false" json:"primarySchema"`
ConnectionProperties []ConnectionProperty `mandatory:"false" json:"connectionProperties"`
IsDefault *bool `mandatory:"false" json:"isDefault"`
Metadata *ObjectMetadata `mandatory:"false" json:"metadata"`
KeyMap map[string]string `mandatory:"false" json:"keyMap"`
ModelType string `json:"modelType"`
}
// UnmarshalJSON unmarshals json
func (m *connectionsummary) UnmarshalJSON(data []byte) error {
m.JsonData = data
type Unmarshalerconnectionsummary connectionsummary
s := struct {
Model Unmarshalerconnectionsummary
}{}
err := json.Unmarshal(data, &s.Model)
if err != nil {
return err
}
m.Key = s.Model.Key
m.ModelVersion = s.Model.ModelVersion
m.ParentRef = s.Model.ParentRef
m.Name = s.Model.Name
m.Description = s.Model.Description
m.ObjectVersion = s.Model.ObjectVersion
m.ObjectStatus = s.Model.ObjectStatus
m.Identifier = s.Model.Identifier
m.PrimarySchema = s.Model.PrimarySchema
m.ConnectionProperties = s.Model.ConnectionProperties
m.IsDefault = s.Model.IsDefault
m.Metadata = s.Model.Metadata
m.KeyMap = s.Model.KeyMap
m.ModelType = s.Model.ModelType
return err
}
// UnmarshalPolymorphicJSON unmarshals polymorphic json
func (m *connectionsummary) UnmarshalPolymorphicJSON(data []byte) (interface{}, error) {
if data == nil || string(data) == "null" {
return nil, nil
}
var err error
switch m.ModelType {
case "ORACLE_ATP_CONNECTION":
mm := ConnectionSummaryFromAtp{}
err = json.Unmarshal(data, &mm)
return mm, err
case "ORACLEDB_CONNECTION":
mm := ConnectionSummaryFromOracle{}
err = json.Unmarshal(data, &mm)
return mm, err
case "ORACLE_ADWC_CONNECTION":
mm := ConnectionSummaryFromAdwc{}
err = json.Unmarshal(data, &mm)
return mm, err
case "ORACLE_OBJECT_STORAGE_CONNECTION":
mm := ConnectionSummaryFromObjectStorage{}
err = json.Unmarshal(data, &mm)
return mm, err
default:
return *m, nil
}
}
//GetKey returns Key
func (m connectionsummary) GetKey() *string {
return m.Key
}
//GetModelVersion returns ModelVersion
func (m connectionsummary) GetModelVersion() *string {
return m.ModelVersion
}
//GetParentRef returns ParentRef
func (m connectionsummary) GetParentRef() *ParentReference {
return m.ParentRef
}
//GetName returns Name
func (m connectionsummary) GetName() *string {
return m.Name
}
//GetDescription returns Description
func (m connectionsummary) GetDescription() *string {
return m.Description
}
//GetObjectVersion returns ObjectVersion
func (m connectionsummary) GetObjectVersion() *int {
return m.ObjectVersion
}
//GetObjectStatus returns ObjectStatus
func (m connectionsummary) GetObjectStatus() *int {
return m.ObjectStatus
}
//GetIdentifier returns Identifier
func (m connectionsummary) GetIdentifier() *string {
return m.Identifier
}
//GetPrimarySchema returns PrimarySchema
func (m connectionsummary) GetPrimarySchema() *Schema {
return m.PrimarySchema
}
//GetConnectionProperties returns ConnectionProperties
func (m connectionsummary) GetConnectionProperties() []ConnectionProperty {
return m.ConnectionProperties
}
//GetIsDefault returns IsDefault
func (m connectionsummary) GetIsDefault() *bool {
return m.IsDefault
}
//GetMetadata returns Metadata
func (m connectionsummary) GetMetadata() *ObjectMetadata {
return m.Metadata
}
//GetKeyMap returns KeyMap
func (m connectionsummary) GetKeyMap() map[string]string {
return m.KeyMap
}
func (m connectionsummary) String() string {
return common.PointerString(m)
}
// ConnectionSummaryModelTypeEnum Enum with underlying type: string
type ConnectionSummaryModelTypeEnum string
// Set of constants representing the allowable values for ConnectionSummaryModelTypeEnum
const (
ConnectionSummaryModelTypeOracleAdwcConnection ConnectionSummaryModelTypeEnum = "ORACLE_ADWC_CONNECTION"
ConnectionSummaryModelTypeOracleAtpConnection ConnectionSummaryModelTypeEnum = "ORACLE_ATP_CONNECTION"
ConnectionSummaryModelTypeOracleObjectStorageConnection ConnectionSummaryModelTypeEnum = "ORACLE_OBJECT_STORAGE_CONNECTION"
ConnectionSummaryModelTypeOracledbConnection ConnectionSummaryModelTypeEnum = "ORACLEDB_CONNECTION"
)
var mappingConnectionSummaryModelType = map[string]ConnectionSummaryModelTypeEnum{
"ORACLE_ADWC_CONNECTION": ConnectionSummaryModelTypeOracleAdwcConnection,
"ORACLE_ATP_CONNECTION": ConnectionSummaryModelTypeOracleAtpConnection,
"ORACLE_OBJECT_STORAGE_CONNECTION": ConnectionSummaryModelTypeOracleObjectStorageConnection,
"ORACLEDB_CONNECTION": ConnectionSummaryModelTypeOracledbConnection,
}
// GetConnectionSummaryModelTypeEnumValues Enumerates the set of values for ConnectionSummaryModelTypeEnum
func GetConnectionSummaryModelTypeEnumValues() []ConnectionSummaryModelTypeEnum {
values := make([]ConnectionSummaryModelTypeEnum, 0)
for _, v := range mappingConnectionSummaryModelType {
values = append(values, v)
}
return values
}