-
Notifications
You must be signed in to change notification settings - Fork 82
/
resolver_endpoint.go
284 lines (237 loc) · 10.5 KB
/
resolver_endpoint.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
// Copyright (c) 2016, 2018, 2022, 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.
// DNS API
//
// API for the DNS service. Use this API to manage DNS zones, records, and other DNS resources.
// For more information, see Overview of the DNS Service (https://docs.cloud.oracle.com/iaas/Content/DNS/Concepts/dnszonemanagement.htm).
//
package dns
import (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// ResolverEndpoint An OCI DNS resolver endpoint.
// **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
type ResolverEndpoint interface {
// The name of the resolver endpoint. Must be unique, case-insensitive, within the resolver.
GetName() *string
// A Boolean flag indicating whether or not the resolver endpoint is for forwarding.
GetIsForwarding() *bool
// A Boolean flag indicating whether or not the resolver endpoint is for listening.
GetIsListening() *bool
// The OCID of the owning compartment. This will match the resolver that the resolver endpoint is under
// and will be updated if the resolver's compartment is changed.
GetCompartmentId() *string
// The date and time the resource was created in "YYYY-MM-ddThh:mm:ssZ" format
// with a Z offset, as defined by RFC 3339.
// **Example:** `2016-07-22T17:23:59:60Z`
GetTimeCreated() *common.SDKTime
// The date and time the resource was last updated in "YYYY-MM-ddThh:mm:ssZ"
// format with a Z offset, as defined by RFC 3339.
// **Example:** `2016-07-22T17:23:59:60Z`
GetTimeUpdated() *common.SDKTime
// The current state of the resource.
GetLifecycleState() ResolverEndpointLifecycleStateEnum
// The canonical absolute URL of the resource.
GetSelf() *string
// An IP address from which forwarded queries may be sent. For VNIC endpoints, this IP address must be part
// of the subnet and will be assigned by the system if unspecified when isForwarding is true.
GetForwardingAddress() *string
// An IP address to listen to queries on. For VNIC endpoints this IP address must be part of the
// subnet and will be assigned by the system if unspecified when isListening is true.
GetListeningAddress() *string
}
type resolverendpoint struct {
JsonData []byte
Name *string `mandatory:"true" json:"name"`
IsForwarding *bool `mandatory:"true" json:"isForwarding"`
IsListening *bool `mandatory:"true" json:"isListening"`
CompartmentId *string `mandatory:"true" json:"compartmentId"`
TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"`
TimeUpdated *common.SDKTime `mandatory:"true" json:"timeUpdated"`
LifecycleState ResolverEndpointLifecycleStateEnum `mandatory:"true" json:"lifecycleState"`
Self *string `mandatory:"true" json:"self"`
ForwardingAddress *string `mandatory:"false" json:"forwardingAddress"`
ListeningAddress *string `mandatory:"false" json:"listeningAddress"`
EndpointType string `json:"endpointType"`
}
// UnmarshalJSON unmarshals json
func (m *resolverendpoint) UnmarshalJSON(data []byte) error {
m.JsonData = data
type Unmarshalerresolverendpoint resolverendpoint
s := struct {
Model Unmarshalerresolverendpoint
}{}
err := json.Unmarshal(data, &s.Model)
if err != nil {
return err
}
m.Name = s.Model.Name
m.IsForwarding = s.Model.IsForwarding
m.IsListening = s.Model.IsListening
m.CompartmentId = s.Model.CompartmentId
m.TimeCreated = s.Model.TimeCreated
m.TimeUpdated = s.Model.TimeUpdated
m.LifecycleState = s.Model.LifecycleState
m.Self = s.Model.Self
m.ForwardingAddress = s.Model.ForwardingAddress
m.ListeningAddress = s.Model.ListeningAddress
m.EndpointType = s.Model.EndpointType
return err
}
// UnmarshalPolymorphicJSON unmarshals polymorphic json
func (m *resolverendpoint) UnmarshalPolymorphicJSON(data []byte) (interface{}, error) {
if data == nil || string(data) == "null" {
return nil, nil
}
var err error
switch m.EndpointType {
case "VNIC":
mm := ResolverVnicEndpoint{}
err = json.Unmarshal(data, &mm)
return mm, err
default:
return *m, nil
}
}
//GetName returns Name
func (m resolverendpoint) GetName() *string {
return m.Name
}
//GetIsForwarding returns IsForwarding
func (m resolverendpoint) GetIsForwarding() *bool {
return m.IsForwarding
}
//GetIsListening returns IsListening
func (m resolverendpoint) GetIsListening() *bool {
return m.IsListening
}
//GetCompartmentId returns CompartmentId
func (m resolverendpoint) GetCompartmentId() *string {
return m.CompartmentId
}
//GetTimeCreated returns TimeCreated
func (m resolverendpoint) GetTimeCreated() *common.SDKTime {
return m.TimeCreated
}
//GetTimeUpdated returns TimeUpdated
func (m resolverendpoint) GetTimeUpdated() *common.SDKTime {
return m.TimeUpdated
}
//GetLifecycleState returns LifecycleState
func (m resolverendpoint) GetLifecycleState() ResolverEndpointLifecycleStateEnum {
return m.LifecycleState
}
//GetSelf returns Self
func (m resolverendpoint) GetSelf() *string {
return m.Self
}
//GetForwardingAddress returns ForwardingAddress
func (m resolverendpoint) GetForwardingAddress() *string {
return m.ForwardingAddress
}
//GetListeningAddress returns ListeningAddress
func (m resolverendpoint) GetListeningAddress() *string {
return m.ListeningAddress
}
func (m resolverendpoint) 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 resolverendpoint) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingResolverEndpointLifecycleStateEnum(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(GetResolverEndpointLifecycleStateEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// ResolverEndpointLifecycleStateEnum Enum with underlying type: string
type ResolverEndpointLifecycleStateEnum string
// Set of constants representing the allowable values for ResolverEndpointLifecycleStateEnum
const (
ResolverEndpointLifecycleStateActive ResolverEndpointLifecycleStateEnum = "ACTIVE"
ResolverEndpointLifecycleStateCreating ResolverEndpointLifecycleStateEnum = "CREATING"
ResolverEndpointLifecycleStateDeleted ResolverEndpointLifecycleStateEnum = "DELETED"
ResolverEndpointLifecycleStateDeleting ResolverEndpointLifecycleStateEnum = "DELETING"
ResolverEndpointLifecycleStateFailed ResolverEndpointLifecycleStateEnum = "FAILED"
ResolverEndpointLifecycleStateUpdating ResolverEndpointLifecycleStateEnum = "UPDATING"
)
var mappingResolverEndpointLifecycleStateEnum = map[string]ResolverEndpointLifecycleStateEnum{
"ACTIVE": ResolverEndpointLifecycleStateActive,
"CREATING": ResolverEndpointLifecycleStateCreating,
"DELETED": ResolverEndpointLifecycleStateDeleted,
"DELETING": ResolverEndpointLifecycleStateDeleting,
"FAILED": ResolverEndpointLifecycleStateFailed,
"UPDATING": ResolverEndpointLifecycleStateUpdating,
}
var mappingResolverEndpointLifecycleStateEnumLowerCase = map[string]ResolverEndpointLifecycleStateEnum{
"active": ResolverEndpointLifecycleStateActive,
"creating": ResolverEndpointLifecycleStateCreating,
"deleted": ResolverEndpointLifecycleStateDeleted,
"deleting": ResolverEndpointLifecycleStateDeleting,
"failed": ResolverEndpointLifecycleStateFailed,
"updating": ResolverEndpointLifecycleStateUpdating,
}
// GetResolverEndpointLifecycleStateEnumValues Enumerates the set of values for ResolverEndpointLifecycleStateEnum
func GetResolverEndpointLifecycleStateEnumValues() []ResolverEndpointLifecycleStateEnum {
values := make([]ResolverEndpointLifecycleStateEnum, 0)
for _, v := range mappingResolverEndpointLifecycleStateEnum {
values = append(values, v)
}
return values
}
// GetResolverEndpointLifecycleStateEnumStringValues Enumerates the set of values in String for ResolverEndpointLifecycleStateEnum
func GetResolverEndpointLifecycleStateEnumStringValues() []string {
return []string{
"ACTIVE",
"CREATING",
"DELETED",
"DELETING",
"FAILED",
"UPDATING",
}
}
// GetMappingResolverEndpointLifecycleStateEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingResolverEndpointLifecycleStateEnum(val string) (ResolverEndpointLifecycleStateEnum, bool) {
enum, ok := mappingResolverEndpointLifecycleStateEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// ResolverEndpointEndpointTypeEnum Enum with underlying type: string
type ResolverEndpointEndpointTypeEnum string
// Set of constants representing the allowable values for ResolverEndpointEndpointTypeEnum
const (
ResolverEndpointEndpointTypeVnic ResolverEndpointEndpointTypeEnum = "VNIC"
)
var mappingResolverEndpointEndpointTypeEnum = map[string]ResolverEndpointEndpointTypeEnum{
"VNIC": ResolverEndpointEndpointTypeVnic,
}
var mappingResolverEndpointEndpointTypeEnumLowerCase = map[string]ResolverEndpointEndpointTypeEnum{
"vnic": ResolverEndpointEndpointTypeVnic,
}
// GetResolverEndpointEndpointTypeEnumValues Enumerates the set of values for ResolverEndpointEndpointTypeEnum
func GetResolverEndpointEndpointTypeEnumValues() []ResolverEndpointEndpointTypeEnum {
values := make([]ResolverEndpointEndpointTypeEnum, 0)
for _, v := range mappingResolverEndpointEndpointTypeEnum {
values = append(values, v)
}
return values
}
// GetResolverEndpointEndpointTypeEnumStringValues Enumerates the set of values in String for ResolverEndpointEndpointTypeEnum
func GetResolverEndpointEndpointTypeEnumStringValues() []string {
return []string{
"VNIC",
}
}
// GetMappingResolverEndpointEndpointTypeEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingResolverEndpointEndpointTypeEnum(val string) (ResolverEndpointEndpointTypeEnum, bool) {
enum, ok := mappingResolverEndpointEndpointTypeEnumLowerCase[strings.ToLower(val)]
return enum, ok
}