catocli 2.1.3__py3-none-any.whl → 2.1.4__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 (98) hide show
  1. catocli/Utils/clidriver.py +16 -7
  2. catocli/Utils/cliutils.py +1 -14
  3. catocli/Utils/csv_formatter.py +652 -0
  4. catocli/__init__.py +1 -1
  5. catocli/parsers/custom/export_rules/__init__.py +0 -4
  6. catocli/parsers/custom/export_sites/__init__.py +4 -3
  7. catocli/parsers/custom/export_sites/export_sites.py +195 -52
  8. catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +473 -393
  9. catocli/parsers/customParserApiClient.py +444 -38
  10. catocli/parsers/custom_private/__init__.py +18 -0
  11. catocli/parsers/mutation_accountManagement/__init__.py +21 -0
  12. catocli/parsers/mutation_accountManagement_disableAccount/README.md +15 -0
  13. catocli/parsers/mutation_admin/__init__.py +12 -0
  14. catocli/parsers/mutation_container/__init__.py +18 -0
  15. catocli/parsers/mutation_enterpriseDirectory/__init__.py +8 -0
  16. catocli/parsers/mutation_groups/__init__.py +6 -0
  17. catocli/parsers/mutation_hardware/__init__.py +2 -0
  18. catocli/parsers/mutation_policy/__init__.py +378 -0
  19. catocli/parsers/mutation_policy_antiMalwareFileHash_addRule/README.md +20 -0
  20. catocli/parsers/mutation_policy_antiMalwareFileHash_addSection/README.md +20 -0
  21. catocli/parsers/mutation_policy_antiMalwareFileHash_createPolicyRevision/README.md +20 -0
  22. catocli/parsers/mutation_policy_antiMalwareFileHash_discardPolicyRevision/README.md +20 -0
  23. catocli/parsers/mutation_policy_antiMalwareFileHash_moveRule/README.md +20 -0
  24. catocli/parsers/mutation_policy_antiMalwareFileHash_moveSection/README.md +20 -0
  25. catocli/parsers/mutation_policy_antiMalwareFileHash_publishPolicyRevision/README.md +20 -0
  26. catocli/parsers/mutation_policy_antiMalwareFileHash_removeRule/README.md +20 -0
  27. catocli/parsers/mutation_policy_antiMalwareFileHash_removeSection/README.md +20 -0
  28. catocli/parsers/mutation_policy_antiMalwareFileHash_updatePolicy/README.md +20 -0
  29. catocli/parsers/mutation_policy_antiMalwareFileHash_updateRule/README.md +20 -0
  30. catocli/parsers/mutation_policy_antiMalwareFileHash_updateSection/README.md +20 -0
  31. catocli/parsers/mutation_sandbox/__init__.py +4 -0
  32. catocli/parsers/mutation_site/__init__.py +72 -0
  33. catocli/parsers/mutation_sites/__init__.py +72 -0
  34. catocli/parsers/mutation_xdr/__init__.py +6 -0
  35. catocli/parsers/query_accountBySubdomain/__init__.py +2 -0
  36. catocli/parsers/query_accountManagement/__init__.py +2 -0
  37. catocli/parsers/query_accountMetrics/__init__.py +6 -0
  38. catocli/parsers/query_accountRoles/__init__.py +2 -0
  39. catocli/parsers/query_accountSnapshot/__init__.py +2 -0
  40. catocli/parsers/query_admin/__init__.py +2 -0
  41. catocli/parsers/query_admins/__init__.py +2 -0
  42. catocli/parsers/query_appStats/__init__.py +6 -0
  43. catocli/parsers/query_appStatsTimeSeries/README.md +3 -0
  44. catocli/parsers/query_appStatsTimeSeries/__init__.py +6 -0
  45. catocli/parsers/query_auditFeed/__init__.py +2 -0
  46. catocli/parsers/query_catalogs/__init__.py +2 -0
  47. catocli/parsers/query_container/__init__.py +2 -0
  48. catocli/parsers/query_devices/README.md +1 -1
  49. catocli/parsers/query_devices/__init__.py +2 -0
  50. catocli/parsers/query_enterpriseDirectory/__init__.py +2 -0
  51. catocli/parsers/query_entityLookup/__init__.py +2 -0
  52. catocli/parsers/query_events/__init__.py +2 -0
  53. catocli/parsers/query_eventsFeed/__init__.py +2 -0
  54. catocli/parsers/query_eventsTimeSeries/__init__.py +2 -0
  55. catocli/parsers/query_groups/__init__.py +6 -0
  56. catocli/parsers/query_hardware/README.md +1 -1
  57. catocli/parsers/query_hardware/__init__.py +2 -0
  58. catocli/parsers/query_hardwareManagement/__init__.py +2 -0
  59. catocli/parsers/query_licensing/__init__.py +2 -0
  60. catocli/parsers/query_policy/__init__.py +37 -0
  61. catocli/parsers/query_policy_antiMalwareFileHash_policy/README.md +19 -0
  62. catocli/parsers/query_popLocations/__init__.py +2 -0
  63. catocli/parsers/query_sandbox/__init__.py +2 -0
  64. catocli/parsers/query_servicePrincipalAdmin/__init__.py +2 -0
  65. catocli/parsers/query_site/__init__.py +33 -0
  66. catocli/parsers/query_siteLocation/__init__.py +2 -0
  67. catocli/parsers/query_site_siteGeneralDetails/README.md +19 -0
  68. catocli/parsers/query_socketPortMetrics/__init__.py +2 -0
  69. catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +6 -0
  70. catocli/parsers/query_subDomains/__init__.py +2 -0
  71. catocli/parsers/query_xdr/__init__.py +4 -0
  72. catocli/parsers/raw/__init__.py +3 -1
  73. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/METADATA +1 -1
  74. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/RECORD +98 -67
  75. models/mutation.accountManagement.disableAccount.json +545 -0
  76. models/mutation.policy.antiMalwareFileHash.addRule.json +2068 -0
  77. models/mutation.policy.antiMalwareFileHash.addSection.json +1350 -0
  78. models/mutation.policy.antiMalwareFileHash.createPolicyRevision.json +1822 -0
  79. models/mutation.policy.antiMalwareFileHash.discardPolicyRevision.json +1758 -0
  80. models/mutation.policy.antiMalwareFileHash.moveRule.json +1552 -0
  81. models/mutation.policy.antiMalwareFileHash.moveSection.json +1251 -0
  82. models/mutation.policy.antiMalwareFileHash.publishPolicyRevision.json +1813 -0
  83. models/mutation.policy.antiMalwareFileHash.removeRule.json +1204 -0
  84. models/mutation.policy.antiMalwareFileHash.removeSection.json +954 -0
  85. models/mutation.policy.antiMalwareFileHash.updatePolicy.json +1834 -0
  86. models/mutation.policy.antiMalwareFileHash.updateRule.json +1757 -0
  87. models/mutation.policy.antiMalwareFileHash.updateSection.json +1105 -0
  88. models/mutation.site.updateSiteGeneralDetails.json +3 -3
  89. models/mutation.sites.updateSiteGeneralDetails.json +3 -3
  90. models/query.devices.json +249 -2
  91. models/query.hardware.json +224 -0
  92. models/query.policy.antiMalwareFileHash.policy.json +1583 -0
  93. models/query.site.siteGeneralDetails.json +899 -0
  94. schema/catolib.py +51 -4
  95. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/WHEEL +0 -0
  96. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/entry_points.txt +0 -0
  97. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/licenses/LICENSE +0 -0
  98. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,899 @@
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
+ "siteGeneralDetails": {
25
+ "args": {
26
+ "siteGeneralDetails___site": {
27
+ "defaultValue": null,
28
+ "description": null,
29
+ "id_str": "siteGeneralDetails___site",
30
+ "name": "site",
31
+ "path": "siteGeneralDetails.site",
32
+ "requestStr": "$siteRefInput:SiteRefInput! ",
33
+ "required": true,
34
+ "responseStr": "site:$siteRefInput ",
35
+ "type": {
36
+ "definition": {
37
+ "description": null,
38
+ "enumValues": null,
39
+ "fields": null,
40
+ "inputFields": {
41
+ "by": {
42
+ "defaultValue": "ID",
43
+ "description": null,
44
+ "id_str": "siteGeneralDetails___site___by",
45
+ "name": "by",
46
+ "path": "siteGeneralDetails.site.by",
47
+ "requestStr": "$by:ObjectRefBy! ",
48
+ "required": true,
49
+ "responseStr": "by:$by ",
50
+ "type": {
51
+ "definition": {
52
+ "description": null,
53
+ "enumValues": [
54
+ {
55
+ "deprecationReason": null,
56
+ "description": null,
57
+ "isDeprecated": false,
58
+ "name": "ID"
59
+ },
60
+ {
61
+ "deprecationReason": null,
62
+ "description": null,
63
+ "isDeprecated": false,
64
+ "name": "NAME"
65
+ }
66
+ ],
67
+ "fields": null,
68
+ "inputFields": null,
69
+ "interfaces": null,
70
+ "kind": "ENUM",
71
+ "name": "ObjectRefBy",
72
+ "possibleTypes": null
73
+ },
74
+ "indexType": "enum",
75
+ "kind": [
76
+ "NON_NULL",
77
+ "ENUM"
78
+ ],
79
+ "name": "ObjectRefBy",
80
+ "non_null": false
81
+ },
82
+ "varName": "by"
83
+ },
84
+ "input": {
85
+ "defaultValue": null,
86
+ "description": null,
87
+ "id_str": "siteGeneralDetails___site___input",
88
+ "name": "input",
89
+ "path": "siteGeneralDetails.site.input",
90
+ "requestStr": "$input:String! ",
91
+ "required": true,
92
+ "responseStr": "input:$input ",
93
+ "type": {
94
+ "kind": [
95
+ "NON_NULL",
96
+ "SCALAR"
97
+ ],
98
+ "name": "String",
99
+ "non_null": false
100
+ },
101
+ "varName": "input"
102
+ }
103
+ },
104
+ "interfaces": null,
105
+ "kind": "INPUT_OBJECT",
106
+ "name": "SiteRefInput",
107
+ "possibleTypes": null
108
+ },
109
+ "indexType": "input_object",
110
+ "kind": [
111
+ "NON_NULL",
112
+ "INPUT_OBJECT"
113
+ ],
114
+ "name": "SiteRefInput",
115
+ "non_null": false
116
+ },
117
+ "varName": "siteRefInput"
118
+ }
119
+ },
120
+ "deprecationReason": null,
121
+ "description": null,
122
+ "isDeprecated": false,
123
+ "name": "siteGeneralDetails",
124
+ "type": {
125
+ "kind": "OBJECT",
126
+ "name": "SiteGeneralDetailsPayload",
127
+ "ofType": null
128
+ }
129
+ }
130
+ },
131
+ "deprecationReason": null,
132
+ "description": null,
133
+ "fieldTypes": {
134
+ "ObjectRefBy": true,
135
+ "PopLocationRef": true,
136
+ "SiteGeneralDetailsPayload": true,
137
+ "SiteLocation": true,
138
+ "SitePreferredPopLocation": true,
139
+ "SiteRef": true,
140
+ "SiteType": true
141
+ },
142
+ "isDeprecated": false,
143
+ "name": "site",
144
+ "operationArgs": {
145
+ "accountId": {
146
+ "defaultValue": null,
147
+ "description": null,
148
+ "id_str": "accountId",
149
+ "name": "accountId",
150
+ "path": "accountId",
151
+ "requestStr": "$accountId:ID! ",
152
+ "required": true,
153
+ "responseStr": "accountId:$accountId ",
154
+ "type": {
155
+ "kind": [
156
+ "NON_NULL",
157
+ "SCALAR"
158
+ ],
159
+ "name": "ID",
160
+ "non_null": false
161
+ },
162
+ "varName": "accountId"
163
+ },
164
+ "siteRefInput": {
165
+ "defaultValue": null,
166
+ "description": null,
167
+ "id_str": "siteGeneralDetails___site",
168
+ "name": "site",
169
+ "path": "siteGeneralDetails.site",
170
+ "requestStr": "$siteRefInput:SiteRefInput! ",
171
+ "required": true,
172
+ "responseStr": "site:$siteRefInput ",
173
+ "type": {
174
+ "definition": {
175
+ "description": null,
176
+ "enumValues": null,
177
+ "fields": null,
178
+ "inputFields": {
179
+ "by": {
180
+ "defaultValue": "ID",
181
+ "description": null,
182
+ "id_str": "siteGeneralDetails___site___by",
183
+ "name": "by",
184
+ "path": "siteGeneralDetails.site.by",
185
+ "requestStr": "$by:ObjectRefBy! ",
186
+ "required": true,
187
+ "responseStr": "by:$by ",
188
+ "type": {
189
+ "definition": {
190
+ "description": null,
191
+ "enumValues": [
192
+ {
193
+ "deprecationReason": null,
194
+ "description": null,
195
+ "isDeprecated": false,
196
+ "name": "ID"
197
+ },
198
+ {
199
+ "deprecationReason": null,
200
+ "description": null,
201
+ "isDeprecated": false,
202
+ "name": "NAME"
203
+ }
204
+ ],
205
+ "fields": null,
206
+ "inputFields": null,
207
+ "interfaces": null,
208
+ "kind": "ENUM",
209
+ "name": "ObjectRefBy",
210
+ "possibleTypes": null
211
+ },
212
+ "indexType": "enum",
213
+ "kind": [
214
+ "NON_NULL",
215
+ "ENUM"
216
+ ],
217
+ "name": "ObjectRefBy",
218
+ "non_null": false
219
+ },
220
+ "varName": "by"
221
+ },
222
+ "input": {
223
+ "defaultValue": null,
224
+ "description": null,
225
+ "id_str": "siteGeneralDetails___site___input",
226
+ "name": "input",
227
+ "path": "siteGeneralDetails.site.input",
228
+ "requestStr": "$input:String! ",
229
+ "required": true,
230
+ "responseStr": "input:$input ",
231
+ "type": {
232
+ "kind": [
233
+ "NON_NULL",
234
+ "SCALAR"
235
+ ],
236
+ "name": "String",
237
+ "non_null": false
238
+ },
239
+ "varName": "input"
240
+ }
241
+ },
242
+ "interfaces": null,
243
+ "kind": "INPUT_OBJECT",
244
+ "name": "SiteRefInput",
245
+ "possibleTypes": null
246
+ },
247
+ "indexType": "input_object",
248
+ "kind": [
249
+ "NON_NULL",
250
+ "INPUT_OBJECT"
251
+ ],
252
+ "name": "SiteRefInput",
253
+ "non_null": false
254
+ },
255
+ "varName": "siteRefInput"
256
+ }
257
+ },
258
+ "path": "query.site.siteGeneralDetails",
259
+ "type": {
260
+ "definition": {
261
+ "description": null,
262
+ "enumValues": null,
263
+ "fields": {
264
+ "siteGeneralDetails": {
265
+ "args": {
266
+ "siteGeneralDetails___site": {
267
+ "defaultValue": null,
268
+ "description": null,
269
+ "id_str": "siteGeneralDetails___site",
270
+ "name": "site",
271
+ "path": "siteGeneralDetails.site",
272
+ "requestStr": "$siteRefInput:SiteRefInput! ",
273
+ "required": true,
274
+ "responseStr": "site:$siteRefInput ",
275
+ "type": {
276
+ "definition": {
277
+ "description": null,
278
+ "enumValues": null,
279
+ "fields": null,
280
+ "inputFields": {
281
+ "by": {
282
+ "defaultValue": "ID",
283
+ "description": null,
284
+ "id_str": "siteGeneralDetails___site___by",
285
+ "name": "by",
286
+ "path": "siteGeneralDetails.site.by",
287
+ "requestStr": "$by:ObjectRefBy! ",
288
+ "required": true,
289
+ "responseStr": "by:$by ",
290
+ "type": {
291
+ "definition": {
292
+ "description": null,
293
+ "enumValues": [
294
+ {
295
+ "deprecationReason": null,
296
+ "description": null,
297
+ "isDeprecated": false,
298
+ "name": "ID"
299
+ },
300
+ {
301
+ "deprecationReason": null,
302
+ "description": null,
303
+ "isDeprecated": false,
304
+ "name": "NAME"
305
+ }
306
+ ],
307
+ "fields": null,
308
+ "inputFields": null,
309
+ "interfaces": null,
310
+ "kind": "ENUM",
311
+ "name": "ObjectRefBy",
312
+ "possibleTypes": null
313
+ },
314
+ "indexType": "enum",
315
+ "kind": [
316
+ "NON_NULL",
317
+ "ENUM"
318
+ ],
319
+ "name": "ObjectRefBy",
320
+ "non_null": false
321
+ },
322
+ "varName": "by"
323
+ },
324
+ "input": {
325
+ "defaultValue": null,
326
+ "description": null,
327
+ "id_str": "siteGeneralDetails___site___input",
328
+ "name": "input",
329
+ "path": "siteGeneralDetails.site.input",
330
+ "requestStr": "$input:String! ",
331
+ "required": true,
332
+ "responseStr": "input:$input ",
333
+ "type": {
334
+ "kind": [
335
+ "NON_NULL",
336
+ "SCALAR"
337
+ ],
338
+ "name": "String",
339
+ "non_null": false
340
+ },
341
+ "varName": "input"
342
+ }
343
+ },
344
+ "interfaces": null,
345
+ "kind": "INPUT_OBJECT",
346
+ "name": "SiteRefInput",
347
+ "possibleTypes": null
348
+ },
349
+ "indexType": "input_object",
350
+ "kind": [
351
+ "NON_NULL",
352
+ "INPUT_OBJECT"
353
+ ],
354
+ "name": "SiteRefInput",
355
+ "non_null": false
356
+ },
357
+ "varName": "siteRefInput"
358
+ }
359
+ },
360
+ "deprecationReason": null,
361
+ "description": null,
362
+ "id_str": "siteGeneralDetails",
363
+ "isDeprecated": false,
364
+ "name": "siteGeneralDetails",
365
+ "path": "siteGeneralDetails",
366
+ "requestStr": "$siteGeneralDetailsPayload:SiteGeneralDetailsPayload ",
367
+ "required": false,
368
+ "responseStr": "siteGeneralDetails:$siteGeneralDetailsPayload ",
369
+ "type": {
370
+ "definition": {
371
+ "description": null,
372
+ "enumValues": null,
373
+ "fields": {
374
+ "description": {
375
+ "args": {},
376
+ "deprecationReason": null,
377
+ "description": null,
378
+ "id_str": "siteGeneralDetails___description",
379
+ "isDeprecated": false,
380
+ "name": "description",
381
+ "path": "siteGeneralDetails.description",
382
+ "requestStr": "$description:String ",
383
+ "required": false,
384
+ "responseStr": "description:$description ",
385
+ "type": {
386
+ "kind": [
387
+ "SCALAR"
388
+ ],
389
+ "name": "String",
390
+ "non_null": false
391
+ },
392
+ "varName": "description"
393
+ },
394
+ "preferredPopLocation": {
395
+ "args": {},
396
+ "deprecationReason": null,
397
+ "description": "Only relevant for socket sites",
398
+ "id_str": "siteGeneralDetails___preferredPopLocation",
399
+ "isDeprecated": false,
400
+ "name": "preferredPopLocation",
401
+ "path": "siteGeneralDetails.preferredPopLocation",
402
+ "requestStr": "$sitePreferredPopLocation:SitePreferredPopLocation ",
403
+ "required": false,
404
+ "responseStr": "preferredPopLocation:$sitePreferredPopLocation ",
405
+ "type": {
406
+ "definition": {
407
+ "description": null,
408
+ "enumValues": null,
409
+ "fields": {
410
+ "preferredOnly": {
411
+ "args": {},
412
+ "deprecationReason": null,
413
+ "description": "Forces the socket to connect exclusively to the configured PoP locations",
414
+ "id_str": "siteGeneralDetails___preferredPopLocation___preferredOnly",
415
+ "isDeprecated": false,
416
+ "name": "preferredOnly",
417
+ "path": "siteGeneralDetails.preferredPopLocation.preferredOnly",
418
+ "requestStr": "$preferredOnly:Boolean! ",
419
+ "required": true,
420
+ "responseStr": "preferredOnly:$preferredOnly ",
421
+ "type": {
422
+ "kind": [
423
+ "NON_NULL",
424
+ "SCALAR"
425
+ ],
426
+ "name": "Boolean",
427
+ "non_null": false
428
+ },
429
+ "varName": "preferredOnly"
430
+ },
431
+ "primary": {
432
+ "args": {},
433
+ "deprecationReason": null,
434
+ "description": null,
435
+ "id_str": "siteGeneralDetails___preferredPopLocation___primary",
436
+ "isDeprecated": false,
437
+ "name": "primary",
438
+ "path": "siteGeneralDetails.preferredPopLocation.primary",
439
+ "requestStr": "$popLocationRef:PopLocationRef ",
440
+ "required": false,
441
+ "responseStr": "primary:$popLocationRef ",
442
+ "type": {
443
+ "definition": {
444
+ "description": "A reference identifying the PopLocation object. ID: Unique PopLocation Identifier, Name: The PopLocation Name",
445
+ "enumValues": null,
446
+ "fields": {
447
+ "id": {
448
+ "args": {},
449
+ "deprecationReason": null,
450
+ "description": null,
451
+ "id_str": "siteGeneralDetails___preferredPopLocation___primary___id",
452
+ "isDeprecated": false,
453
+ "name": "id",
454
+ "path": "siteGeneralDetails.preferredPopLocation.primary.id",
455
+ "requestStr": "$id:ID! ",
456
+ "required": true,
457
+ "responseStr": "id:$id ",
458
+ "type": {
459
+ "kind": [
460
+ "NON_NULL",
461
+ "SCALAR"
462
+ ],
463
+ "name": "ID",
464
+ "non_null": false
465
+ },
466
+ "varName": "id"
467
+ },
468
+ "name": {
469
+ "args": {},
470
+ "deprecationReason": null,
471
+ "description": null,
472
+ "id_str": "siteGeneralDetails___preferredPopLocation___primary___name",
473
+ "isDeprecated": false,
474
+ "name": "name",
475
+ "path": "siteGeneralDetails.preferredPopLocation.primary.name",
476
+ "requestStr": "$name:String! ",
477
+ "required": true,
478
+ "responseStr": "name:$name ",
479
+ "type": {
480
+ "kind": [
481
+ "NON_NULL",
482
+ "SCALAR"
483
+ ],
484
+ "name": "String",
485
+ "non_null": false
486
+ },
487
+ "varName": "name"
488
+ }
489
+ },
490
+ "inputFields": null,
491
+ "interfaces": {},
492
+ "kind": "OBJECT",
493
+ "name": "PopLocationRef",
494
+ "possibleTypes": null
495
+ },
496
+ "indexType": "object",
497
+ "kind": [
498
+ "OBJECT"
499
+ ],
500
+ "name": "PopLocationRef",
501
+ "non_null": false
502
+ },
503
+ "varName": "popLocationRef"
504
+ },
505
+ "secondary": {
506
+ "args": {},
507
+ "deprecationReason": null,
508
+ "description": null,
509
+ "id_str": "siteGeneralDetails___preferredPopLocation___secondary",
510
+ "isDeprecated": false,
511
+ "name": "secondary",
512
+ "path": "siteGeneralDetails.preferredPopLocation.secondary",
513
+ "requestStr": "$popLocationRef:PopLocationRef ",
514
+ "required": false,
515
+ "responseStr": "secondary:$popLocationRef ",
516
+ "type": {
517
+ "definition": {
518
+ "description": "A reference identifying the PopLocation object. ID: Unique PopLocation Identifier, Name: The PopLocation Name",
519
+ "enumValues": null,
520
+ "fields": {
521
+ "id": {
522
+ "args": {},
523
+ "deprecationReason": null,
524
+ "description": null,
525
+ "id_str": "siteGeneralDetails___preferredPopLocation___secondary___id",
526
+ "isDeprecated": false,
527
+ "name": "id",
528
+ "path": "siteGeneralDetails.preferredPopLocation.secondary.id",
529
+ "requestStr": "$id:ID! ",
530
+ "required": true,
531
+ "responseStr": "id:$id ",
532
+ "type": {
533
+ "kind": [
534
+ "NON_NULL",
535
+ "SCALAR"
536
+ ],
537
+ "name": "ID",
538
+ "non_null": false
539
+ },
540
+ "varName": "id"
541
+ },
542
+ "name": {
543
+ "args": {},
544
+ "deprecationReason": null,
545
+ "description": null,
546
+ "id_str": "siteGeneralDetails___preferredPopLocation___secondary___name",
547
+ "isDeprecated": false,
548
+ "name": "name",
549
+ "path": "siteGeneralDetails.preferredPopLocation.secondary.name",
550
+ "requestStr": "$name:String! ",
551
+ "required": true,
552
+ "responseStr": "name:$name ",
553
+ "type": {
554
+ "kind": [
555
+ "NON_NULL",
556
+ "SCALAR"
557
+ ],
558
+ "name": "String",
559
+ "non_null": false
560
+ },
561
+ "varName": "name"
562
+ }
563
+ },
564
+ "inputFields": null,
565
+ "interfaces": {},
566
+ "kind": "OBJECT",
567
+ "name": "PopLocationRef",
568
+ "possibleTypes": null
569
+ },
570
+ "indexType": "object",
571
+ "kind": [
572
+ "OBJECT"
573
+ ],
574
+ "name": "PopLocationRef",
575
+ "non_null": false
576
+ },
577
+ "varName": "popLocationRef"
578
+ }
579
+ },
580
+ "inputFields": null,
581
+ "interfaces": {},
582
+ "kind": "OBJECT",
583
+ "name": "SitePreferredPopLocation",
584
+ "possibleTypes": null
585
+ },
586
+ "indexType": "object",
587
+ "kind": [
588
+ "OBJECT"
589
+ ],
590
+ "name": "SitePreferredPopLocation",
591
+ "non_null": false
592
+ },
593
+ "varName": "sitePreferredPopLocation"
594
+ },
595
+ "site": {
596
+ "args": {},
597
+ "deprecationReason": null,
598
+ "description": null,
599
+ "id_str": "siteGeneralDetails___site",
600
+ "isDeprecated": false,
601
+ "name": "site",
602
+ "path": "siteGeneralDetails.site",
603
+ "requestStr": "$siteRef:SiteRef! ",
604
+ "required": true,
605
+ "responseStr": "site:$siteRef ",
606
+ "type": {
607
+ "definition": {
608
+ "description": "A reference identifying the Site object. ID: Unique Site Identifier, Name: The Site Name",
609
+ "enumValues": null,
610
+ "fields": {
611
+ "id": {
612
+ "args": {},
613
+ "deprecationReason": null,
614
+ "description": null,
615
+ "id_str": "siteGeneralDetails___site___id",
616
+ "isDeprecated": false,
617
+ "name": "id",
618
+ "path": "siteGeneralDetails.site.id",
619
+ "requestStr": "$id:ID! ",
620
+ "required": true,
621
+ "responseStr": "id:$id ",
622
+ "type": {
623
+ "kind": [
624
+ "NON_NULL",
625
+ "SCALAR"
626
+ ],
627
+ "name": "ID",
628
+ "non_null": false
629
+ },
630
+ "varName": "id"
631
+ },
632
+ "name": {
633
+ "args": {},
634
+ "deprecationReason": null,
635
+ "description": null,
636
+ "id_str": "siteGeneralDetails___site___name",
637
+ "isDeprecated": false,
638
+ "name": "name",
639
+ "path": "siteGeneralDetails.site.name",
640
+ "requestStr": "$name:String! ",
641
+ "required": true,
642
+ "responseStr": "name:$name ",
643
+ "type": {
644
+ "kind": [
645
+ "NON_NULL",
646
+ "SCALAR"
647
+ ],
648
+ "name": "String",
649
+ "non_null": false
650
+ },
651
+ "varName": "name"
652
+ }
653
+ },
654
+ "inputFields": null,
655
+ "interfaces": {},
656
+ "kind": "OBJECT",
657
+ "name": "SiteRef",
658
+ "possibleTypes": null
659
+ },
660
+ "indexType": "object",
661
+ "kind": [
662
+ "NON_NULL",
663
+ "OBJECT"
664
+ ],
665
+ "name": "SiteRef",
666
+ "non_null": false
667
+ },
668
+ "varName": "siteRef"
669
+ },
670
+ "siteLocation": {
671
+ "args": {},
672
+ "deprecationReason": null,
673
+ "description": null,
674
+ "id_str": "siteGeneralDetails___siteLocation",
675
+ "isDeprecated": false,
676
+ "name": "siteLocation",
677
+ "path": "siteGeneralDetails.siteLocation",
678
+ "requestStr": "$siteLocation:SiteLocation! ",
679
+ "required": true,
680
+ "responseStr": "siteLocation:$siteLocation ",
681
+ "type": {
682
+ "definition": {
683
+ "description": null,
684
+ "enumValues": null,
685
+ "fields": {
686
+ "address": {
687
+ "args": {},
688
+ "deprecationReason": null,
689
+ "description": null,
690
+ "id_str": "siteGeneralDetails___siteLocation___address",
691
+ "isDeprecated": false,
692
+ "name": "address",
693
+ "path": "siteGeneralDetails.siteLocation.address",
694
+ "requestStr": "$address:String ",
695
+ "required": false,
696
+ "responseStr": "address:$address ",
697
+ "type": {
698
+ "kind": [
699
+ "SCALAR"
700
+ ],
701
+ "name": "String",
702
+ "non_null": false
703
+ },
704
+ "varName": "address"
705
+ },
706
+ "cityName": {
707
+ "args": {},
708
+ "deprecationReason": null,
709
+ "description": null,
710
+ "id_str": "siteGeneralDetails___siteLocation___cityName",
711
+ "isDeprecated": false,
712
+ "name": "cityName",
713
+ "path": "siteGeneralDetails.siteLocation.cityName",
714
+ "requestStr": "$cityName:String ",
715
+ "required": false,
716
+ "responseStr": "cityName:$cityName ",
717
+ "type": {
718
+ "kind": [
719
+ "SCALAR"
720
+ ],
721
+ "name": "String",
722
+ "non_null": false
723
+ },
724
+ "varName": "cityName"
725
+ },
726
+ "countryCode": {
727
+ "args": {},
728
+ "deprecationReason": null,
729
+ "description": null,
730
+ "id_str": "siteGeneralDetails___siteLocation___countryCode",
731
+ "isDeprecated": false,
732
+ "name": "countryCode",
733
+ "path": "siteGeneralDetails.siteLocation.countryCode",
734
+ "requestStr": "$countryCode:String! ",
735
+ "required": true,
736
+ "responseStr": "countryCode:$countryCode ",
737
+ "type": {
738
+ "kind": [
739
+ "NON_NULL",
740
+ "SCALAR"
741
+ ],
742
+ "name": "String",
743
+ "non_null": false
744
+ },
745
+ "varName": "countryCode"
746
+ },
747
+ "stateCode": {
748
+ "args": {},
749
+ "deprecationReason": null,
750
+ "description": null,
751
+ "id_str": "siteGeneralDetails___siteLocation___stateCode",
752
+ "isDeprecated": false,
753
+ "name": "stateCode",
754
+ "path": "siteGeneralDetails.siteLocation.stateCode",
755
+ "requestStr": "$stateCode:String ",
756
+ "required": false,
757
+ "responseStr": "stateCode:$stateCode ",
758
+ "type": {
759
+ "kind": [
760
+ "SCALAR"
761
+ ],
762
+ "name": "String",
763
+ "non_null": false
764
+ },
765
+ "varName": "stateCode"
766
+ },
767
+ "timezone": {
768
+ "args": {},
769
+ "deprecationReason": null,
770
+ "description": null,
771
+ "id_str": "siteGeneralDetails___siteLocation___timezone",
772
+ "isDeprecated": false,
773
+ "name": "timezone",
774
+ "path": "siteGeneralDetails.siteLocation.timezone",
775
+ "requestStr": "$timezone:String! ",
776
+ "required": true,
777
+ "responseStr": "timezone:$timezone ",
778
+ "type": {
779
+ "kind": [
780
+ "NON_NULL",
781
+ "SCALAR"
782
+ ],
783
+ "name": "String",
784
+ "non_null": false
785
+ },
786
+ "varName": "timezone"
787
+ }
788
+ },
789
+ "inputFields": null,
790
+ "interfaces": {},
791
+ "kind": "OBJECT",
792
+ "name": "SiteLocation",
793
+ "possibleTypes": null
794
+ },
795
+ "indexType": "object",
796
+ "kind": [
797
+ "NON_NULL",
798
+ "OBJECT"
799
+ ],
800
+ "name": "SiteLocation",
801
+ "non_null": false
802
+ },
803
+ "varName": "siteLocation"
804
+ },
805
+ "siteType": {
806
+ "args": {},
807
+ "deprecationReason": null,
808
+ "description": null,
809
+ "id_str": "siteGeneralDetails___siteType",
810
+ "isDeprecated": false,
811
+ "name": "siteType",
812
+ "path": "siteGeneralDetails.siteType",
813
+ "requestStr": "$siteType:SiteType! ",
814
+ "required": true,
815
+ "responseStr": "siteType:$siteType ",
816
+ "type": {
817
+ "definition": {
818
+ "description": null,
819
+ "enumValues": [
820
+ {
821
+ "deprecationReason": null,
822
+ "description": null,
823
+ "isDeprecated": false,
824
+ "name": "BRANCH"
825
+ },
826
+ {
827
+ "deprecationReason": null,
828
+ "description": null,
829
+ "isDeprecated": false,
830
+ "name": "HEADQUARTERS"
831
+ },
832
+ {
833
+ "deprecationReason": null,
834
+ "description": null,
835
+ "isDeprecated": false,
836
+ "name": "CLOUD_DC"
837
+ },
838
+ {
839
+ "deprecationReason": null,
840
+ "description": null,
841
+ "isDeprecated": false,
842
+ "name": "DATACENTER"
843
+ }
844
+ ],
845
+ "fields": null,
846
+ "inputFields": null,
847
+ "interfaces": null,
848
+ "kind": "ENUM",
849
+ "name": "SiteType",
850
+ "possibleTypes": null
851
+ },
852
+ "indexType": "enum",
853
+ "kind": [
854
+ "NON_NULL",
855
+ "ENUM"
856
+ ],
857
+ "name": "SiteType",
858
+ "non_null": false
859
+ },
860
+ "varName": "siteType"
861
+ }
862
+ },
863
+ "inputFields": null,
864
+ "interfaces": {},
865
+ "kind": "OBJECT",
866
+ "name": "SiteGeneralDetailsPayload",
867
+ "possibleTypes": null
868
+ },
869
+ "indexType": "object",
870
+ "kind": [
871
+ "OBJECT"
872
+ ],
873
+ "name": "SiteGeneralDetailsPayload",
874
+ "non_null": false
875
+ },
876
+ "varName": "siteGeneralDetailsPayload"
877
+ }
878
+ },
879
+ "inputFields": null,
880
+ "interfaces": [],
881
+ "kind": "OBJECT",
882
+ "name": "SiteQueries",
883
+ "possibleTypes": null
884
+ },
885
+ "indexType": "object",
886
+ "kind": [
887
+ "NON_NULL",
888
+ "OBJECT"
889
+ ],
890
+ "name": "SiteQueries",
891
+ "non_null": false
892
+ },
893
+ "variablesPayload": {
894
+ "siteRefInput": {
895
+ "by": "ID",
896
+ "input": "string"
897
+ }
898
+ }
899
+ }