catocli 3.0.10__py3-none-any.whl → 3.0.13__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 (59) hide show
  1. catocli/Utils/clidriver.py +4 -4
  2. catocli/Utils/graphql_utils.py +15 -5
  3. catocli/Utils/help_formatter.py +62 -17
  4. catocli/__init__.py +1 -1
  5. catocli/parsers/custom/__init__.py +1 -1
  6. catocli/parsers/custom/customLib.py +3 -1
  7. catocli/parsers/mutation_groups_createGroup/README.md +39 -1
  8. catocli/parsers/mutation_groups_deleteGroup/README.md +39 -1
  9. catocli/parsers/mutation_groups_updateGroup/README.md +39 -1
  10. catocli/parsers/query_accountMetrics/README.md +29 -2
  11. catocli/parsers/query_accountSnapshot/README.md +16 -0
  12. catocli/parsers/query_appStats/README.md +11 -1
  13. catocli/parsers/query_appStatsTimeSeries/README.md +16 -2
  14. catocli/parsers/query_auditFeed/README.md +3 -1
  15. catocli/parsers/query_catalogs/README.md +178 -0
  16. catocli/parsers/query_container/README.md +49 -0
  17. catocli/parsers/query_devices/README.md +728 -0
  18. catocli/parsers/query_enterpriseDirectory/README.md +83 -0
  19. catocli/parsers/query_events/README.md +5 -1
  20. catocli/parsers/query_eventsTimeSeries/README.md +10 -2
  21. catocli/parsers/query_groups_groupList/README.md +39 -1
  22. catocli/parsers/query_hardware/README.md +153 -0
  23. catocli/parsers/query_hardwareManagement/README.md +56 -0
  24. catocli/parsers/query_popLocations/README.md +63 -0
  25. catocli/parsers/query_sandbox/README.md +69 -0
  26. catocli/parsers/query_socketPortMetrics/README.md +5 -1
  27. catocli/parsers/query_socketPortMetricsTimeSeries/README.md +10 -2
  28. catocli/parsers/query_xdr_stories/README.md +7 -2
  29. {catocli-3.0.10.dist-info → catocli-3.0.13.dist-info}/METADATA +1 -1
  30. {catocli-3.0.10.dist-info → catocli-3.0.13.dist-info}/RECORD +59 -59
  31. models/mutation.accountManagement.disableAccount.json +2 -2
  32. models/mutation.accountManagement.removeAccount.json +2 -2
  33. models/mutation.groups.createGroup.json +810 -0
  34. models/mutation.groups.deleteGroup.json +810 -0
  35. models/mutation.groups.updateGroup.json +810 -0
  36. models/query.accountMetrics.json +333 -1
  37. models/query.accountSnapshot.json +50 -1
  38. models/query.appStats.json +38 -0
  39. models/query.appStatsTimeSeries.json +78 -1
  40. models/query.auditFeed.json +105 -0
  41. models/query.catalogs.json +2708 -1
  42. models/query.container.json +793 -1
  43. models/query.devices.json +10338 -1
  44. models/query.enterpriseDirectory.json +1315 -1
  45. models/query.events.json +38 -0
  46. models/query.eventsFeed.json +1587 -0
  47. models/query.eventsTimeSeries.json +78 -1
  48. models/query.groups.groupList.json +810 -0
  49. models/query.hardware.json +2333 -1
  50. models/query.hardwareManagement.json +1086 -1
  51. models/query.popLocations.json +1172 -1
  52. models/query.sandbox.json +825 -1
  53. models/query.socketPortMetrics.json +38 -0
  54. models/query.socketPortMetricsTimeSeries.json +78 -1
  55. schema/catolib.py +107 -37
  56. {catocli-3.0.10.dist-info → catocli-3.0.13.dist-info}/WHEEL +0 -0
  57. {catocli-3.0.10.dist-info → catocli-3.0.13.dist-info}/entry_points.txt +0 -0
  58. {catocli-3.0.10.dist-info → catocli-3.0.13.dist-info}/licenses/LICENSE +0 -0
  59. {catocli-3.0.10.dist-info → catocli-3.0.13.dist-info}/top_level.txt +0 -0
@@ -44,6 +44,761 @@
44
44
  "non_null": false
45
45
  },
46
46
  "varName": "accountId"
47
+ },
48
+ "containerSearchInput": {
49
+ "defaultValue": null,
50
+ "description": null,
51
+ "id_str": "list___input",
52
+ "name": "input",
53
+ "path": "list.input",
54
+ "requestStr": "$containerSearchInput:ContainerSearchInput! ",
55
+ "required": true,
56
+ "responseStr": "input:$containerSearchInput ",
57
+ "type": {
58
+ "definition": {
59
+ "description": "Filtering input to container search",
60
+ "enumValues": null,
61
+ "fields": null,
62
+ "inputFields": {
63
+ "refs": {
64
+ "defaultValue": "[]",
65
+ "description": "Allows filtering container search by container ID or container name",
66
+ "id_str": "list___input___refs",
67
+ "name": "refs",
68
+ "path": "list.input.refs",
69
+ "requestStr": "$containerRefInput:[ContainerRefInput]! ",
70
+ "required": true,
71
+ "responseStr": "refs:$containerRefInput ",
72
+ "type": {
73
+ "definition": {
74
+ "description": "Add a container by ID or name",
75
+ "enumValues": null,
76
+ "fields": null,
77
+ "inputFields": {
78
+ "by": {
79
+ "defaultValue": "ID",
80
+ "description": "Defines the object identification method \u2013 by ID (default) or by name",
81
+ "id_str": "list___input___refs___by",
82
+ "name": "by",
83
+ "path": "list.input.refs.by",
84
+ "requestStr": "$by:ObjectRefBy! ",
85
+ "required": true,
86
+ "responseStr": "by:$by ",
87
+ "type": {
88
+ "definition": {
89
+ "description": null,
90
+ "enumValues": [
91
+ {
92
+ "deprecationReason": null,
93
+ "description": null,
94
+ "isDeprecated": false,
95
+ "name": "ID"
96
+ },
97
+ {
98
+ "deprecationReason": null,
99
+ "description": null,
100
+ "isDeprecated": false,
101
+ "name": "NAME"
102
+ }
103
+ ],
104
+ "fields": null,
105
+ "inputFields": null,
106
+ "interfaces": null,
107
+ "kind": "ENUM",
108
+ "name": "ObjectRefBy",
109
+ "possibleTypes": null
110
+ },
111
+ "indexType": "enum",
112
+ "kind": [
113
+ "NON_NULL",
114
+ "ENUM"
115
+ ],
116
+ "name": "ObjectRefBy",
117
+ "non_null": false
118
+ },
119
+ "varName": "by"
120
+ },
121
+ "input": {
122
+ "defaultValue": null,
123
+ "description": "The object identification (ID or name) value",
124
+ "id_str": "list___input___refs___input",
125
+ "name": "input",
126
+ "path": "list.input.refs.input",
127
+ "requestStr": "$input:String! ",
128
+ "required": true,
129
+ "responseStr": "input:$input ",
130
+ "type": {
131
+ "kind": [
132
+ "NON_NULL",
133
+ "SCALAR"
134
+ ],
135
+ "name": "String",
136
+ "non_null": false
137
+ },
138
+ "varName": "input"
139
+ }
140
+ },
141
+ "interfaces": null,
142
+ "kind": "INPUT_OBJECT",
143
+ "name": "ContainerRefInput",
144
+ "possibleTypes": null
145
+ },
146
+ "indexType": "input_object",
147
+ "kind": [
148
+ "NON_NULL",
149
+ "LIST",
150
+ "NON_NULL",
151
+ "INPUT_OBJECT"
152
+ ],
153
+ "name": "ContainerRefInput",
154
+ "non_null": false
155
+ },
156
+ "varName": "containerRefInput"
157
+ },
158
+ "types": {
159
+ "defaultValue": "[]",
160
+ "description": "Allows filtering container search by specific container types",
161
+ "id_str": "list___input___types",
162
+ "name": "types",
163
+ "path": "list.input.types",
164
+ "requestStr": "$types:[ContainerType]! ",
165
+ "required": true,
166
+ "responseStr": "types:$types ",
167
+ "type": {
168
+ "definition": {
169
+ "description": null,
170
+ "enumValues": [
171
+ {
172
+ "deprecationReason": null,
173
+ "description": null,
174
+ "isDeprecated": false,
175
+ "name": "IP_RANGE"
176
+ },
177
+ {
178
+ "deprecationReason": null,
179
+ "description": null,
180
+ "isDeprecated": false,
181
+ "name": "FQDN"
182
+ }
183
+ ],
184
+ "fields": null,
185
+ "inputFields": null,
186
+ "interfaces": null,
187
+ "kind": "ENUM",
188
+ "name": "ContainerType",
189
+ "possibleTypes": null
190
+ },
191
+ "indexType": "enum",
192
+ "kind": [
193
+ "NON_NULL",
194
+ "LIST",
195
+ "NON_NULL",
196
+ "ENUM"
197
+ ],
198
+ "name": "ContainerType",
199
+ "non_null": false
200
+ },
201
+ "varName": "types"
202
+ }
203
+ },
204
+ "interfaces": null,
205
+ "kind": "INPUT_OBJECT",
206
+ "name": "ContainerSearchInput",
207
+ "possibleTypes": null
208
+ },
209
+ "indexType": "input_object",
210
+ "kind": [
211
+ "NON_NULL",
212
+ "INPUT_OBJECT"
213
+ ],
214
+ "name": "ContainerSearchInput",
215
+ "non_null": false
216
+ },
217
+ "varName": "containerSearchInput"
218
+ },
219
+ "downloadFqdnContainerFileInput": {
220
+ "defaultValue": null,
221
+ "description": null,
222
+ "id_str": "downloadFile___input",
223
+ "name": "input",
224
+ "path": "downloadFile.input",
225
+ "requestStr": "$downloadFqdnContainerFileInput:DownloadFqdnContainerFileInput! ",
226
+ "required": true,
227
+ "responseStr": "input:$downloadFqdnContainerFileInput ",
228
+ "type": {
229
+ "definition": {
230
+ "description": "Input for searching FQDN typed container to download its content",
231
+ "enumValues": null,
232
+ "fields": null,
233
+ "inputFields": {
234
+ "by": {
235
+ "defaultValue": null,
236
+ "description": null,
237
+ "id_str": "downloadFile___input___by",
238
+ "name": "by",
239
+ "path": "downloadFile.input.by",
240
+ "requestStr": "$by:ObjectRefBy! ",
241
+ "required": true,
242
+ "responseStr": "by:$by ",
243
+ "type": {
244
+ "definition": {
245
+ "description": null,
246
+ "enumValues": [
247
+ {
248
+ "deprecationReason": null,
249
+ "description": null,
250
+ "isDeprecated": false,
251
+ "name": "ID"
252
+ },
253
+ {
254
+ "deprecationReason": null,
255
+ "description": null,
256
+ "isDeprecated": false,
257
+ "name": "NAME"
258
+ }
259
+ ],
260
+ "fields": null,
261
+ "inputFields": null,
262
+ "interfaces": null,
263
+ "kind": "ENUM",
264
+ "name": "ObjectRefBy",
265
+ "possibleTypes": null
266
+ },
267
+ "indexType": "enum",
268
+ "kind": [
269
+ "NON_NULL",
270
+ "ENUM"
271
+ ],
272
+ "name": "ObjectRefBy",
273
+ "non_null": false
274
+ },
275
+ "varName": "by"
276
+ },
277
+ "input": {
278
+ "defaultValue": null,
279
+ "description": null,
280
+ "id_str": "downloadFile___input___input",
281
+ "name": "input",
282
+ "path": "downloadFile.input.input",
283
+ "requestStr": "$input:String! ",
284
+ "required": true,
285
+ "responseStr": "input:$input ",
286
+ "type": {
287
+ "kind": [
288
+ "NON_NULL",
289
+ "SCALAR"
290
+ ],
291
+ "name": "String",
292
+ "non_null": false
293
+ },
294
+ "varName": "input"
295
+ }
296
+ },
297
+ "interfaces": null,
298
+ "kind": "INPUT_OBJECT",
299
+ "name": "DownloadFqdnContainerFileInput",
300
+ "possibleTypes": null
301
+ },
302
+ "indexType": "input_object",
303
+ "kind": [
304
+ "NON_NULL",
305
+ "INPUT_OBJECT"
306
+ ],
307
+ "name": "DownloadFqdnContainerFileInput",
308
+ "non_null": false
309
+ },
310
+ "varName": "downloadFqdnContainerFileInput"
311
+ },
312
+ "downloadIpAddressRangeContainerFileInput": {
313
+ "defaultValue": null,
314
+ "description": null,
315
+ "id_str": "downloadFile___input",
316
+ "name": "input",
317
+ "path": "downloadFile.input",
318
+ "requestStr": "$downloadIpAddressRangeContainerFileInput:DownloadIpAddressRangeContainerFileInput! ",
319
+ "required": true,
320
+ "responseStr": "input:$downloadIpAddressRangeContainerFileInput ",
321
+ "type": {
322
+ "definition": {
323
+ "description": "Input for searching IPAddressRange typed container to download its content",
324
+ "enumValues": null,
325
+ "fields": null,
326
+ "inputFields": {
327
+ "by": {
328
+ "defaultValue": null,
329
+ "description": null,
330
+ "id_str": "downloadFile___input___by",
331
+ "name": "by",
332
+ "path": "downloadFile.input.by",
333
+ "requestStr": "$by:ObjectRefBy! ",
334
+ "required": true,
335
+ "responseStr": "by:$by ",
336
+ "type": {
337
+ "definition": {
338
+ "description": null,
339
+ "enumValues": [
340
+ {
341
+ "deprecationReason": null,
342
+ "description": null,
343
+ "isDeprecated": false,
344
+ "name": "ID"
345
+ },
346
+ {
347
+ "deprecationReason": null,
348
+ "description": null,
349
+ "isDeprecated": false,
350
+ "name": "NAME"
351
+ }
352
+ ],
353
+ "fields": null,
354
+ "inputFields": null,
355
+ "interfaces": null,
356
+ "kind": "ENUM",
357
+ "name": "ObjectRefBy",
358
+ "possibleTypes": null
359
+ },
360
+ "indexType": "enum",
361
+ "kind": [
362
+ "NON_NULL",
363
+ "ENUM"
364
+ ],
365
+ "name": "ObjectRefBy",
366
+ "non_null": false
367
+ },
368
+ "varName": "by"
369
+ },
370
+ "input": {
371
+ "defaultValue": null,
372
+ "description": null,
373
+ "id_str": "downloadFile___input___input",
374
+ "name": "input",
375
+ "path": "downloadFile.input.input",
376
+ "requestStr": "$input:String! ",
377
+ "required": true,
378
+ "responseStr": "input:$input ",
379
+ "type": {
380
+ "kind": [
381
+ "NON_NULL",
382
+ "SCALAR"
383
+ ],
384
+ "name": "String",
385
+ "non_null": false
386
+ },
387
+ "varName": "input"
388
+ }
389
+ },
390
+ "interfaces": null,
391
+ "kind": "INPUT_OBJECT",
392
+ "name": "DownloadIpAddressRangeContainerFileInput",
393
+ "possibleTypes": null
394
+ },
395
+ "indexType": "input_object",
396
+ "kind": [
397
+ "NON_NULL",
398
+ "INPUT_OBJECT"
399
+ ],
400
+ "name": "DownloadIpAddressRangeContainerFileInput",
401
+ "non_null": false
402
+ },
403
+ "varName": "downloadIpAddressRangeContainerFileInput"
404
+ },
405
+ "fqdnContainerSearchFqdnInput": {
406
+ "defaultValue": null,
407
+ "description": null,
408
+ "id_str": "searchFqdn___input",
409
+ "name": "input",
410
+ "path": "searchFqdn.input",
411
+ "requestStr": "$fqdnContainerSearchFqdnInput:FqdnContainerSearchFqdnInput! ",
412
+ "required": true,
413
+ "responseStr": "input:$fqdnContainerSearchFqdnInput ",
414
+ "type": {
415
+ "definition": {
416
+ "description": "Input for searching FQDN typed containers that contain a specific FQDN",
417
+ "enumValues": null,
418
+ "fields": null,
419
+ "inputFields": {
420
+ "fqdn": {
421
+ "defaultValue": null,
422
+ "description": null,
423
+ "id_str": "searchFqdn___input___fqdn",
424
+ "name": "fqdn",
425
+ "path": "searchFqdn.input.fqdn",
426
+ "requestStr": "$fqdn:Fqdn! ",
427
+ "required": true,
428
+ "responseStr": "fqdn:$fqdn ",
429
+ "type": {
430
+ "kind": [
431
+ "NON_NULL",
432
+ "SCALAR"
433
+ ],
434
+ "name": "Fqdn",
435
+ "non_null": false
436
+ },
437
+ "varName": "fqdn"
438
+ }
439
+ },
440
+ "interfaces": null,
441
+ "kind": "INPUT_OBJECT",
442
+ "name": "FqdnContainerSearchFqdnInput",
443
+ "possibleTypes": null
444
+ },
445
+ "indexType": "input_object",
446
+ "kind": [
447
+ "NON_NULL",
448
+ "INPUT_OBJECT"
449
+ ],
450
+ "name": "FqdnContainerSearchFqdnInput",
451
+ "non_null": false
452
+ },
453
+ "varName": "fqdnContainerSearchFqdnInput"
454
+ },
455
+ "fqdnContainerSearchInput": {
456
+ "defaultValue": null,
457
+ "description": null,
458
+ "id_str": "search___input",
459
+ "name": "input",
460
+ "path": "search.input",
461
+ "requestStr": "$fqdnContainerSearchInput:FqdnContainerSearchInput! ",
462
+ "required": true,
463
+ "responseStr": "input:$fqdnContainerSearchInput ",
464
+ "type": {
465
+ "definition": {
466
+ "description": "Input for searching FQDN typed container",
467
+ "enumValues": null,
468
+ "fields": null,
469
+ "inputFields": {
470
+ "ref": {
471
+ "defaultValue": null,
472
+ "description": "Reference to existing container by container ID or container name",
473
+ "id_str": "search___input___ref",
474
+ "name": "ref",
475
+ "path": "search.input.ref",
476
+ "requestStr": "$containerRefInput:ContainerRefInput! ",
477
+ "required": true,
478
+ "responseStr": "ref:$containerRefInput ",
479
+ "type": {
480
+ "definition": {
481
+ "description": "Add a container by ID or name",
482
+ "enumValues": null,
483
+ "fields": null,
484
+ "inputFields": {
485
+ "by": {
486
+ "defaultValue": "ID",
487
+ "description": "Defines the object identification method \u2013 by ID (default) or by name",
488
+ "id_str": "search___input___ref___by",
489
+ "name": "by",
490
+ "path": "search.input.ref.by",
491
+ "requestStr": "$by:ObjectRefBy! ",
492
+ "required": true,
493
+ "responseStr": "by:$by ",
494
+ "type": {
495
+ "definition": {
496
+ "description": null,
497
+ "enumValues": [
498
+ {
499
+ "deprecationReason": null,
500
+ "description": null,
501
+ "isDeprecated": false,
502
+ "name": "ID"
503
+ },
504
+ {
505
+ "deprecationReason": null,
506
+ "description": null,
507
+ "isDeprecated": false,
508
+ "name": "NAME"
509
+ }
510
+ ],
511
+ "fields": null,
512
+ "inputFields": null,
513
+ "interfaces": null,
514
+ "kind": "ENUM",
515
+ "name": "ObjectRefBy",
516
+ "possibleTypes": null
517
+ },
518
+ "indexType": "enum",
519
+ "kind": [
520
+ "NON_NULL",
521
+ "ENUM"
522
+ ],
523
+ "name": "ObjectRefBy",
524
+ "non_null": false
525
+ },
526
+ "varName": "by"
527
+ },
528
+ "input": {
529
+ "defaultValue": null,
530
+ "description": "The object identification (ID or name) value",
531
+ "id_str": "search___input___ref___input",
532
+ "name": "input",
533
+ "path": "search.input.ref.input",
534
+ "requestStr": "$input:String! ",
535
+ "required": true,
536
+ "responseStr": "input:$input ",
537
+ "type": {
538
+ "kind": [
539
+ "NON_NULL",
540
+ "SCALAR"
541
+ ],
542
+ "name": "String",
543
+ "non_null": false
544
+ },
545
+ "varName": "input"
546
+ }
547
+ },
548
+ "interfaces": null,
549
+ "kind": "INPUT_OBJECT",
550
+ "name": "ContainerRefInput",
551
+ "possibleTypes": null
552
+ },
553
+ "indexType": "input_object",
554
+ "kind": [
555
+ "NON_NULL",
556
+ "INPUT_OBJECT"
557
+ ],
558
+ "name": "ContainerRefInput",
559
+ "non_null": false
560
+ },
561
+ "varName": "containerRefInput"
562
+ }
563
+ },
564
+ "interfaces": null,
565
+ "kind": "INPUT_OBJECT",
566
+ "name": "FqdnContainerSearchInput",
567
+ "possibleTypes": null
568
+ },
569
+ "indexType": "input_object",
570
+ "kind": [
571
+ "NON_NULL",
572
+ "INPUT_OBJECT"
573
+ ],
574
+ "name": "FqdnContainerSearchInput",
575
+ "non_null": false
576
+ },
577
+ "varName": "fqdnContainerSearchInput"
578
+ },
579
+ "ipAddressRangeContainerSearchInput": {
580
+ "defaultValue": null,
581
+ "description": null,
582
+ "id_str": "search___input",
583
+ "name": "input",
584
+ "path": "search.input",
585
+ "requestStr": "$ipAddressRangeContainerSearchInput:IpAddressRangeContainerSearchInput! ",
586
+ "required": true,
587
+ "responseStr": "input:$ipAddressRangeContainerSearchInput ",
588
+ "type": {
589
+ "definition": {
590
+ "description": "Filtering input to IPAddressRange container search",
591
+ "enumValues": null,
592
+ "fields": null,
593
+ "inputFields": {
594
+ "ref": {
595
+ "defaultValue": null,
596
+ "description": "Reference to existing container by container ID or container name",
597
+ "id_str": "search___input___ref",
598
+ "name": "ref",
599
+ "path": "search.input.ref",
600
+ "requestStr": "$containerRefInput:ContainerRefInput! ",
601
+ "required": true,
602
+ "responseStr": "ref:$containerRefInput ",
603
+ "type": {
604
+ "definition": {
605
+ "description": "Add a container by ID or name",
606
+ "enumValues": null,
607
+ "fields": null,
608
+ "inputFields": {
609
+ "by": {
610
+ "defaultValue": "ID",
611
+ "description": "Defines the object identification method \u2013 by ID (default) or by name",
612
+ "id_str": "search___input___ref___by",
613
+ "name": "by",
614
+ "path": "search.input.ref.by",
615
+ "requestStr": "$by:ObjectRefBy! ",
616
+ "required": true,
617
+ "responseStr": "by:$by ",
618
+ "type": {
619
+ "definition": {
620
+ "description": null,
621
+ "enumValues": [
622
+ {
623
+ "deprecationReason": null,
624
+ "description": null,
625
+ "isDeprecated": false,
626
+ "name": "ID"
627
+ },
628
+ {
629
+ "deprecationReason": null,
630
+ "description": null,
631
+ "isDeprecated": false,
632
+ "name": "NAME"
633
+ }
634
+ ],
635
+ "fields": null,
636
+ "inputFields": null,
637
+ "interfaces": null,
638
+ "kind": "ENUM",
639
+ "name": "ObjectRefBy",
640
+ "possibleTypes": null
641
+ },
642
+ "indexType": "enum",
643
+ "kind": [
644
+ "NON_NULL",
645
+ "ENUM"
646
+ ],
647
+ "name": "ObjectRefBy",
648
+ "non_null": false
649
+ },
650
+ "varName": "by"
651
+ },
652
+ "input": {
653
+ "defaultValue": null,
654
+ "description": "The object identification (ID or name) value",
655
+ "id_str": "search___input___ref___input",
656
+ "name": "input",
657
+ "path": "search.input.ref.input",
658
+ "requestStr": "$input:String! ",
659
+ "required": true,
660
+ "responseStr": "input:$input ",
661
+ "type": {
662
+ "kind": [
663
+ "NON_NULL",
664
+ "SCALAR"
665
+ ],
666
+ "name": "String",
667
+ "non_null": false
668
+ },
669
+ "varName": "input"
670
+ }
671
+ },
672
+ "interfaces": null,
673
+ "kind": "INPUT_OBJECT",
674
+ "name": "ContainerRefInput",
675
+ "possibleTypes": null
676
+ },
677
+ "indexType": "input_object",
678
+ "kind": [
679
+ "NON_NULL",
680
+ "INPUT_OBJECT"
681
+ ],
682
+ "name": "ContainerRefInput",
683
+ "non_null": false
684
+ },
685
+ "varName": "containerRefInput"
686
+ }
687
+ },
688
+ "interfaces": null,
689
+ "kind": "INPUT_OBJECT",
690
+ "name": "IpAddressRangeContainerSearchInput",
691
+ "possibleTypes": null
692
+ },
693
+ "indexType": "input_object",
694
+ "kind": [
695
+ "NON_NULL",
696
+ "INPUT_OBJECT"
697
+ ],
698
+ "name": "IpAddressRangeContainerSearchInput",
699
+ "non_null": false
700
+ },
701
+ "varName": "ipAddressRangeContainerSearchInput"
702
+ },
703
+ "ipAddressRangeContainerSearchIpAddressRangeInput": {
704
+ "defaultValue": null,
705
+ "description": null,
706
+ "id_str": "searchIpAddressRange___input",
707
+ "name": "input",
708
+ "path": "searchIpAddressRange.input",
709
+ "requestStr": "$ipAddressRangeContainerSearchIpAddressRangeInput:IpAddressRangeContainerSearchIpAddressRangeInput! ",
710
+ "required": true,
711
+ "responseStr": "input:$ipAddressRangeContainerSearchIpAddressRangeInput ",
712
+ "type": {
713
+ "definition": {
714
+ "description": "Input for searching IPAddressRange typed containers that contain a specific IPAddressRange",
715
+ "enumValues": null,
716
+ "fields": null,
717
+ "inputFields": {
718
+ "ipAddressRange": {
719
+ "defaultValue": null,
720
+ "description": null,
721
+ "id_str": "searchIpAddressRange___input___ipAddressRange",
722
+ "name": "ipAddressRange",
723
+ "path": "searchIpAddressRange.input.ipAddressRange",
724
+ "requestStr": "$ipAddressRangeInput:IpAddressRangeInput! ",
725
+ "required": true,
726
+ "responseStr": "ipAddressRange:$ipAddressRangeInput ",
727
+ "type": {
728
+ "definition": {
729
+ "description": "Inclusive range of IPs",
730
+ "enumValues": null,
731
+ "fields": null,
732
+ "inputFields": {
733
+ "from": {
734
+ "defaultValue": null,
735
+ "description": null,
736
+ "id_str": "searchIpAddressRange___input___ipAddressRange___from",
737
+ "name": "from",
738
+ "path": "searchIpAddressRange.input.ipAddressRange.from",
739
+ "requestStr": "$from:IPAddress! ",
740
+ "required": true,
741
+ "responseStr": "from:$from ",
742
+ "type": {
743
+ "kind": [
744
+ "NON_NULL",
745
+ "SCALAR"
746
+ ],
747
+ "name": "IPAddress",
748
+ "non_null": false
749
+ },
750
+ "varName": "from"
751
+ },
752
+ "to": {
753
+ "defaultValue": null,
754
+ "description": null,
755
+ "id_str": "searchIpAddressRange___input___ipAddressRange___to",
756
+ "name": "to",
757
+ "path": "searchIpAddressRange.input.ipAddressRange.to",
758
+ "requestStr": "$to:IPAddress! ",
759
+ "required": true,
760
+ "responseStr": "to:$to ",
761
+ "type": {
762
+ "kind": [
763
+ "NON_NULL",
764
+ "SCALAR"
765
+ ],
766
+ "name": "IPAddress",
767
+ "non_null": false
768
+ },
769
+ "varName": "to"
770
+ }
771
+ },
772
+ "interfaces": null,
773
+ "kind": "INPUT_OBJECT",
774
+ "name": "IpAddressRangeInput",
775
+ "possibleTypes": null
776
+ },
777
+ "indexType": "input_object",
778
+ "kind": [
779
+ "NON_NULL",
780
+ "INPUT_OBJECT"
781
+ ],
782
+ "name": "IpAddressRangeInput",
783
+ "non_null": false
784
+ },
785
+ "varName": "ipAddressRangeInput"
786
+ }
787
+ },
788
+ "interfaces": null,
789
+ "kind": "INPUT_OBJECT",
790
+ "name": "IpAddressRangeContainerSearchIpAddressRangeInput",
791
+ "possibleTypes": null
792
+ },
793
+ "indexType": "input_object",
794
+ "kind": [
795
+ "NON_NULL",
796
+ "INPUT_OBJECT"
797
+ ],
798
+ "name": "IpAddressRangeContainerSearchIpAddressRangeInput",
799
+ "non_null": false
800
+ },
801
+ "varName": "ipAddressRangeContainerSearchIpAddressRangeInput"
47
802
  }
48
803
  },
49
804
  "path": "query.container",
@@ -2883,5 +3638,42 @@
2883
3638
  "name": "ContainerQueries",
2884
3639
  "non_null": false
2885
3640
  },
2886
- "variablesPayload": {}
3641
+ "variablesPayload": {
3642
+ "containerSearchInput": {
3643
+ "containerRefInput": {
3644
+ "by": "ID",
3645
+ "input": "string"
3646
+ },
3647
+ "types": "IP_RANGE"
3648
+ },
3649
+ "downloadFqdnContainerFileInput": {
3650
+ "by": "ID",
3651
+ "input": "string"
3652
+ },
3653
+ "downloadIpAddressRangeContainerFileInput": {
3654
+ "by": "ID",
3655
+ "input": "string"
3656
+ },
3657
+ "fqdnContainerSearchFqdnInput": {
3658
+ "fqdn": "example_value"
3659
+ },
3660
+ "fqdnContainerSearchInput": {
3661
+ "containerRefInput": {
3662
+ "by": "ID",
3663
+ "input": "string"
3664
+ }
3665
+ },
3666
+ "ipAddressRangeContainerSearchInput": {
3667
+ "containerRefInput": {
3668
+ "by": "ID",
3669
+ "input": "string"
3670
+ }
3671
+ },
3672
+ "ipAddressRangeContainerSearchIpAddressRangeInput": {
3673
+ "ipAddressRangeInput": {
3674
+ "from": "example_value",
3675
+ "to": "example_value"
3676
+ }
3677
+ }
3678
+ }
2887
3679
  }