-
Notifications
You must be signed in to change notification settings - Fork 13
/
domainlogicalinterface.go
391 lines (215 loc) · 11.2 KB
/
domainlogicalinterface.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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
package platformclientv2
import (
"time"
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Domainlogicalinterface
type Domainlogicalinterface struct {
// Id - The globally unique identifier for the object.
Id *string `json:"id,omitempty"`
// Name - The name of the entity.
Name *string `json:"name,omitempty"`
// Description - The resource's description.
Description *string `json:"description,omitempty"`
// Version - The current version of the resource.
Version *int `json:"version,omitempty"`
// DateCreated - The date the resource was created. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
DateCreated *time.Time `json:"dateCreated,omitempty"`
// DateModified - The date of the last modification to the resource. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
DateModified *time.Time `json:"dateModified,omitempty"`
// ModifiedBy - The ID of the user that last modified the resource.
ModifiedBy *string `json:"modifiedBy,omitempty"`
// CreatedBy - The ID of the user that created the resource.
CreatedBy *string `json:"createdBy,omitempty"`
// State - Indicates if the resource is active, inactive, or deleted.
State *string `json:"state,omitempty"`
// ModifiedByApp - The application that last modified the resource.
ModifiedByApp *string `json:"modifiedByApp,omitempty"`
// CreatedByApp - The application that created the resource.
CreatedByApp *string `json:"createdByApp,omitempty"`
// EdgeUri
EdgeUri *string `json:"edgeUri,omitempty"`
// EdgeAssignedId
EdgeAssignedId *string `json:"edgeAssignedId,omitempty"`
// FriendlyName - Friendly Name
FriendlyName *string `json:"friendlyName,omitempty"`
// VlanTagId
VlanTagId *int `json:"vlanTagId,omitempty"`
// HardwareAddress - Hardware Address
HardwareAddress *string `json:"hardwareAddress,omitempty"`
// PhysicalAdapterId - Physical Adapter Id
PhysicalAdapterId *string `json:"physicalAdapterId,omitempty"`
// IfStatus
IfStatus *string `json:"ifStatus,omitempty"`
// InterfaceType - The type of this network interface.
InterfaceType *string `json:"interfaceType,omitempty"`
// PublicNatAddressIpV4 - IPv4 NENT IP Address
PublicNatAddressIpV4 *string `json:"publicNatAddressIpV4,omitempty"`
// PublicNatAddressIpV6 - IPv6 NENT IP Address
PublicNatAddressIpV6 *string `json:"publicNatAddressIpV6,omitempty"`
// Routes - The list of routes assigned to this interface.
Routes *[]Domainnetworkroute `json:"routes,omitempty"`
// Addresses - The list of IP addresses on this interface. Priority of dns addresses are based on order in the list.
Addresses *[]Domainnetworkaddress `json:"addresses,omitempty"`
// Ipv4Capabilities - IPv4 interface settings.
Ipv4Capabilities *Domaincapabilities `json:"ipv4Capabilities,omitempty"`
// Ipv6Capabilities - IPv6 interface settings.
Ipv6Capabilities *Domaincapabilities `json:"ipv6Capabilities,omitempty"`
// CurrentState
CurrentState *string `json:"currentState,omitempty"`
// LastModifiedUserId
LastModifiedUserId *string `json:"lastModifiedUserId,omitempty"`
// LastModifiedCorrelationId
LastModifiedCorrelationId *string `json:"lastModifiedCorrelationId,omitempty"`
// CommandResponses
CommandResponses *[]Domainnetworkcommandresponse `json:"commandResponses,omitempty"`
// InheritPhoneTrunkBasesIPv4 - The IPv4 phone trunk base assignment will be inherited from the Edge Group.
InheritPhoneTrunkBasesIPv4 *bool `json:"inheritPhoneTrunkBasesIPv4,omitempty"`
// InheritPhoneTrunkBasesIPv6 - The IPv6 phone trunk base assignment will be inherited from the Edge Group.
InheritPhoneTrunkBasesIPv6 *bool `json:"inheritPhoneTrunkBasesIPv6,omitempty"`
// UseForInternalEdgeCommunication - This interface will be used for all internal edge-to-edge communication using settings from the edgeTrunkBaseAssignment on the Edge Group.
UseForInternalEdgeCommunication *bool `json:"useForInternalEdgeCommunication,omitempty"`
// UseForIndirectEdgeCommunication - Site Interconnects using the \"Indirect\" method will communicate using the Public IP Address specified on the interface. Use this option when a NAT enabled firewall is between the Edge and the far end.
UseForIndirectEdgeCommunication *bool `json:"useForIndirectEdgeCommunication,omitempty"`
// UseForCloudProxyEdgeCommunication - Site Interconnects using the \"Cloud Proxy\" method will broker the connection between them with a Cloud Proxy. This method is required for connections between one or more Sites using Cloud Media, but can optionally be used between two premises Sites if Direct or Indirect are not an option.
UseForCloudProxyEdgeCommunication *bool `json:"useForCloudProxyEdgeCommunication,omitempty"`
// UseForWanInterface - This interface will be used for all communication with the internet.
UseForWanInterface *bool `json:"useForWanInterface,omitempty"`
// ExternalTrunkBaseAssignments - External trunk base settings to use for external communication from this interface.
ExternalTrunkBaseAssignments *[]Trunkbaseassignment `json:"externalTrunkBaseAssignments,omitempty"`
// PhoneTrunkBaseAssignments - Phone trunk base settings to use for phone communication from this interface. These settings will be ignored when \"inheritPhoneTrunkBases\" is true.
PhoneTrunkBaseAssignments *[]Trunkbaseassignment `json:"phoneTrunkBaseAssignments,omitempty"`
// TraceEnabled
TraceEnabled *bool `json:"traceEnabled,omitempty"`
// StartDate - Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
StartDate *time.Time `json:"startDate,omitempty"`
// EndDate - Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
EndDate *time.Time `json:"endDate,omitempty"`
// SelfUri - The URI for this object
SelfUri *string `json:"selfUri,omitempty"`
}
func (u *Domainlogicalinterface) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Domainlogicalinterface
DateCreated := new(string)
if u.DateCreated != nil {
*DateCreated = timeutil.Strftime(u.DateCreated, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
DateCreated = nil
}
DateModified := new(string)
if u.DateModified != nil {
*DateModified = timeutil.Strftime(u.DateModified, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
DateModified = nil
}
StartDate := new(string)
if u.StartDate != nil {
*StartDate = timeutil.Strftime(u.StartDate, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
StartDate = nil
}
EndDate := new(string)
if u.EndDate != nil {
*EndDate = timeutil.Strftime(u.EndDate, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
EndDate = nil
}
return json.Marshal(&struct {
Id *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Description *string `json:"description,omitempty"`
Version *int `json:"version,omitempty"`
DateCreated *string `json:"dateCreated,omitempty"`
DateModified *string `json:"dateModified,omitempty"`
ModifiedBy *string `json:"modifiedBy,omitempty"`
CreatedBy *string `json:"createdBy,omitempty"`
State *string `json:"state,omitempty"`
ModifiedByApp *string `json:"modifiedByApp,omitempty"`
CreatedByApp *string `json:"createdByApp,omitempty"`
EdgeUri *string `json:"edgeUri,omitempty"`
EdgeAssignedId *string `json:"edgeAssignedId,omitempty"`
FriendlyName *string `json:"friendlyName,omitempty"`
VlanTagId *int `json:"vlanTagId,omitempty"`
HardwareAddress *string `json:"hardwareAddress,omitempty"`
PhysicalAdapterId *string `json:"physicalAdapterId,omitempty"`
IfStatus *string `json:"ifStatus,omitempty"`
InterfaceType *string `json:"interfaceType,omitempty"`
PublicNatAddressIpV4 *string `json:"publicNatAddressIpV4,omitempty"`
PublicNatAddressIpV6 *string `json:"publicNatAddressIpV6,omitempty"`
Routes *[]Domainnetworkroute `json:"routes,omitempty"`
Addresses *[]Domainnetworkaddress `json:"addresses,omitempty"`
Ipv4Capabilities *Domaincapabilities `json:"ipv4Capabilities,omitempty"`
Ipv6Capabilities *Domaincapabilities `json:"ipv6Capabilities,omitempty"`
CurrentState *string `json:"currentState,omitempty"`
LastModifiedUserId *string `json:"lastModifiedUserId,omitempty"`
LastModifiedCorrelationId *string `json:"lastModifiedCorrelationId,omitempty"`
CommandResponses *[]Domainnetworkcommandresponse `json:"commandResponses,omitempty"`
InheritPhoneTrunkBasesIPv4 *bool `json:"inheritPhoneTrunkBasesIPv4,omitempty"`
InheritPhoneTrunkBasesIPv6 *bool `json:"inheritPhoneTrunkBasesIPv6,omitempty"`
UseForInternalEdgeCommunication *bool `json:"useForInternalEdgeCommunication,omitempty"`
UseForIndirectEdgeCommunication *bool `json:"useForIndirectEdgeCommunication,omitempty"`
UseForCloudProxyEdgeCommunication *bool `json:"useForCloudProxyEdgeCommunication,omitempty"`
UseForWanInterface *bool `json:"useForWanInterface,omitempty"`
ExternalTrunkBaseAssignments *[]Trunkbaseassignment `json:"externalTrunkBaseAssignments,omitempty"`
PhoneTrunkBaseAssignments *[]Trunkbaseassignment `json:"phoneTrunkBaseAssignments,omitempty"`
TraceEnabled *bool `json:"traceEnabled,omitempty"`
StartDate *string `json:"startDate,omitempty"`
EndDate *string `json:"endDate,omitempty"`
SelfUri *string `json:"selfUri,omitempty"`
*Alias
}{
Id: u.Id,
Name: u.Name,
Description: u.Description,
Version: u.Version,
DateCreated: DateCreated,
DateModified: DateModified,
ModifiedBy: u.ModifiedBy,
CreatedBy: u.CreatedBy,
State: u.State,
ModifiedByApp: u.ModifiedByApp,
CreatedByApp: u.CreatedByApp,
EdgeUri: u.EdgeUri,
EdgeAssignedId: u.EdgeAssignedId,
FriendlyName: u.FriendlyName,
VlanTagId: u.VlanTagId,
HardwareAddress: u.HardwareAddress,
PhysicalAdapterId: u.PhysicalAdapterId,
IfStatus: u.IfStatus,
InterfaceType: u.InterfaceType,
PublicNatAddressIpV4: u.PublicNatAddressIpV4,
PublicNatAddressIpV6: u.PublicNatAddressIpV6,
Routes: u.Routes,
Addresses: u.Addresses,
Ipv4Capabilities: u.Ipv4Capabilities,
Ipv6Capabilities: u.Ipv6Capabilities,
CurrentState: u.CurrentState,
LastModifiedUserId: u.LastModifiedUserId,
LastModifiedCorrelationId: u.LastModifiedCorrelationId,
CommandResponses: u.CommandResponses,
InheritPhoneTrunkBasesIPv4: u.InheritPhoneTrunkBasesIPv4,
InheritPhoneTrunkBasesIPv6: u.InheritPhoneTrunkBasesIPv6,
UseForInternalEdgeCommunication: u.UseForInternalEdgeCommunication,
UseForIndirectEdgeCommunication: u.UseForIndirectEdgeCommunication,
UseForCloudProxyEdgeCommunication: u.UseForCloudProxyEdgeCommunication,
UseForWanInterface: u.UseForWanInterface,
ExternalTrunkBaseAssignments: u.ExternalTrunkBaseAssignments,
PhoneTrunkBaseAssignments: u.PhoneTrunkBaseAssignments,
TraceEnabled: u.TraceEnabled,
StartDate: StartDate,
EndDate: EndDate,
SelfUri: u.SelfUri,
Alias: (*Alias)(u),
})
}
// String returns a JSON representation of the model
func (o *Domainlogicalinterface) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}