-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
407 lines (386 loc) · 8.91 KB
/
main.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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
package main
import (
"context"
"log"
"github.com/netboxlabs/diode-sdk-go/diode"
)
func main() {
client, err := diode.NewClient(
"grpc://localhost:8080/diode",
"example-app",
"0.1.0",
diode.WithAPIKey("YOUR_API_KEY"),
)
if err != nil {
log.Fatal(err)
}
// Create a device
deviceEntity := &diode.Device{
Name: diode.String("Device A"),
DeviceType: &diode.DeviceType{
Model: diode.String("Device Type A"),
Manufacturer: &diode.Manufacturer{
Name: diode.String("Manufacturer A"),
},
},
Platform: &diode.Platform{
Name: diode.String("Platform A"),
Manufacturer: &diode.Manufacturer{
Name: diode.String("Manufacturer A"),
},
},
Site: &diode.Site{
Name: diode.String("Site ABC"),
},
Role: &diode.Role{
Name: diode.String("Role ABC"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
{
Name: diode.String("tag 2"),
},
},
},
Serial: diode.String("123456"),
AssetTag: diode.String("123456"),
Status: diode.String("active"),
Comments: diode.String("Lorem ipsum dolor sit amet"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
{
Name: diode.String("tag 3"),
},
},
}
// Create a device type
deviceTypeEntity := &diode.DeviceType{
Model: diode.String("Device Type A"),
Manufacturer: &diode.Manufacturer{
Name: diode.String("Manufacturer A"),
},
PartNumber: diode.String("123456"),
Description: diode.String("Device Type A description"),
Comments: diode.String("Lorem ipsum dolor sit amet"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
{
Name: diode.String("tag 2"),
},
},
}
// Create an IP address
ipAddressEntity := &diode.IPAddress{
Address: diode.String("192.168.0.1/24"),
AssignedObject: &diode.Interface{
Name: diode.String("Interface ABC"),
Device: &diode.Device{
Name: diode.String("Device ABC"),
DeviceType: &diode.DeviceType{
Model: diode.String("Device Type ABC"),
Manufacturer: &diode.Manufacturer{
Name: diode.String("Manufacturer ABC"),
},
},
Platform: &diode.Platform{
Name: diode.String("Platform ABC"),
Manufacturer: &diode.Manufacturer{
Name: diode.String("Manufacturer ABC"),
},
},
Site: &diode.Site{
Name: diode.String("Site ABC"),
},
Role: &diode.Role{
Name: diode.String("Role ABC"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
{
Name: diode.String("tag 2"),
},
},
},
},
},
Status: diode.String("active"),
Role: diode.String("anycast"),
Description: diode.String("IP Address description"),
Comments: diode.String("Lorem ipsum dolor sit amet"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
{
Name: diode.String("tag 2"),
},
},
}
// Create an interface
interfaceEntity := &diode.Interface{
Name: diode.String("Interface A"),
Device: &diode.Device{
Name: diode.String("Device A"),
DeviceType: &diode.DeviceType{
Model: diode.String("Device Type A"),
Manufacturer: &diode.Manufacturer{
Name: diode.String("Manufacturer A"),
},
},
Platform: &diode.Platform{
Name: diode.String("Platform A"),
Manufacturer: &diode.Manufacturer{
Name: diode.String("Manufacturer A"),
},
},
Site: &diode.Site{
Name: diode.String("Site ABC"),
},
Role: &diode.Role{
Name: diode.String("Role ABC"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
{
Name: diode.String("tag 2"),
},
},
},
},
Type: diode.String("virtual"),
Enabled: diode.Bool(true),
Mtu: diode.Int32(1500),
MacAddress: diode.String("00:00:00:00:00:00"),
Description: diode.String("Interface A description"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
{
Name: diode.String("tag 2"),
},
},
}
// Create a manufacturer
manufacturerEntity := &diode.Manufacturer{
Name: diode.String("Manufacturer A"),
Description: diode.String("Manufacturer A description"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
{
Name: diode.String("tag 2"),
},
},
}
// Create a platform
platformEntity := &diode.Platform{
Name: diode.String("Platform A"),
Manufacturer: &diode.Manufacturer{
Name: diode.String("Manufacturer A"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
{
Name: diode.String("tag 2"),
},
},
},
Description: diode.String("Platform A description"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
{
Name: diode.String("tag 2"),
},
},
}
// Create a prefix
prefixEntity := &diode.Prefix{
Prefix: diode.String("192.168.0.0/32"),
Site: &diode.Site{
Name: diode.String("Site ABC"),
},
Status: diode.String("active"),
IsPool: diode.Bool(true),
MarkUtilized: diode.Bool(true),
Description: diode.String("Prefix description"),
Comments: diode.String("Lorem ipsum dolor sit amet"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
{
Name: diode.String("tag 2"),
},
},
}
// Create a role
roleEntity := &diode.Role{
Name: diode.String("Role A"),
Color: diode.String("ffffff"),
Description: diode.String("Role A description"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
{
Name: diode.String("tag 2"),
},
},
}
// Create a site
siteEntity := &diode.Site{
Name: diode.String("site A"),
Comments: diode.String("aaa"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 2"),
},
},
}
// Create a cluster group
clusterGroupEntity := &diode.ClusterGroup{
Name: diode.String("cluster group B"),
Description: diode.String("cluster group B description"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
},
}
// Create a cluster type
clusterTypeEntity := &diode.ClusterType{
Name: diode.String("cluster type B"),
Description: diode.String("cluster type B description"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
},
}
// Create a cluster
clusterEntity := &diode.Cluster{
Name: diode.String("cluster A"),
Type: &diode.ClusterType{
Name: diode.String("cluster type A"),
Description: diode.String("cluster type A description"),
},
Group: &diode.ClusterGroup{
Name: diode.String("cluster group A"),
},
Site: &diode.Site{
Name: diode.String("site A"),
},
Status: diode.String("active"),
Description: diode.String("cluster A description"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
},
}
// Create a virtual machine
virtualMachineEntity := &diode.VirtualMachine{
Name: diode.String("Virtual Machine A"),
Status: diode.String("active"),
Site: &diode.Site{
Name: diode.String("site 10"),
},
Cluster: &diode.Cluster{
Name: diode.String("cluster 10"),
Type: &diode.ClusterType{
Name: diode.String("cluster type 10"),
},
Group: &diode.ClusterGroup{
Name: diode.String("cluster group 10"),
},
Site: &diode.Site{
Name: diode.String("site 10"),
},
Status: diode.String("active"),
},
Role: &diode.Role{
Name: diode.String("Role 10"),
},
Platform: &diode.Platform{
Name: diode.String("Platform 10"),
Manufacturer: &diode.Manufacturer{
Name: diode.String("Manufacturer 10"),
},
},
Vcpus: diode.Int32(1),
Memory: diode.Int32(4096),
Disk: diode.Int32(100),
Description: diode.String("Virtual Machine A description"),
Comments: diode.String("Lorem ipsum dolor sit amet"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
},
}
// Create a virtual machine interface
virtualMachineInterfaceEntity := &diode.VMInterface{
VirtualMachine: virtualMachineEntity,
Name: diode.String("Interface A"),
Enabled: diode.Bool(true),
Mtu: diode.Int32(1500),
MacAddress: diode.String("00:00:00:00:00:00"),
Description: diode.String("Interface A description"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
},
}
// Create a virtual disk
virtualDiskEntity := &diode.VirtualDisk{
VirtualMachine: virtualMachineEntity,
Name: diode.String("Disk A"),
Size: diode.Int32(100),
Description: diode.String("Disk A description"),
Tags: []*diode.Tag{
{
Name: diode.String("tag 1"),
},
},
}
entities := []diode.Entity{
deviceEntity,
deviceTypeEntity,
ipAddressEntity,
interfaceEntity,
manufacturerEntity,
platformEntity,
prefixEntity,
roleEntity,
siteEntity,
clusterGroupEntity,
clusterTypeEntity,
clusterEntity,
virtualMachineEntity,
virtualMachineInterfaceEntity,
virtualDiskEntity,
}
// Ingest entities
resp, err := client.Ingest(context.Background(), entities)
if err != nil {
log.Fatal(err)
}
if resp != nil && resp.Errors != nil {
log.Printf("Errors: %v\n", resp.Errors)
} else {
log.Printf("Success\n")
}
}