-
Notifications
You must be signed in to change notification settings - Fork 82
/
connector_plugin_summary.go
190 lines (160 loc) · 7.02 KB
/
connector_plugin_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
// Copyright (c) 2016, 2018, 2024, 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.
// Connector Hub API
//
// Use the Connector Hub API to transfer data between services in Oracle Cloud Infrastructure.
// For more information about Connector Hub, see
// the Connector Hub documentation (https://docs.cloud.oracle.com/iaas/Content/connector-hub/home.htm).
// Connector Hub is formerly known as Service Connector Hub.
//
package sch
import (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// ConnectorPluginSummary Summary information for a connector plugin.
// Example connector plugins include the Streaming source and the Notifications target.
// For more information about flows defined by connectors, see
// Overview of Connector Hub (https://docs.cloud.oracle.com/iaas/Content/connector-hub/overview.htm).
// For configuration instructions, see
// Creating a Connector (https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector.htm).
type ConnectorPluginSummary interface {
// The service to be called by the connector plugin.
GetName() *string
// The date and time when this plugin became available.
// Format is defined by RFC3339 (https://tools.ietf.org/html/rfc3339).
// Example: `2023-09-10T21:10:29.600Z`
GetTimeCreated() *common.SDKTime
// The current state of the service connector.
GetLifecycleState() ConnectorPluginLifecycleStateEnum
// A user-friendly name. It does not have to be unique, and it is changeable.
// Avoid entering confidential information.
GetDisplayName() *string
// The estimated throughput range (LOW, MEDIUM, HIGH).
GetEstimatedThroughput() EstimatedThroughputEnum
}
type connectorpluginsummary struct {
JsonData []byte
EstimatedThroughput EstimatedThroughputEnum `mandatory:"false" json:"estimatedThroughput,omitempty"`
Name *string `mandatory:"true" json:"name"`
TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"`
LifecycleState ConnectorPluginLifecycleStateEnum `mandatory:"true" json:"lifecycleState"`
DisplayName *string `mandatory:"true" json:"displayName"`
Kind string `json:"kind"`
}
// UnmarshalJSON unmarshals json
func (m *connectorpluginsummary) UnmarshalJSON(data []byte) error {
m.JsonData = data
type Unmarshalerconnectorpluginsummary connectorpluginsummary
s := struct {
Model Unmarshalerconnectorpluginsummary
}{}
err := json.Unmarshal(data, &s.Model)
if err != nil {
return err
}
m.Name = s.Model.Name
m.TimeCreated = s.Model.TimeCreated
m.LifecycleState = s.Model.LifecycleState
m.DisplayName = s.Model.DisplayName
m.EstimatedThroughput = s.Model.EstimatedThroughput
m.Kind = s.Model.Kind
return err
}
// UnmarshalPolymorphicJSON unmarshals polymorphic json
func (m *connectorpluginsummary) UnmarshalPolymorphicJSON(data []byte) (interface{}, error) {
if data == nil || string(data) == "null" {
return nil, nil
}
var err error
switch m.Kind {
case "SOURCE":
mm := SourceConnectorPluginSummary{}
err = json.Unmarshal(data, &mm)
return mm, err
case "TARGET":
mm := TargetConnectorPluginSummary{}
err = json.Unmarshal(data, &mm)
return mm, err
default:
common.Logf("Recieved unsupported enum value for ConnectorPluginSummary: %s.", m.Kind)
return *m, nil
}
}
// GetEstimatedThroughput returns EstimatedThroughput
func (m connectorpluginsummary) GetEstimatedThroughput() EstimatedThroughputEnum {
return m.EstimatedThroughput
}
// GetName returns Name
func (m connectorpluginsummary) GetName() *string {
return m.Name
}
// GetTimeCreated returns TimeCreated
func (m connectorpluginsummary) GetTimeCreated() *common.SDKTime {
return m.TimeCreated
}
// GetLifecycleState returns LifecycleState
func (m connectorpluginsummary) GetLifecycleState() ConnectorPluginLifecycleStateEnum {
return m.LifecycleState
}
// GetDisplayName returns DisplayName
func (m connectorpluginsummary) GetDisplayName() *string {
return m.DisplayName
}
func (m connectorpluginsummary) 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 connectorpluginsummary) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingConnectorPluginLifecycleStateEnum(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(GetConnectorPluginLifecycleStateEnumStringValues(), ",")))
}
if _, ok := GetMappingEstimatedThroughputEnum(string(m.EstimatedThroughput)); !ok && m.EstimatedThroughput != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for EstimatedThroughput: %s. Supported values are: %s.", m.EstimatedThroughput, strings.Join(GetEstimatedThroughputEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// ConnectorPluginSummaryKindEnum Enum with underlying type: string
type ConnectorPluginSummaryKindEnum string
// Set of constants representing the allowable values for ConnectorPluginSummaryKindEnum
const (
ConnectorPluginSummaryKindSource ConnectorPluginSummaryKindEnum = "SOURCE"
ConnectorPluginSummaryKindTarget ConnectorPluginSummaryKindEnum = "TARGET"
)
var mappingConnectorPluginSummaryKindEnum = map[string]ConnectorPluginSummaryKindEnum{
"SOURCE": ConnectorPluginSummaryKindSource,
"TARGET": ConnectorPluginSummaryKindTarget,
}
var mappingConnectorPluginSummaryKindEnumLowerCase = map[string]ConnectorPluginSummaryKindEnum{
"source": ConnectorPluginSummaryKindSource,
"target": ConnectorPluginSummaryKindTarget,
}
// GetConnectorPluginSummaryKindEnumValues Enumerates the set of values for ConnectorPluginSummaryKindEnum
func GetConnectorPluginSummaryKindEnumValues() []ConnectorPluginSummaryKindEnum {
values := make([]ConnectorPluginSummaryKindEnum, 0)
for _, v := range mappingConnectorPluginSummaryKindEnum {
values = append(values, v)
}
return values
}
// GetConnectorPluginSummaryKindEnumStringValues Enumerates the set of values in String for ConnectorPluginSummaryKindEnum
func GetConnectorPluginSummaryKindEnumStringValues() []string {
return []string{
"SOURCE",
"TARGET",
}
}
// GetMappingConnectorPluginSummaryKindEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingConnectorPluginSummaryKindEnum(val string) (ConnectorPluginSummaryKindEnum, bool) {
enum, ok := mappingConnectorPluginSummaryKindEnumLowerCase[strings.ToLower(val)]
return enum, ok
}