catocli 2.0.1__py3-none-any.whl → 2.0.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of catocli might be problematic. Click here for more details.

Files changed (108) hide show
  1. catocli/Utils/clidriver.py +41 -6
  2. catocli/__init__.py +1 -1
  3. catocli/parsers/custom/__init__.py +7 -5
  4. catocli/parsers/custom/customLib.py +490 -1
  5. catocli/parsers/custom/export_rules/__init__.py +5 -1
  6. catocli/parsers/custom/export_rules/export_rules.py +32 -183
  7. catocli/parsers/custom/export_sites/__init__.py +20 -0
  8. catocli/parsers/custom/export_sites/export_sites.py +365 -0
  9. catocli/parsers/custom/import_rules_to_tf/__init__.py +3 -3
  10. catocli/parsers/custom/import_rules_to_tf/import_rules_to_tf.py +20 -146
  11. catocli/parsers/custom/import_sites_to_tf/__init__.py +45 -0
  12. catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +891 -0
  13. catocli/parsers/mutation_accountManagement/__init__.py +18 -21
  14. catocli/parsers/mutation_admin/__init__.py +18 -21
  15. catocli/parsers/mutation_container/__init__.py +6 -7
  16. catocli/parsers/mutation_hardware/__init__.py +6 -7
  17. catocli/parsers/mutation_policy/__init__.py +666 -588
  18. catocli/parsers/mutation_policy_terminalServer/README.md +7 -0
  19. catocli/parsers/mutation_policy_terminalServer_addRule/README.md +18 -0
  20. catocli/parsers/mutation_policy_terminalServer_addSection/README.md +18 -0
  21. catocli/parsers/mutation_policy_terminalServer_createPolicyRevision/README.md +18 -0
  22. catocli/parsers/mutation_policy_terminalServer_discardPolicyRevision/README.md +18 -0
  23. catocli/parsers/mutation_policy_terminalServer_moveRule/README.md +18 -0
  24. catocli/parsers/mutation_policy_terminalServer_moveSection/README.md +18 -0
  25. catocli/parsers/mutation_policy_terminalServer_publishPolicyRevision/README.md +18 -0
  26. catocli/parsers/mutation_policy_terminalServer_removeRule/README.md +18 -0
  27. catocli/parsers/mutation_policy_terminalServer_removeSection/README.md +18 -0
  28. catocli/parsers/mutation_policy_terminalServer_updatePolicy/README.md +18 -0
  29. catocli/parsers/mutation_policy_terminalServer_updateRule/README.md +18 -0
  30. catocli/parsers/mutation_policy_terminalServer_updateSection/README.md +18 -0
  31. catocli/parsers/mutation_sandbox/__init__.py +12 -14
  32. catocli/parsers/mutation_site/__init__.py +189 -175
  33. catocli/parsers/mutation_site_addSocketAddOnCard/README.md +17 -0
  34. catocli/parsers/mutation_site_removeSocketAddOnCard/README.md +17 -0
  35. catocli/parsers/mutation_site_startSiteUpgrade/README.md +17 -0
  36. catocli/parsers/mutation_sites/__init__.py +189 -175
  37. catocli/parsers/mutation_sites_addSocketAddOnCard/README.md +17 -0
  38. catocli/parsers/mutation_sites_removeSocketAddOnCard/README.md +17 -0
  39. catocli/parsers/mutation_sites_startSiteUpgrade/README.md +17 -0
  40. catocli/parsers/mutation_xdr/__init__.py +18 -21
  41. catocli/parsers/parserApiClient.py +36 -11
  42. catocli/parsers/query_accountBySubdomain/__init__.py +6 -7
  43. catocli/parsers/query_accountManagement/__init__.py +6 -7
  44. catocli/parsers/query_accountMetrics/__init__.py +6 -7
  45. catocli/parsers/query_accountRoles/__init__.py +6 -7
  46. catocli/parsers/query_accountSnapshot/__init__.py +6 -7
  47. catocli/parsers/query_admin/__init__.py +6 -7
  48. catocli/parsers/query_admins/__init__.py +6 -7
  49. catocli/parsers/query_appStats/__init__.py +6 -7
  50. catocli/parsers/query_appStatsTimeSeries/__init__.py +6 -7
  51. catocli/parsers/query_auditFeed/__init__.py +6 -7
  52. catocli/parsers/query_catalogs/__init__.py +6 -7
  53. catocli/parsers/query_container/__init__.py +6 -7
  54. catocli/parsers/query_devices/README.md +2 -1
  55. catocli/parsers/query_devices/__init__.py +6 -7
  56. catocli/parsers/query_entityLookup/__init__.py +6 -7
  57. catocli/parsers/query_events/__init__.py +6 -7
  58. catocli/parsers/query_eventsFeed/README.md +1 -1
  59. catocli/parsers/query_eventsFeed/__init__.py +6 -7
  60. catocli/parsers/query_eventsTimeSeries/__init__.py +6 -7
  61. catocli/parsers/query_hardware/__init__.py +6 -7
  62. catocli/parsers/query_hardwareManagement/__init__.py +6 -7
  63. catocli/parsers/query_licensing/__init__.py +6 -7
  64. catocli/parsers/query_policy/README.md +2 -1
  65. catocli/parsers/query_policy/__init__.py +6 -7
  66. catocli/parsers/query_sandbox/__init__.py +6 -7
  67. catocli/parsers/query_site/README.md +2 -1
  68. catocli/parsers/query_site/__init__.py +6 -7
  69. catocli/parsers/query_siteLocation/__init__.py +4 -8
  70. catocli/parsers/query_subDomains/__init__.py +6 -7
  71. catocli/parsers/query_xdr/__init__.py +12 -14
  72. catocli/parsers/raw/README.md +4 -0
  73. catocli/parsers/raw/__init__.py +5 -2
  74. {catocli-2.0.1.dist-info → catocli-2.0.3.dist-info}/METADATA +1 -1
  75. {catocli-2.0.1.dist-info → catocli-2.0.3.dist-info}/RECORD +108 -67
  76. graphql_client/api/call_api.py +12 -6
  77. models/mutation.policy.remotePortFwd.updateRule.json +6 -6
  78. models/mutation.policy.terminalServer.addRule.json +2403 -0
  79. models/mutation.policy.terminalServer.addSection.json +1358 -0
  80. models/mutation.policy.terminalServer.createPolicyRevision.json +1873 -0
  81. models/mutation.policy.terminalServer.discardPolicyRevision.json +1807 -0
  82. models/mutation.policy.terminalServer.moveRule.json +1605 -0
  83. models/mutation.policy.terminalServer.moveSection.json +1259 -0
  84. models/mutation.policy.terminalServer.publishPolicyRevision.json +1864 -0
  85. models/mutation.policy.terminalServer.removeRule.json +1253 -0
  86. models/mutation.policy.terminalServer.removeSection.json +958 -0
  87. models/mutation.policy.terminalServer.updatePolicy.json +1883 -0
  88. models/mutation.policy.terminalServer.updateRule.json +2096 -0
  89. models/mutation.policy.terminalServer.updateSection.json +1111 -0
  90. models/mutation.site.addSocketAddOnCard.json +1050 -0
  91. models/mutation.site.removeSocketAddOnCard.json +786 -0
  92. models/mutation.site.startSiteUpgrade.json +802 -0
  93. models/mutation.sites.addSocketAddOnCard.json +1050 -0
  94. models/mutation.sites.removeSocketAddOnCard.json +786 -0
  95. models/mutation.sites.startSiteUpgrade.json +802 -0
  96. models/query.devices.json +311 -2
  97. models/query.events.json +48 -0
  98. models/query.eventsFeed.json +12 -0
  99. models/query.eventsTimeSeries.json +36 -0
  100. models/query.licensing.json +21815 -10093
  101. models/query.policy.json +1898 -305
  102. models/query.site.json +225 -0
  103. models/query.siteLocation.json +97190 -295396
  104. schema/catolib.py +63 -30
  105. {catocli-2.0.1.dist-info → catocli-2.0.3.dist-info}/LICENSE +0 -0
  106. {catocli-2.0.1.dist-info → catocli-2.0.3.dist-info}/WHEEL +0 -0
  107. {catocli-2.0.1.dist-info → catocli-2.0.3.dist-info}/entry_points.txt +0 -0
  108. {catocli-2.0.1.dist-info → catocli-2.0.3.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1050 @@
1
+ {
2
+ "args": {
3
+ "accountId": {
4
+ "defaultValue": null,
5
+ "description": null,
6
+ "id_str": "accountId",
7
+ "name": "accountId",
8
+ "path": "accountId",
9
+ "requestStr": "$accountId:ID! ",
10
+ "required": true,
11
+ "responseStr": "accountId:$accountId ",
12
+ "type": {
13
+ "kind": [
14
+ "NON_NULL",
15
+ "SCALAR"
16
+ ],
17
+ "name": "ID",
18
+ "non_null": false
19
+ },
20
+ "varName": "accountId"
21
+ }
22
+ },
23
+ "childOperations": {
24
+ "addSocketAddOnCard": {
25
+ "args": {
26
+ "addSocketAddOnCard___input": {
27
+ "defaultValue": null,
28
+ "description": null,
29
+ "id_str": "addSocketAddOnCard___input",
30
+ "name": "input",
31
+ "path": "addSocketAddOnCard.input",
32
+ "requestStr": "$addSocketAddOnCardInput:AddSocketAddOnCardInput! ",
33
+ "required": true,
34
+ "responseStr": "input:$addSocketAddOnCardInput ",
35
+ "type": {
36
+ "definition": {
37
+ "description": null,
38
+ "enumValues": null,
39
+ "fields": null,
40
+ "inputFields": {
41
+ "addOns": {
42
+ "defaultValue": null,
43
+ "description": null,
44
+ "id_str": "addSocketAddOnCard___input___addOns",
45
+ "name": "addOns",
46
+ "path": "addSocketAddOnCard.input.addOns",
47
+ "requestStr": "$socketAddOnCardInput:[SocketAddOnCardInput]! ",
48
+ "required": true,
49
+ "responseStr": "addOns:$socketAddOnCardInput ",
50
+ "type": {
51
+ "definition": {
52
+ "description": null,
53
+ "enumValues": null,
54
+ "fields": null,
55
+ "inputFields": {
56
+ "expansionSlotNumber": {
57
+ "defaultValue": null,
58
+ "description": null,
59
+ "id_str": "addSocketAddOnCard___input___addOns___expansionSlotNumber",
60
+ "name": "expansionSlotNumber",
61
+ "path": "addSocketAddOnCard.input.addOns.expansionSlotNumber",
62
+ "requestStr": "$expansionSlotNumber:SocketAddOnExpansionSlotNumber! ",
63
+ "required": true,
64
+ "responseStr": "expansionSlotNumber:$expansionSlotNumber ",
65
+ "type": {
66
+ "definition": {
67
+ "description": null,
68
+ "enumValues": [
69
+ {
70
+ "deprecationReason": null,
71
+ "description": null,
72
+ "isDeprecated": false,
73
+ "name": "SLOT_1"
74
+ },
75
+ {
76
+ "deprecationReason": null,
77
+ "description": null,
78
+ "isDeprecated": false,
79
+ "name": "SLOT_2"
80
+ }
81
+ ],
82
+ "fields": null,
83
+ "inputFields": null,
84
+ "interfaces": null,
85
+ "kind": "ENUM",
86
+ "name": "SocketAddOnExpansionSlotNumber",
87
+ "possibleTypes": null
88
+ },
89
+ "indexType": "enum",
90
+ "kind": [
91
+ "NON_NULL",
92
+ "ENUM"
93
+ ],
94
+ "name": "SocketAddOnExpansionSlotNumber",
95
+ "non_null": false
96
+ },
97
+ "varName": "expansionSlotNumber"
98
+ },
99
+ "type": {
100
+ "defaultValue": null,
101
+ "description": null,
102
+ "id_str": "addSocketAddOnCard___input___addOns___type",
103
+ "name": "type",
104
+ "path": "addSocketAddOnCard.input.addOns.type",
105
+ "requestStr": "$type:SocketAddOnType! ",
106
+ "required": true,
107
+ "responseStr": "type:$type ",
108
+ "type": {
109
+ "definition": {
110
+ "description": null,
111
+ "enumValues": [
112
+ {
113
+ "deprecationReason": null,
114
+ "description": null,
115
+ "isDeprecated": false,
116
+ "name": "FOUR_1G_COPPER"
117
+ },
118
+ {
119
+ "deprecationReason": null,
120
+ "description": null,
121
+ "isDeprecated": false,
122
+ "name": "TWO_10G_FIBER"
123
+ },
124
+ {
125
+ "deprecationReason": null,
126
+ "description": null,
127
+ "isDeprecated": false,
128
+ "name": "TWO_1G_FIBER"
129
+ },
130
+ {
131
+ "deprecationReason": null,
132
+ "description": null,
133
+ "isDeprecated": false,
134
+ "name": "FOUR_10G_FIBER"
135
+ }
136
+ ],
137
+ "fields": null,
138
+ "inputFields": null,
139
+ "interfaces": null,
140
+ "kind": "ENUM",
141
+ "name": "SocketAddOnType",
142
+ "possibleTypes": null
143
+ },
144
+ "indexType": "enum",
145
+ "kind": [
146
+ "NON_NULL",
147
+ "ENUM"
148
+ ],
149
+ "name": "SocketAddOnType",
150
+ "non_null": false
151
+ },
152
+ "varName": "type"
153
+ }
154
+ },
155
+ "interfaces": null,
156
+ "kind": "INPUT_OBJECT",
157
+ "name": "SocketAddOnCardInput",
158
+ "possibleTypes": null
159
+ },
160
+ "indexType": "input_object",
161
+ "kind": [
162
+ "NON_NULL",
163
+ "LIST",
164
+ "NON_NULL",
165
+ "INPUT_OBJECT"
166
+ ],
167
+ "name": "SocketAddOnCardInput",
168
+ "non_null": false
169
+ },
170
+ "varName": "socketAddOnCardInput"
171
+ },
172
+ "site": {
173
+ "defaultValue": null,
174
+ "description": null,
175
+ "id_str": "addSocketAddOnCard___input___site",
176
+ "name": "site",
177
+ "path": "addSocketAddOnCard.input.site",
178
+ "requestStr": "$siteRefInput:SiteRefInput! ",
179
+ "required": true,
180
+ "responseStr": "site:$siteRefInput ",
181
+ "type": {
182
+ "definition": {
183
+ "description": null,
184
+ "enumValues": null,
185
+ "fields": null,
186
+ "inputFields": {
187
+ "by": {
188
+ "defaultValue": "ID",
189
+ "description": null,
190
+ "id_str": "addSocketAddOnCard___input___site___by",
191
+ "name": "by",
192
+ "path": "addSocketAddOnCard.input.site.by",
193
+ "requestStr": "$by:ObjectRefBy! ",
194
+ "required": true,
195
+ "responseStr": "by:$by ",
196
+ "type": {
197
+ "definition": {
198
+ "description": null,
199
+ "enumValues": [
200
+ {
201
+ "deprecationReason": null,
202
+ "description": null,
203
+ "isDeprecated": false,
204
+ "name": "ID"
205
+ },
206
+ {
207
+ "deprecationReason": null,
208
+ "description": null,
209
+ "isDeprecated": false,
210
+ "name": "NAME"
211
+ }
212
+ ],
213
+ "fields": null,
214
+ "inputFields": null,
215
+ "interfaces": null,
216
+ "kind": "ENUM",
217
+ "name": "ObjectRefBy",
218
+ "possibleTypes": null
219
+ },
220
+ "indexType": "enum",
221
+ "kind": [
222
+ "NON_NULL",
223
+ "ENUM"
224
+ ],
225
+ "name": "ObjectRefBy",
226
+ "non_null": false
227
+ },
228
+ "varName": "by"
229
+ },
230
+ "input": {
231
+ "defaultValue": null,
232
+ "description": null,
233
+ "id_str": "addSocketAddOnCard___input___site___input",
234
+ "name": "input",
235
+ "path": "addSocketAddOnCard.input.site.input",
236
+ "requestStr": "$input:String! ",
237
+ "required": true,
238
+ "responseStr": "input:$input ",
239
+ "type": {
240
+ "kind": [
241
+ "NON_NULL",
242
+ "SCALAR"
243
+ ],
244
+ "name": "String",
245
+ "non_null": false
246
+ },
247
+ "varName": "input"
248
+ }
249
+ },
250
+ "interfaces": null,
251
+ "kind": "INPUT_OBJECT",
252
+ "name": "SiteRefInput",
253
+ "possibleTypes": null
254
+ },
255
+ "indexType": "input_object",
256
+ "kind": [
257
+ "NON_NULL",
258
+ "INPUT_OBJECT"
259
+ ],
260
+ "name": "SiteRefInput",
261
+ "non_null": false
262
+ },
263
+ "varName": "siteRefInput"
264
+ }
265
+ },
266
+ "interfaces": null,
267
+ "kind": "INPUT_OBJECT",
268
+ "name": "AddSocketAddOnCardInput",
269
+ "possibleTypes": null
270
+ },
271
+ "indexType": "input_object",
272
+ "kind": [
273
+ "NON_NULL",
274
+ "INPUT_OBJECT"
275
+ ],
276
+ "name": "AddSocketAddOnCardInput",
277
+ "non_null": false
278
+ },
279
+ "varName": "addSocketAddOnCardInput"
280
+ }
281
+ },
282
+ "deprecationReason": null,
283
+ "description": null,
284
+ "isDeprecated": false,
285
+ "name": "addSocketAddOnCard",
286
+ "type": {
287
+ "kind": "OBJECT",
288
+ "name": "AddSocketAddOnCardPayload",
289
+ "ofType": null
290
+ }
291
+ }
292
+ },
293
+ "deprecationReason": null,
294
+ "description": null,
295
+ "fieldTypes": {
296
+ "AddSocketAddOnCardPayload": true,
297
+ "ObjectRefBy": true,
298
+ "SiteRefInput": true,
299
+ "SocketAddOnCard": true,
300
+ "SocketAddOnCardInput": true,
301
+ "SocketAddOnExpansionSlotNumber": true,
302
+ "SocketAddOnType": true
303
+ },
304
+ "isDeprecated": false,
305
+ "name": "site",
306
+ "operationArgs": {
307
+ "accountId": {
308
+ "defaultValue": null,
309
+ "description": null,
310
+ "id_str": "accountId",
311
+ "name": "accountId",
312
+ "path": "accountId",
313
+ "requestStr": "$accountId:ID! ",
314
+ "required": true,
315
+ "responseStr": "accountId:$accountId ",
316
+ "type": {
317
+ "kind": [
318
+ "NON_NULL",
319
+ "SCALAR"
320
+ ],
321
+ "name": "ID",
322
+ "non_null": false
323
+ },
324
+ "varName": "accountId"
325
+ },
326
+ "addSocketAddOnCardInput": {
327
+ "defaultValue": null,
328
+ "description": null,
329
+ "id_str": "addSocketAddOnCard___input",
330
+ "name": "input",
331
+ "path": "addSocketAddOnCard.input",
332
+ "requestStr": "$addSocketAddOnCardInput:AddSocketAddOnCardInput! ",
333
+ "required": true,
334
+ "responseStr": "input:$addSocketAddOnCardInput ",
335
+ "type": {
336
+ "definition": {
337
+ "description": null,
338
+ "enumValues": null,
339
+ "fields": null,
340
+ "inputFields": {
341
+ "addOns": {
342
+ "defaultValue": null,
343
+ "description": null,
344
+ "id_str": "addSocketAddOnCard___input___addOns",
345
+ "name": "addOns",
346
+ "path": "addSocketAddOnCard.input.addOns",
347
+ "requestStr": "$socketAddOnCardInput:[SocketAddOnCardInput]! ",
348
+ "required": true,
349
+ "responseStr": "addOns:$socketAddOnCardInput ",
350
+ "type": {
351
+ "definition": {
352
+ "description": null,
353
+ "enumValues": null,
354
+ "fields": null,
355
+ "inputFields": {
356
+ "expansionSlotNumber": {
357
+ "defaultValue": null,
358
+ "description": null,
359
+ "id_str": "addSocketAddOnCard___input___addOns___expansionSlotNumber",
360
+ "name": "expansionSlotNumber",
361
+ "path": "addSocketAddOnCard.input.addOns.expansionSlotNumber",
362
+ "requestStr": "$expansionSlotNumber:SocketAddOnExpansionSlotNumber! ",
363
+ "required": true,
364
+ "responseStr": "expansionSlotNumber:$expansionSlotNumber ",
365
+ "type": {
366
+ "definition": {
367
+ "description": null,
368
+ "enumValues": [
369
+ {
370
+ "deprecationReason": null,
371
+ "description": null,
372
+ "isDeprecated": false,
373
+ "name": "SLOT_1"
374
+ },
375
+ {
376
+ "deprecationReason": null,
377
+ "description": null,
378
+ "isDeprecated": false,
379
+ "name": "SLOT_2"
380
+ }
381
+ ],
382
+ "fields": null,
383
+ "inputFields": null,
384
+ "interfaces": null,
385
+ "kind": "ENUM",
386
+ "name": "SocketAddOnExpansionSlotNumber",
387
+ "possibleTypes": null
388
+ },
389
+ "indexType": "enum",
390
+ "kind": [
391
+ "NON_NULL",
392
+ "ENUM"
393
+ ],
394
+ "name": "SocketAddOnExpansionSlotNumber",
395
+ "non_null": false
396
+ },
397
+ "varName": "expansionSlotNumber"
398
+ },
399
+ "type": {
400
+ "defaultValue": null,
401
+ "description": null,
402
+ "id_str": "addSocketAddOnCard___input___addOns___type",
403
+ "name": "type",
404
+ "path": "addSocketAddOnCard.input.addOns.type",
405
+ "requestStr": "$type:SocketAddOnType! ",
406
+ "required": true,
407
+ "responseStr": "type:$type ",
408
+ "type": {
409
+ "definition": {
410
+ "description": null,
411
+ "enumValues": [
412
+ {
413
+ "deprecationReason": null,
414
+ "description": null,
415
+ "isDeprecated": false,
416
+ "name": "FOUR_1G_COPPER"
417
+ },
418
+ {
419
+ "deprecationReason": null,
420
+ "description": null,
421
+ "isDeprecated": false,
422
+ "name": "TWO_10G_FIBER"
423
+ },
424
+ {
425
+ "deprecationReason": null,
426
+ "description": null,
427
+ "isDeprecated": false,
428
+ "name": "TWO_1G_FIBER"
429
+ },
430
+ {
431
+ "deprecationReason": null,
432
+ "description": null,
433
+ "isDeprecated": false,
434
+ "name": "FOUR_10G_FIBER"
435
+ }
436
+ ],
437
+ "fields": null,
438
+ "inputFields": null,
439
+ "interfaces": null,
440
+ "kind": "ENUM",
441
+ "name": "SocketAddOnType",
442
+ "possibleTypes": null
443
+ },
444
+ "indexType": "enum",
445
+ "kind": [
446
+ "NON_NULL",
447
+ "ENUM"
448
+ ],
449
+ "name": "SocketAddOnType",
450
+ "non_null": false
451
+ },
452
+ "varName": "type"
453
+ }
454
+ },
455
+ "interfaces": null,
456
+ "kind": "INPUT_OBJECT",
457
+ "name": "SocketAddOnCardInput",
458
+ "possibleTypes": null
459
+ },
460
+ "indexType": "input_object",
461
+ "kind": [
462
+ "NON_NULL",
463
+ "LIST",
464
+ "NON_NULL",
465
+ "INPUT_OBJECT"
466
+ ],
467
+ "name": "SocketAddOnCardInput",
468
+ "non_null": false
469
+ },
470
+ "varName": "socketAddOnCardInput"
471
+ },
472
+ "site": {
473
+ "defaultValue": null,
474
+ "description": null,
475
+ "id_str": "addSocketAddOnCard___input___site",
476
+ "name": "site",
477
+ "path": "addSocketAddOnCard.input.site",
478
+ "requestStr": "$siteRefInput:SiteRefInput! ",
479
+ "required": true,
480
+ "responseStr": "site:$siteRefInput ",
481
+ "type": {
482
+ "definition": {
483
+ "description": null,
484
+ "enumValues": null,
485
+ "fields": null,
486
+ "inputFields": {
487
+ "by": {
488
+ "defaultValue": "ID",
489
+ "description": null,
490
+ "id_str": "addSocketAddOnCard___input___site___by",
491
+ "name": "by",
492
+ "path": "addSocketAddOnCard.input.site.by",
493
+ "requestStr": "$by:ObjectRefBy! ",
494
+ "required": true,
495
+ "responseStr": "by:$by ",
496
+ "type": {
497
+ "definition": {
498
+ "description": null,
499
+ "enumValues": [
500
+ {
501
+ "deprecationReason": null,
502
+ "description": null,
503
+ "isDeprecated": false,
504
+ "name": "ID"
505
+ },
506
+ {
507
+ "deprecationReason": null,
508
+ "description": null,
509
+ "isDeprecated": false,
510
+ "name": "NAME"
511
+ }
512
+ ],
513
+ "fields": null,
514
+ "inputFields": null,
515
+ "interfaces": null,
516
+ "kind": "ENUM",
517
+ "name": "ObjectRefBy",
518
+ "possibleTypes": null
519
+ },
520
+ "indexType": "enum",
521
+ "kind": [
522
+ "NON_NULL",
523
+ "ENUM"
524
+ ],
525
+ "name": "ObjectRefBy",
526
+ "non_null": false
527
+ },
528
+ "varName": "by"
529
+ },
530
+ "input": {
531
+ "defaultValue": null,
532
+ "description": null,
533
+ "id_str": "addSocketAddOnCard___input___site___input",
534
+ "name": "input",
535
+ "path": "addSocketAddOnCard.input.site.input",
536
+ "requestStr": "$input:String! ",
537
+ "required": true,
538
+ "responseStr": "input:$input ",
539
+ "type": {
540
+ "kind": [
541
+ "NON_NULL",
542
+ "SCALAR"
543
+ ],
544
+ "name": "String",
545
+ "non_null": false
546
+ },
547
+ "varName": "input"
548
+ }
549
+ },
550
+ "interfaces": null,
551
+ "kind": "INPUT_OBJECT",
552
+ "name": "SiteRefInput",
553
+ "possibleTypes": null
554
+ },
555
+ "indexType": "input_object",
556
+ "kind": [
557
+ "NON_NULL",
558
+ "INPUT_OBJECT"
559
+ ],
560
+ "name": "SiteRefInput",
561
+ "non_null": false
562
+ },
563
+ "varName": "siteRefInput"
564
+ }
565
+ },
566
+ "interfaces": null,
567
+ "kind": "INPUT_OBJECT",
568
+ "name": "AddSocketAddOnCardInput",
569
+ "possibleTypes": null
570
+ },
571
+ "indexType": "input_object",
572
+ "kind": [
573
+ "NON_NULL",
574
+ "INPUT_OBJECT"
575
+ ],
576
+ "name": "AddSocketAddOnCardInput",
577
+ "non_null": false
578
+ },
579
+ "varName": "addSocketAddOnCardInput"
580
+ }
581
+ },
582
+ "path": "mutation.site.addSocketAddOnCard",
583
+ "type": {
584
+ "definition": {
585
+ "description": null,
586
+ "enumValues": null,
587
+ "fields": {
588
+ "addSocketAddOnCard": {
589
+ "args": {
590
+ "addSocketAddOnCard___input": {
591
+ "defaultValue": null,
592
+ "description": null,
593
+ "id_str": "addSocketAddOnCard___input",
594
+ "name": "input",
595
+ "path": "addSocketAddOnCard.input",
596
+ "requestStr": "$addSocketAddOnCardInput:AddSocketAddOnCardInput! ",
597
+ "required": true,
598
+ "responseStr": "input:$addSocketAddOnCardInput ",
599
+ "type": {
600
+ "definition": {
601
+ "description": null,
602
+ "enumValues": null,
603
+ "fields": null,
604
+ "inputFields": {
605
+ "addOns": {
606
+ "defaultValue": null,
607
+ "description": null,
608
+ "id_str": "addSocketAddOnCard___input___addOns",
609
+ "name": "addOns",
610
+ "path": "addSocketAddOnCard.input.addOns",
611
+ "requestStr": "$socketAddOnCardInput:[SocketAddOnCardInput]! ",
612
+ "required": true,
613
+ "responseStr": "addOns:$socketAddOnCardInput ",
614
+ "type": {
615
+ "definition": {
616
+ "description": null,
617
+ "enumValues": null,
618
+ "fields": null,
619
+ "inputFields": {
620
+ "expansionSlotNumber": {
621
+ "defaultValue": null,
622
+ "description": null,
623
+ "id_str": "addSocketAddOnCard___input___addOns___expansionSlotNumber",
624
+ "name": "expansionSlotNumber",
625
+ "path": "addSocketAddOnCard.input.addOns.expansionSlotNumber",
626
+ "requestStr": "$expansionSlotNumber:SocketAddOnExpansionSlotNumber! ",
627
+ "required": true,
628
+ "responseStr": "expansionSlotNumber:$expansionSlotNumber ",
629
+ "type": {
630
+ "definition": {
631
+ "description": null,
632
+ "enumValues": [
633
+ {
634
+ "deprecationReason": null,
635
+ "description": null,
636
+ "isDeprecated": false,
637
+ "name": "SLOT_1"
638
+ },
639
+ {
640
+ "deprecationReason": null,
641
+ "description": null,
642
+ "isDeprecated": false,
643
+ "name": "SLOT_2"
644
+ }
645
+ ],
646
+ "fields": null,
647
+ "inputFields": null,
648
+ "interfaces": null,
649
+ "kind": "ENUM",
650
+ "name": "SocketAddOnExpansionSlotNumber",
651
+ "possibleTypes": null
652
+ },
653
+ "indexType": "enum",
654
+ "kind": [
655
+ "NON_NULL",
656
+ "ENUM"
657
+ ],
658
+ "name": "SocketAddOnExpansionSlotNumber",
659
+ "non_null": false
660
+ },
661
+ "varName": "expansionSlotNumber"
662
+ },
663
+ "type": {
664
+ "defaultValue": null,
665
+ "description": null,
666
+ "id_str": "addSocketAddOnCard___input___addOns___type",
667
+ "name": "type",
668
+ "path": "addSocketAddOnCard.input.addOns.type",
669
+ "requestStr": "$type:SocketAddOnType! ",
670
+ "required": true,
671
+ "responseStr": "type:$type ",
672
+ "type": {
673
+ "definition": {
674
+ "description": null,
675
+ "enumValues": [
676
+ {
677
+ "deprecationReason": null,
678
+ "description": null,
679
+ "isDeprecated": false,
680
+ "name": "FOUR_1G_COPPER"
681
+ },
682
+ {
683
+ "deprecationReason": null,
684
+ "description": null,
685
+ "isDeprecated": false,
686
+ "name": "TWO_10G_FIBER"
687
+ },
688
+ {
689
+ "deprecationReason": null,
690
+ "description": null,
691
+ "isDeprecated": false,
692
+ "name": "TWO_1G_FIBER"
693
+ },
694
+ {
695
+ "deprecationReason": null,
696
+ "description": null,
697
+ "isDeprecated": false,
698
+ "name": "FOUR_10G_FIBER"
699
+ }
700
+ ],
701
+ "fields": null,
702
+ "inputFields": null,
703
+ "interfaces": null,
704
+ "kind": "ENUM",
705
+ "name": "SocketAddOnType",
706
+ "possibleTypes": null
707
+ },
708
+ "indexType": "enum",
709
+ "kind": [
710
+ "NON_NULL",
711
+ "ENUM"
712
+ ],
713
+ "name": "SocketAddOnType",
714
+ "non_null": false
715
+ },
716
+ "varName": "type"
717
+ }
718
+ },
719
+ "interfaces": null,
720
+ "kind": "INPUT_OBJECT",
721
+ "name": "SocketAddOnCardInput",
722
+ "possibleTypes": null
723
+ },
724
+ "indexType": "input_object",
725
+ "kind": [
726
+ "NON_NULL",
727
+ "LIST",
728
+ "NON_NULL",
729
+ "INPUT_OBJECT"
730
+ ],
731
+ "name": "SocketAddOnCardInput",
732
+ "non_null": false
733
+ },
734
+ "varName": "socketAddOnCardInput"
735
+ },
736
+ "site": {
737
+ "defaultValue": null,
738
+ "description": null,
739
+ "id_str": "addSocketAddOnCard___input___site",
740
+ "name": "site",
741
+ "path": "addSocketAddOnCard.input.site",
742
+ "requestStr": "$siteRefInput:SiteRefInput! ",
743
+ "required": true,
744
+ "responseStr": "site:$siteRefInput ",
745
+ "type": {
746
+ "definition": {
747
+ "description": null,
748
+ "enumValues": null,
749
+ "fields": null,
750
+ "inputFields": {
751
+ "by": {
752
+ "defaultValue": "ID",
753
+ "description": null,
754
+ "id_str": "addSocketAddOnCard___input___site___by",
755
+ "name": "by",
756
+ "path": "addSocketAddOnCard.input.site.by",
757
+ "requestStr": "$by:ObjectRefBy! ",
758
+ "required": true,
759
+ "responseStr": "by:$by ",
760
+ "type": {
761
+ "definition": {
762
+ "description": null,
763
+ "enumValues": [
764
+ {
765
+ "deprecationReason": null,
766
+ "description": null,
767
+ "isDeprecated": false,
768
+ "name": "ID"
769
+ },
770
+ {
771
+ "deprecationReason": null,
772
+ "description": null,
773
+ "isDeprecated": false,
774
+ "name": "NAME"
775
+ }
776
+ ],
777
+ "fields": null,
778
+ "inputFields": null,
779
+ "interfaces": null,
780
+ "kind": "ENUM",
781
+ "name": "ObjectRefBy",
782
+ "possibleTypes": null
783
+ },
784
+ "indexType": "enum",
785
+ "kind": [
786
+ "NON_NULL",
787
+ "ENUM"
788
+ ],
789
+ "name": "ObjectRefBy",
790
+ "non_null": false
791
+ },
792
+ "varName": "by"
793
+ },
794
+ "input": {
795
+ "defaultValue": null,
796
+ "description": null,
797
+ "id_str": "addSocketAddOnCard___input___site___input",
798
+ "name": "input",
799
+ "path": "addSocketAddOnCard.input.site.input",
800
+ "requestStr": "$input:String! ",
801
+ "required": true,
802
+ "responseStr": "input:$input ",
803
+ "type": {
804
+ "kind": [
805
+ "NON_NULL",
806
+ "SCALAR"
807
+ ],
808
+ "name": "String",
809
+ "non_null": false
810
+ },
811
+ "varName": "input"
812
+ }
813
+ },
814
+ "interfaces": null,
815
+ "kind": "INPUT_OBJECT",
816
+ "name": "SiteRefInput",
817
+ "possibleTypes": null
818
+ },
819
+ "indexType": "input_object",
820
+ "kind": [
821
+ "NON_NULL",
822
+ "INPUT_OBJECT"
823
+ ],
824
+ "name": "SiteRefInput",
825
+ "non_null": false
826
+ },
827
+ "varName": "siteRefInput"
828
+ }
829
+ },
830
+ "interfaces": null,
831
+ "kind": "INPUT_OBJECT",
832
+ "name": "AddSocketAddOnCardInput",
833
+ "possibleTypes": null
834
+ },
835
+ "indexType": "input_object",
836
+ "kind": [
837
+ "NON_NULL",
838
+ "INPUT_OBJECT"
839
+ ],
840
+ "name": "AddSocketAddOnCardInput",
841
+ "non_null": false
842
+ },
843
+ "varName": "addSocketAddOnCardInput"
844
+ }
845
+ },
846
+ "deprecationReason": null,
847
+ "description": null,
848
+ "id_str": "addSocketAddOnCard",
849
+ "isDeprecated": false,
850
+ "name": "addSocketAddOnCard",
851
+ "path": "addSocketAddOnCard",
852
+ "requestStr": "$addSocketAddOnCardPayload:AddSocketAddOnCardPayload ",
853
+ "required": false,
854
+ "responseStr": "addSocketAddOnCard:$addSocketAddOnCardPayload ",
855
+ "type": {
856
+ "definition": {
857
+ "description": null,
858
+ "enumValues": null,
859
+ "fields": {
860
+ "addOns": {
861
+ "args": {},
862
+ "deprecationReason": null,
863
+ "description": null,
864
+ "id_str": "addSocketAddOnCard___addOns",
865
+ "isDeprecated": false,
866
+ "name": "addOns",
867
+ "path": "addSocketAddOnCard.addOns",
868
+ "requestStr": "$socketAddOnCard:[SocketAddOnCard]! ",
869
+ "required": true,
870
+ "responseStr": "addOns:$socketAddOnCard ",
871
+ "type": {
872
+ "definition": {
873
+ "description": null,
874
+ "enumValues": null,
875
+ "fields": {
876
+ "expansionSlotNumber": {
877
+ "alias": "socketAddOnExpansionSlotNumberExpansionSlotNumber: expansionSlotNumber",
878
+ "args": {},
879
+ "deprecationReason": null,
880
+ "description": null,
881
+ "id_str": "addSocketAddOnCard___addOns___expansionSlotNumber",
882
+ "isDeprecated": false,
883
+ "name": "expansionSlotNumber",
884
+ "path": "addSocketAddOnCard.addOns.expansionSlotNumber",
885
+ "requestStr": "$expansionSlotNumber:SocketAddOnExpansionSlotNumber! ",
886
+ "required": true,
887
+ "responseStr": "expansionSlotNumber:$expansionSlotNumber ",
888
+ "type": {
889
+ "definition": {
890
+ "description": null,
891
+ "enumValues": [
892
+ {
893
+ "deprecationReason": null,
894
+ "description": null,
895
+ "isDeprecated": false,
896
+ "name": "SLOT_1"
897
+ },
898
+ {
899
+ "deprecationReason": null,
900
+ "description": null,
901
+ "isDeprecated": false,
902
+ "name": "SLOT_2"
903
+ }
904
+ ],
905
+ "fields": null,
906
+ "inputFields": null,
907
+ "interfaces": null,
908
+ "kind": "ENUM",
909
+ "name": "SocketAddOnExpansionSlotNumber",
910
+ "possibleTypes": null
911
+ },
912
+ "indexType": "enum",
913
+ "kind": [
914
+ "NON_NULL",
915
+ "ENUM"
916
+ ],
917
+ "name": "SocketAddOnExpansionSlotNumber",
918
+ "non_null": false
919
+ },
920
+ "varName": "expansionSlotNumber"
921
+ },
922
+ "type": {
923
+ "alias": "socketAddOnTypeType: type",
924
+ "args": {},
925
+ "deprecationReason": null,
926
+ "description": null,
927
+ "id_str": "addSocketAddOnCard___addOns___type",
928
+ "isDeprecated": false,
929
+ "name": "type",
930
+ "path": "addSocketAddOnCard.addOns.type",
931
+ "requestStr": "$type:SocketAddOnType! ",
932
+ "required": true,
933
+ "responseStr": "type:$type ",
934
+ "type": {
935
+ "definition": {
936
+ "description": null,
937
+ "enumValues": [
938
+ {
939
+ "deprecationReason": null,
940
+ "description": null,
941
+ "isDeprecated": false,
942
+ "name": "FOUR_1G_COPPER"
943
+ },
944
+ {
945
+ "deprecationReason": null,
946
+ "description": null,
947
+ "isDeprecated": false,
948
+ "name": "TWO_10G_FIBER"
949
+ },
950
+ {
951
+ "deprecationReason": null,
952
+ "description": null,
953
+ "isDeprecated": false,
954
+ "name": "TWO_1G_FIBER"
955
+ },
956
+ {
957
+ "deprecationReason": null,
958
+ "description": null,
959
+ "isDeprecated": false,
960
+ "name": "FOUR_10G_FIBER"
961
+ }
962
+ ],
963
+ "fields": null,
964
+ "inputFields": null,
965
+ "interfaces": null,
966
+ "kind": "ENUM",
967
+ "name": "SocketAddOnType",
968
+ "possibleTypes": null
969
+ },
970
+ "indexType": "enum",
971
+ "kind": [
972
+ "NON_NULL",
973
+ "ENUM"
974
+ ],
975
+ "name": "SocketAddOnType",
976
+ "non_null": false
977
+ },
978
+ "varName": "type"
979
+ }
980
+ },
981
+ "inputFields": null,
982
+ "interfaces": {},
983
+ "kind": "OBJECT",
984
+ "name": "SocketAddOnCard",
985
+ "possibleTypes": null
986
+ },
987
+ "indexType": "object",
988
+ "kind": [
989
+ "NON_NULL",
990
+ "LIST",
991
+ "NON_NULL",
992
+ "OBJECT"
993
+ ],
994
+ "name": "SocketAddOnCard",
995
+ "non_null": false
996
+ },
997
+ "varName": "socketAddOnCard"
998
+ }
999
+ },
1000
+ "inputFields": null,
1001
+ "interfaces": {},
1002
+ "kind": "OBJECT",
1003
+ "name": "AddSocketAddOnCardPayload",
1004
+ "possibleTypes": null
1005
+ },
1006
+ "indexType": "object",
1007
+ "kind": [
1008
+ "OBJECT"
1009
+ ],
1010
+ "name": "AddSocketAddOnCardPayload",
1011
+ "non_null": false
1012
+ },
1013
+ "varName": "addSocketAddOnCardPayload"
1014
+ }
1015
+ },
1016
+ "inputFields": null,
1017
+ "interfaces": [],
1018
+ "kind": "OBJECT",
1019
+ "name": "SiteMutations",
1020
+ "possibleTypes": null
1021
+ },
1022
+ "indexType": "object",
1023
+ "kind": [
1024
+ "NON_NULL",
1025
+ "OBJECT"
1026
+ ],
1027
+ "name": "SiteMutations",
1028
+ "non_null": false
1029
+ },
1030
+ "variablesPayload": {
1031
+ "addSocketAddOnCardInput": {
1032
+ "siteRefInput": {
1033
+ "by": {
1034
+ "by": "enum(ObjectRefBy)"
1035
+ },
1036
+ "input": {
1037
+ "input": "String"
1038
+ }
1039
+ },
1040
+ "socketAddOnCardInput": {
1041
+ "expansionSlotNumber": {
1042
+ "expansionSlotNumber": "enum(SocketAddOnExpansionSlotNumber)"
1043
+ },
1044
+ "type": {
1045
+ "type": "enum(SocketAddOnType)"
1046
+ }
1047
+ }
1048
+ }
1049
+ }
1050
+ }